Skip to content

Commit fb46575

Browse files
microsoft-graph-devx-bot[bot]Microsoft Graph DevX Tooling
andauthored
feat(generation): update request builders and models (#1779)
Update generated files with build 219281 Co-authored-by: Microsoft Graph DevX Tooling <GraphTooling@service.microsoft.com>
1 parent f4d1022 commit fb46575

138 files changed

Lines changed: 1722 additions & 407 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/Generated/Admin/Exchange/Mailboxes/Item/CreateImportSession/CreateImportSessionRequestBuilder.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
3131
}
3232

3333
/**
34-
* Invoke action createImportSession
34+
* Create a session to import an Exchange mailbox item that was exported using the exportItems API.
3535
* @param CreateImportSessionRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3636
* @return Promise<MailboxItemImportSession|null>
3737
* @throws Exception
38+
* @link https://learn.microsoft.com/graph/api/mailbox-createimportsession?view=graph-rest-1.0 Find more info here
3839
*/
3940
public function post(?CreateImportSessionRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
4041
$requestInfo = $this->toPostRequestInformation($requestConfiguration);
@@ -45,7 +46,7 @@ public function post(?CreateImportSessionRequestBuilderPostRequestConfiguration
4546
}
4647

4748
/**
48-
* Invoke action createImportSession
49+
* Create a session to import an Exchange mailbox item that was exported using the exportItems API.
4950
* @param CreateImportSessionRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5051
* @return RequestInformation
5152
*/

src/Generated/Admin/Exchange/Mailboxes/Item/ExportItems/ExportItemsRequestBuilder.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
3030
}
3131

