Skip to content

Commit 800b10f

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
Microsoft Graph DevX Tooling
authored and
Microsoft Graph DevX Tooling
committed
feat(generation): update request builders and models
Update generated files with build 175892
1 parent 3bd2bd8 commit 800b10f

File tree

69 files changed

+217
-217
lines changed

Some content is hidden

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

69 files changed

+217
-217
lines changed

src/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ public function delete(?ConversationMemberItemRequestBuilderDeleteRequestConfigu
4646
}
4747

4848
/**
49-
* Retrieve a conversationMember from a chat or channel.
49+
* Retrieve a conversationMember from a chat.
5050
* @param ConversationMemberItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5151
* @return Promise<ConversationMember|null>
5252
* @throws Exception
53-
* @link https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0 Find more info here
53+
* @link https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0 Find more info here
5454
*/
5555
public function get(?ConversationMemberItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
5656
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -94,7 +94,7 @@ public function toDeleteRequestInformation(?ConversationMemberItemRequestBuilder
9494
}
9595

9696
/**
97-
* Retrieve a conversationMember from a chat or channel.
97+
* Retrieve a conversationMember from a chat.
9898
* @param ConversationMemberItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9999
* @return RequestInformation
100100
*/

src/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilderGetQueryParameters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Retrieve a conversationMember from a chat or channel.
8+
* Retrieve a conversationMember from a chat.
99
*/
1010
class ConversationMemberItemRequestBuilderGetQueryParameters
1111
{

src/Generated/Chats/Item/Messages/MessagesRequestBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ public function get(?MessagesRequestBuilderGetRequestConfiguration $requestConfi
7575
}
7676

7777
/**
78-
* 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.
78+
* Send a new chatMessage in the specified channel or a chat.
7979
* @param ChatMessage $body The request body
8080
* @param MessagesRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8181
* @return Promise<ChatMessage|null>
8282
* @throws Exception
83-
* @link https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0 Find more info here
83+
* @link https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0 Find more info here
8484
*/
8585
public function post(ChatMessage $body, ?MessagesRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
8686
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
@@ -112,7 +112,7 @@ public function toGetRequestInformation(?MessagesRequestBuilderGetRequestConfigu
112112
}
113113

114114
/**
115-
* 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.
115+
* Send a new chatMessage in the specified channel or a chat.
116116
* @param ChatMessage $body The request body
117117
* @param MessagesRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
118118
* @return RequestInformation

src/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
3131
}
3232

3333
/**
34-
* 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.
34+
* Invite participants to the active call. For more information about how to handle operations, see commsOperation.
3535
* @param InvitePostRequestBody $body The request body
3636
* @param InviteRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3737
* @return Promise<InviteParticipantsOperation|null>
3838
* @throws Exception
39-
* @link https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0 Find more info here
39+
* @link https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-1.0 Find more info here
4040
*/
4141
public function post(InvitePostRequestBody $body, ?InviteRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
4242
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
@@ -47,7 +47,7 @@ public function post(InvitePostRequestBody $body, ?InviteRequestBuilderPostReque
4747
}
4848

4949
/**
50-
* 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.
50+
* Invite participants to the active call. For more information about how to handle operations, see commsOperation.
5151
* @param InvitePostRequestBody $body The request body
5252
* @param InviteRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5353
* @return RequestInformation

src/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
155155
* @param DeviceAppManagementRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
156156
* @return Promise<DeviceAppManagement|null>
157157
* @throws Exception
158-
* @link https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0 Find more info here
158+
* @link https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-get?view=graph-rest-1.0 Find more info here
159159
*/
160160
public function get(?DeviceAppManagementRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
161161
$requestInfo = $this->toGetRequestInformation($requestConfiguration);

src/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ public function delete(?ManagedAppPolicyItemRequestBuilderDeleteRequestConfigura
5353
}
5454

5555
/**
56-
* Read properties and relationships of the targetedManagedAppProtection object.
56+
* Read properties and relationships of the windowsInformationProtection object.
5757
* @param ManagedAppPolicyItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5858
* @return Promise<ManagedAppPolicy|null>
5959
* @throws Exception
60-
* @link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-get?view=graph-rest-1.0 Find more info here
60+
* @link https://learn.microsoft.com/graph/api/intune-mam-windowsinformationprotection-get?view=graph-rest-1.0 Find more info here
6161
*/
6262
public function get(?ManagedAppPolicyItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
6363
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -101,7 +101,7 @@ public function toDeleteRequestInformation(?ManagedAppPolicyItemRequestBuilderDe
101101
}
102102

103103
/**
104-
* Read properties and relationships of the targetedManagedAppProtection object.
104+
* Read properties and relationships of the windowsInformationProtection object.
105105
* @param ManagedAppPolicyItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
106106
* @return RequestInformation
107107
*/

src/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilderGetQueryParameters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Read properties and relationships of the targetedManagedAppProtection object.
8+
* Read properties and relationships of the windowsInformationProtection object.
99
*/
1010
class ManagedAppPolicyItemRequestBuilderGetQueryParameters
1111
{

src/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
5252
}
5353

5454
/**
55-
* List properties and relationships of the managedAppProtection objects.
55+
* List properties and relationships of the managedAppPolicy objects.
5656
* @param ManagedAppPoliciesRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5757
* @return Promise<ManagedAppPolicyCollectionResponse|null>
5858
* @throws Exception
59-
* @link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-list?view=graph-rest-1.0 Find more info here
59+
* @link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-list?view=graph-rest-1.0 Find more info here
6060
*/
6161
public function get(?ManagedAppPoliciesRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
6262
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -82,7 +82,7 @@ public function post(ManagedAppPolicy $body, ?ManagedAppPoliciesRequestBuilderPo
8282
}
8383

8484
/**
85-
* List properties and relationships of the managedAppProtection objects.
85+
* List properties and relationships of the managedAppPolicy objects.
8686
* @param ManagedAppPoliciesRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8787
* @return RequestInformation
8888
*/

src/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilderGetQueryParameters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* List properties and relationships of the managedAppProtection objects.
8+
* List properties and relationships of the managedAppPolicy objects.
99
*/
1010
class ManagedAppPoliciesRequestBuilderGetQueryParameters
1111
{

src/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
6060
}
6161

6262
/**
63-
* List properties and relationships of the managedAppRegistration objects.
63+
* List properties and relationships of the iosManagedAppRegistration objects.
6464
* @param ManagedAppRegistrationsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6565
* @return Promise<ManagedAppRegistrationCollectionResponse|null>
6666
* @throws Exception
67-
* @link https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-list?view=graph-rest-1.0 Find more info here
67+
* @link https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-list?view=graph-rest-1.0 Find more info here
6868
*/
6969
public function get(?ManagedAppRegistrationsRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
7070
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -91,7 +91,7 @@ public function post(ManagedAppRegistration $body, ?ManagedAppRegistrationsReque
9191
}
9292

9393
/**
94-
* List properties and relationships of the managedAppRegistration objects.
94+
* List properties and relationships of the iosManagedAppRegistration objects.
9595
* @param ManagedAppRegistrationsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9696
* @return RequestInformation
9797
*/

src/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilderGetQueryParameters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* List properties and relationships of the managedAppRegistration objects.
8+
* List properties and relationships of the iosManagedAppRegistration objects.
99
*/
1010
class ManagedAppRegistrationsRequestBuilderGetQueryParameters
1111
{

src/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
3131
}
3232

3333
/**
34-
* Deletes a managedEBookAssignment.
34+
* Deletes a iosVppEBookAssignment.
3535
* @param ManagedEBookAssignmentItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3636
* @return Promise<void|null>
3737
* @throws Exception
38-
* @link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-delete?view=graph-rest-1.0 Find more info here
38+
* @link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-delete?view=graph-rest-1.0 Find more info here
3939
*/
4040
public function delete(?ManagedEBookAssignmentItemRequestBuilderDeleteRequestConfiguration $requestConfiguration = null): Promise {
4141
$requestInfo = $this->toDeleteRequestInformation($requestConfiguration);
@@ -46,11 +46,11 @@ public function delete(?ManagedEBookAssignmentItemRequestBuilderDeleteRequestCon
4646
}
4747

4848
/**
49-
* Read properties and relationships of the managedEBookAssignment object.
49+
* Read properties and relationships of the iosVppEBookAssignment object.
5050
* @param ManagedEBookAssignmentItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5151
* @return Promise<ManagedEBookAssignment|null>
5252
* @throws Exception
53-
* @link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-get?view=graph-rest-1.0 Find more info here
53+
* @link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-get?view=graph-rest-1.0 Find more info here
5454
*/
5555
public function get(?ManagedEBookAssignmentItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
5656
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -77,7 +77,7 @@ public function patch(ManagedEBookAssignment $body, ?ManagedEBookAssignmentItemR
7777
}
7878

7979
/**
80-
* Deletes a managedEBookAssignment.
80+
* Deletes a iosVppEBookAssignment.
8181
* @param ManagedEBookAssignmentItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8282
* @return RequestInformation
8383
*/
@@ -95,7 +95,7 @@ public function toDeleteRequestInformation(?ManagedEBookAssignmentItemRequestBui
9595
}
9696

9797
/**
98-
* Read properties and relationships of the managedEBookAssignment object.
98+
* Read properties and relationships of the iosVppEBookAssignment object.
9999
* @param ManagedEBookAssignmentItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
100100
* @return RequestInformation
101101
*/

src/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilderGetQueryParameters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Read properties and relationships of the managedEBookAssignment object.
8+
* Read properties and relationships of the iosVppEBookAssignment object.
99
*/
1010
class ManagedEBookAssignmentItemRequestBuilderGetQueryParameters
1111
{

src/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
183183
}
184184

185185
/**
186-
* Deletes a microsoftStoreForBusinessApp.
186+
* Deletes a managedAndroidStoreApp.
187187
* @param MobileAppItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
188188
* @return Promise<void|null>
189189
* @throws Exception
190-
* @link https://learn.microsoft.com/graph/api/intune-apps-microsoftstoreforbusinessapp-delete?view=graph-rest-1.0 Find more info here
190+
* @link https://learn.microsoft.com/graph/api/intune-apps-managedandroidstoreapp-delete?view=graph-rest-1.0 Find more info here
191191
*/
192192
public function delete(?MobileAppItemRequestBuilderDeleteRequestConfiguration $requestConfiguration = null): Promise {
193193
$requestInfo = $this->toDeleteRequestInformation($requestConfiguration);
@@ -198,11 +198,11 @@ public function delete(?MobileAppItemRequestBuilderDeleteRequestConfiguration $r
198198
}
199199

200200
/**
201-
* Read properties and relationships of the iosStoreApp object.
201+
* Read properties and relationships of the mobileLobApp object.
202202
* @param MobileAppItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
203203
* @return Promise<MobileApp|null>
204204
* @throws Exception
205-
* @link https://learn.microsoft.com/graph/api/intune-apps-iosstoreapp-get?view=graph-rest-1.0 Find more info here
205+
* @link https://learn.microsoft.com/graph/api/intune-apps-mobilelobapp-get?view=graph-rest-1.0 Find more info here
206206
*/
207207
public function get(?MobileAppItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
208208
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
@@ -213,12 +213,12 @@ public function get(?MobileAppItemRequestBuilderGetRequestConfiguration $request
213213
}
214214

215215
/**
216-
* Update the properties of a webApp object.
216+
* Update the properties of a macOSOfficeSuiteApp object.
217217
* @param MobileApp $body The request body
218218
* @param MobileAppItemRequestBuilderPatchRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
219219
* @return Promise<MobileApp|null>
220220
* @throws Exception
221-
* @link https://learn.microsoft.com/graph/api/intune-apps-webapp-update?view=graph-rest-1.0 Find more info here
221+
* @link https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-update?view=graph-rest-1.0 Find more info here
222222
*/
223223
public function patch(MobileApp $body, ?MobileAppItemRequestBuilderPatchRequestConfiguration $requestConfiguration = null): Promise {
224224
$requestInfo = $this->toPatchRequestInformation($body, $requestConfiguration);
@@ -229,7 +229,7 @@ public function patch(MobileApp $body, ?MobileAppItemRequestBuilderPatchRequestC
229229
}
230230

231231
/**
232-
* Deletes a microsoftStoreForBusinessApp.
232+
* Deletes a managedAndroidStoreApp.
233233
* @param MobileAppItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
234234
* @return RequestInformation
235235
*/
@@ -247,7 +247,7 @@ public function toDeleteRequestInformation(?MobileAppItemRequestBuilderDeleteReq
247247
}
248248

249249
/**
250-
* Read properties and relationships of the iosStoreApp object.
250+
* Read properties and relationships of the mobileLobApp object.
251251
* @param MobileAppItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
252252
* @return RequestInformation
253253
*/
@@ -268,7 +268,7 @@ public function toGetRequestInformation(?MobileAppItemRequestBuilderGetRequestCo
268268
}
269269

270270
/**
271-
* Update the properties of a webApp object.
271+
* Update the properties of a macOSOfficeSuiteApp object.
272272
* @param MobileApp $body The request body
273273
* @param MobileAppItemRequestBuilderPatchRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
274274
* @return RequestInformation

src/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilderGetQueryParameters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Microsoft\Kiota\Abstractions\QueryParameter;
66

77
/**
8-
* Read properties and relationships of the iosStoreApp object.
8+
* Read properties and relationships of the mobileLobApp object.
99
*/
1010
class MobileAppItemRequestBuilderGetQueryParameters
1111
{

0 commit comments

Comments
 (0)