3232
/**
33-
* Invoke action exportItems
33+
* Export Exchange mailboxItem objects in full fidelity. This API exports each item as an opaque stream. The data stream isn't intended for parsing, but can be used to import an item back into an Exchange mailbox. For more information, see Overview of the mailbox import and export APIs in Microsoft Graph. You can export up to 20 items in a single export request.
3434
* @param ExportItemsPostRequestBody $body The request body
3535
* @param ExportItemsRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3636
* @return Promise<ExportItemsPostResponse|null>
3737
* @throws Exception
38+
* @link https://learn.microsoft.com/graph/api/mailbox-exportitems?view=graph-rest-1.0 Find more info here
3839
*/
3940
public function post(ExportItemsPostRequestBody $body, ?ExportItemsRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
4041
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
@@ -45,7 +46,7 @@ public function post(ExportItemsPostRequestBody $body, ?ExportItemsRequestBuilde
4546
}
4647

4748
/**
48-
* Invoke action exportItems
49+
* Export Exchange mailboxItem objects in full fidelity. This API exports each item as an opaque stream. The data stream isn't intended for parsing, but can be used to import an item back into an Exchange mailbox. For more information, see Overview of the mailbox import and export APIs in Microsoft Graph. You can export up to 20 items in a single export request.
4950
* @param ExportItemsPostRequestBody $body The request body
5051
* @param ExportItemsRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5152
* @return RequestInformation

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/Delta/DeltaRequestBuilder.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
3030
}
3131

3232
/**
33-
* Invoke function delta
33+
* Get a set of mailboxFolder objects that were added, deleted, or removed from the user's mailbox. A delta function call for folders in a mailbox 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 folders. This approach allows you to maintain and synchronize a local store of a user's mail folders without having to fetch all the folders of that mailbox from the server every time.
3434
* @param DeltaRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3535
* @return Promise<DeltaGetResponse|null>
3636
* @throws Exception
37+
* @link https://learn.microsoft.com/graph/api/mailboxfolder-delta?view=graph-rest-1.0 Find more info here
3738
*/
3839
public function get(?DeltaRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
3940
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -44,7 +45,7 @@ public function get(?DeltaRequestBuilderGetRequestConfiguration $requestConfigur
4445
}
4546

4647
/**
47-
* Invoke function delta
48+
* Get a set of mailboxFolder objects that were added, deleted, or removed from the user's mailbox. A delta function call for folders in a mailbox 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 folders. This approach allows you to maintain and synchronize a local store of a user's mail folders without having to fetch all the folders of that mailbox from the server every time.
4849
* @param DeltaRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4950
* @return RequestInformation
5051
*/

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/Delta/DeltaRequestBuilderGetQueryParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Invoke function delta
8+
* Get a set of mailboxFolder objects that were added, deleted, or removed from the user's mailbox. A delta function call for folders in a mailbox 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 folders. This approach allows you to maintain and synchronize a local store of a user's mail folders without having to fetch all the folders of that mailbox from the server every time.
99
*/
1010
class DeltaRequestBuilderGetQueryParameters
1111
{

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/FoldersRequestBuilder.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
5959
}
6060

6161
/**
62-
* Get folders from admin
62+
* Get all the mailboxFolder objects in the specified mailbox, including any search folders.
6363
* @param FoldersRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6464
* @return Promise<MailboxFolderCollectionResponse|null>
6565
* @throws Exception
66+
* @link https://learn.microsoft.com/graph/api/mailbox-list-folders?view=graph-rest-1.0 Find more info here
6667
*/
6768
public function get(?FoldersRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
6869
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -73,7 +74,7 @@ public function get(?FoldersRequestBuilderGetRequestConfiguration $requestConfig
7374
}
7475

7576
/**
76-
* Get folders from admin
77+
* Get all the mailboxFolder objects in the specified mailbox, including any search folders.
7778
* @param FoldersRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7879
* @return RequestInformation
7980
*/

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/FoldersRequestBuilderGetQueryParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Get folders from admin
8+
* Get all the mailboxFolder objects in the specified mailbox, including any search folders.
99
*/
1010
class FoldersRequestBuilderGetQueryParameters
1111
{

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/Item/ChildFolders/ChildFoldersRequestBuilder.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
5959
}
6060

6161
/**
62-
* Get childFolders from admin
62+
* Get the mailboxFolder collection under the specified mailboxFolder in a mailbox.
6363
* @param ChildFoldersRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6464
* @return Promise<MailboxFolderCollectionResponse|null>
6565
* @throws Exception
66+
* @link https://learn.microsoft.com/graph/api/mailboxfolder-list-childfolders?view=graph-rest-1.0 Find more info here
6667
*/
6768
public function get(?ChildFoldersRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
6869
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -73,7 +74,7 @@ public function get(?ChildFoldersRequestBuilderGetRequestConfiguration $requestC
7374
}
7475

7576
/**
76-
* Get childFolders from admin
77+
* Get the mailboxFolder collection under the specified mailboxFolder in a mailbox.
7778
* @param ChildFoldersRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7879
* @return RequestInformation
7980
*/

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/Item/ChildFolders/ChildFoldersRequestBuilderGetQueryParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Get childFolders from admin
8+
* Get the mailboxFolder collection under the specified mailboxFolder in a mailbox.
99
*/
1010
class ChildFoldersRequestBuilderGetQueryParameters
1111
{

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/Item/ChildFolders/Delta/DeltaRequestBuilder.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
3030
}
3131

3232
/**
33-
* Invoke function delta
33+
* Get a set of mailboxFolder objects that were added, deleted, or removed from the user's mailbox. A delta function call for folders in a mailbox 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 folders. This approach allows you to maintain and synchronize a local store of a user's mail folders without having to fetch all the folders of that mailbox from the server every time.
3434
* @param DeltaRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3535
* @return Promise<DeltaGetResponse|null>
3636
* @throws Exception
37+
* @link https://learn.microsoft.com/graph/api/mailboxfolder-delta?view=graph-rest-1.0 Find more info here
3738
*/
3839
public function get(?DeltaRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
3940
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -44,7 +45,7 @@ public function get(?DeltaRequestBuilderGetRequestConfiguration $requestConfigur
4445
}
4546

4647
/**
47-
* Invoke function delta
48+
* Get a set of mailboxFolder objects that were added, deleted, or removed from the user's mailbox. A delta function call for folders in a mailbox 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 folders. This approach allows you to maintain and synchronize a local store of a user's mail folders without having to fetch all the folders of that mailbox from the server every time.
4849
* @param DeltaRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4950
* @return RequestInformation
5051
*/

src/Generated/Admin/Exchange/Mailboxes/Item/Folders/Item/ChildFolders/Delta/DeltaRequestBuilderGetQueryParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Invoke function delta
8+
* Get a set of mailboxFolder objects that were added, deleted, or removed from the user's mailbox. A delta function call for folders in a mailbox 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 folders. This approach allows you to maintain and synchronize a local store of a user's mail folders without having to fetch all the folders of that mailbox from the server every time.
99
*/
1010
class DeltaRequestBuilderGetQueryParameters
1111
{

0 commit comments

Comments
 (0)