Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 6c65d64

Browse files
andrueastmanMicrosoft Graph DevX Tooling
andauthored
feat(generation): update request builders and models (#456)
Update generated files with build 141818 Co-authored-by: Microsoft Graph DevX Tooling <[email protected]>
1 parent d712a07 commit 6c65d64

File tree

219 files changed

+11126
-644
lines changed

Some content is hidden

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

219 files changed

+11126
-644
lines changed

src/generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ public Command BuildDeleteCommand()
6363
return command;
6464
}
6565
/// <summary>
66-
/// Retrieve a conversationMember from a chat.
67-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0" />
66+
/// Retrieve a conversationMember from a chat or channel.
67+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0" />
6868
/// </summary>
6969
/// <returns>A <see cref="Command"/></returns>
7070
public Command BuildGetCommand()
7171
{
7272
var command = new Command("get");
73-
command.Description = "Retrieve a conversationMember from a chat.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0";
73+
command.Description = "Retrieve a conversationMember from a chat or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0";
7474
var chatIdOption = new Option<string>("--chat-id", description: "The unique identifier of chat") {
7575
};
7676
chatIdOption.IsRequired = true;
@@ -212,7 +212,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
212212
return requestInfo;
213213
}
214214
/// <summary>
215-
/// Retrieve a conversationMember from a chat.
215+
/// Retrieve a conversationMember from a chat or channel.
216216
/// </summary>
217217
/// <returns>A <see cref="RequestInformation"/></returns>
218218
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -252,7 +252,7 @@ public RequestInformation ToPatchRequestInformation(ConversationMember body, Act
252252
return requestInfo;
253253
}
254254
/// <summary>
255-
/// Retrieve a conversationMember from a chat.
255+
/// Retrieve a conversationMember from a chat or channel.
256256
/// </summary>
257257
public class ConversationMemberItemRequestBuilderGetQueryParameters
258258
{

src/generated/Chats/Item/Messages/MessagesRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ public Command BuildCountNavCommand()
6161
return command;
6262
}
6363
/// <summary>
64-
/// Send a new chatMessage in the specified chat. This API can&apos;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.
65-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0" />
64+
/// Send a new chatMessage in the specified channel or a chat.
65+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0" />
6666
/// </summary>
6767
/// <returns>A <see cref="Command"/></returns>
6868
public Command BuildCreateCommand()
6969
{
7070
var command = new Command("create");
71-
command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0";
71+
command.Description = "Send a new chatMessage in the specified channel or a chat.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0";
7272
var chatIdOption = new Option<string>("--chat-id", description: "The unique identifier of chat") {
7373
};
7474
chatIdOption.IsRequired = true;
@@ -264,7 +264,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Me
264264
return requestInfo;
265265
}
266266
/// <summary>
267-
/// Send a new chatMessage in the specified chat. This API can&apos;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.
267+
/// Send a new chatMessage in the specified channel or a chat.
268268
/// </summary>
269269
/// <returns>A <see cref="RequestInformation"/></returns>
270270
/// <param name="body">The request body</param>

src/generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ namespace ApiSdk.Communications.Calls.Item.Participants.Invite {
2121
public class InviteRequestBuilder : BaseCliRequestBuilder
2222
{
2323
/// <summary>
24-
/// 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.
25-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0" />
24+
/// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
25+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-1.0" />
2626
/// </summary>
2727
/// <returns>A <see cref="Command"/></returns>
2828
public Command BuildPostCommand()
2929
{
3030
var command = new Command("post");
31-
command.Description = "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. \n\nFind more info here:\n https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0";
31+
command.Description = "Invite participants to the active call. For more information about how to handle operations, see commsOperation.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-1.0";
3232
var callIdOption = new Option<string>("--call-id", description: "The unique identifier of call") {
3333
};
3434
callIdOption.IsRequired = true;
@@ -87,7 +87,7 @@ public InviteRequestBuilder(string rawUrl) : base("{+baseurl}/communications/cal
8787
{
8888
}
8989
/// <summary>
90-
/// 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.
90+
/// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
9191
/// </summary>
9292
/// <returns>A <see cref="RequestInformation"/></returns>
9393
/// <param name="body">The request body</param>

src/generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,13 +398,13 @@ public Command BuildMobileAppsNavCommand()
398398
}
399399
/// <summary>
400400
/// Update the properties of a deviceAppManagement object.
401-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-unlock-deviceappmanagement-update?view=graph-rest-1.0" />
401+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-books-deviceappmanagement-update?view=graph-rest-1.0" />
402402
/// </summary>
403403
/// <returns>A <see cref="Command"/></returns>
404404
public Command BuildPatchCommand()
405405
{
406406
var command = new Command("patch");
407-
command.Description = "Update the properties of a deviceAppManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-unlock-deviceappmanagement-update?view=graph-rest-1.0";
407+
command.Description = "Update the properties of a deviceAppManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-books-deviceappmanagement-update?view=graph-rest-1.0";
408408
var bodyOption = new Option<string>("--body", description: "The request body") {
409409
};
410410
bodyOption.IsRequired = true;

src/generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ public Command BuildDeleteCommand()
5757
return command;
5858
}
5959
/// <summary>
60-
/// Read properties and relationships of the windowsInformationProtection object.
61-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-windowsinformationprotection-get?view=graph-rest-1.0" />
60+
/// Read properties and relationships of the managedAppProtection object.
61+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-get?view=graph-rest-1.0" />
6262
/// </summary>
6363
/// <returns>A <see cref="Command"/></returns>
6464
public Command BuildGetCommand()
6565
{
6666
var command = new Command("get");
67-
command.Description = "Read properties and relationships of the windowsInformationProtection object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-windowsinformationprotection-get?view=graph-rest-1.0";
67+
command.Description = "Read properties and relationships of the managedAppProtection object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-get?view=graph-rest-1.0";
6868
var managedAppPolicyIdOption = new Option<string>("--managed-app-policy-id", description: "The unique identifier of managedAppPolicy") {
6969
};
7070
managedAppPolicyIdOption.IsRequired = true;
@@ -211,7 +211,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
211211
return requestInfo;
212212
}
213213
/// <summary>
214-
/// Read properties and relationships of the windowsInformationProtection object.
214+
/// Read properties and relationships of the managedAppProtection object.
215215
/// </summary>
216216
/// <returns>A <see cref="RequestInformation"/></returns>
217217
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -251,7 +251,7 @@ public RequestInformation ToPatchRequestInformation(ManagedAppPolicy body, Actio
251251
return requestInfo;
252252
}
253253
/// <summary>
254-
/// Read properties and relationships of the windowsInformationProtection object.
254+
/// Read properties and relationships of the managedAppProtection object.
255255
/// </summary>
256256
public class ManagedAppPolicyItemRequestBuilderGetQueryParameters
257257
{

src/generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ public class TargetAppsRequestBuilder : BaseCliRequestBuilder
2121
{
2222
/// <summary>
2323
/// Not yet documented
24-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0" />
24+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0" />
2525
/// </summary>
2626
/// <returns>A <see cref="Command"/></returns>
2727
public Command BuildPostCommand()
2828
{
2929
var command = new Command("post");
30-
command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0";
30+
command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0";
3131
var managedAppPolicyIdOption = new Option<string>("--managed-app-policy-id", description: "The unique identifier of managedAppPolicy") {
3232
};
3333
managedAppPolicyIdOption.IsRequired = true;

src/generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,14 @@ public Command BuildCreateCommand()
100100
return command;
101101
}
102102
/// <summary>
103-
/// List properties and relationships of the targetedManagedAppProtection objects.
104-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-list?view=graph-rest-1.0" />
103+
/// List properties and relationships of the managedAppConfiguration objects.
104+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-list?view=graph-rest-1.0" />
105105
/// </summary>
106106
/// <returns>A <see cref="Command"/></returns>
107107
public Command BuildListCommand()
108108
{
109109
var command = new Command("list");
110-
command.Description = "List properties and relationships of the targetedManagedAppProtection objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-list?view=graph-rest-1.0";
110+
command.Description = "List properties and relationships of the managedAppConfiguration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-list?view=graph-rest-1.0";
111111
var topOption = new Option<int?>("--top", description: "Show only the first n items") {
112112
};
113113
topOption.IsRequired = false;
@@ -209,7 +209,7 @@ public ManagedAppPoliciesRequestBuilder(string rawUrl) : base("{+baseurl}/device
209209
{
210210
}
211211
/// <summary>
212-
/// List properties and relationships of the targetedManagedAppProtection objects.
212+
/// List properties and relationships of the managedAppConfiguration objects.
213213
/// </summary>
214214
/// <returns>A <see cref="RequestInformation"/></returns>
215215
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -249,7 +249,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppPolicy body, Action
249249
return requestInfo;
250250
}
251251
/// <summary>
252-
/// List properties and relationships of the targetedManagedAppProtection objects.
252+
/// List properties and relationships of the managedAppConfiguration objects.
253253
/// </summary>
254254
public class ManagedAppPoliciesRequestBuilderGetQueryParameters
255255
{

src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ public class TargetAppsRequestBuilder : BaseCliRequestBuilder
2121
{
2222
/// <summary>
2323
/// Not yet documented
24-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0" />
24+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0" />
2525
/// </summary>
2626
/// <returns>A <see cref="Command"/></returns>
2727
public Command BuildPostCommand()
2828
{
2929
var command = new Command("post");
30-
command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0";
30+
command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0";
3131
var managedAppRegistrationIdOption = new Option<string>("--managed-app-registration-id", description: "The unique identifier of managedAppRegistration") {
3232
};
3333
managedAppRegistrationIdOption.IsRequired = true;

src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ public class TargetAppsRequestBuilder : BaseCliRequestBuilder
2121
{
2222
/// <summary>
2323
/// Not yet documented
24-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0" />
24+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0" />
2525
/// </summary>
2626
/// <returns>A <see cref="Command"/></returns>
2727
public Command BuildPostCommand()
2828
{
2929
var command = new Command("post");
30-
command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0";
30+
command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0";
3131
var managedAppRegistrationIdOption = new Option<string>("--managed-app-registration-id", description: "The unique identifier of managedAppRegistration") {
3232
};
3333
managedAppRegistrationIdOption.IsRequired = true;

src/generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ public Command BuildGetUserIdsWithFlaggedAppRegistrationNavCommand()
121121
return command;
122122
}
123123
/// <summary>
124-
/// List properties and relationships of the androidManagedAppRegistration objects.
125-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-list?view=graph-rest-1.0" />
124+
/// List properties and relationships of the iosManagedAppRegistration objects.
125+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-list?view=graph-rest-1.0" />
126126
/// </summary>
127127
/// <returns>A <see cref="Command"/></returns>
128128
public Command BuildListCommand()
129129
{
130130
var command = new Command("list");
131-
command.Description = "List properties and relationships of the androidManagedAppRegistration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-list?view=graph-rest-1.0";
131+
command.Description = "List properties and relationships of the iosManagedAppRegistration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-list?view=graph-rest-1.0";
132132
var topOption = new Option<int?>("--top", description: "Show only the first n items") {
133133
};
134134
topOption.IsRequired = false;
@@ -230,7 +230,7 @@ public ManagedAppRegistrationsRequestBuilder(string rawUrl) : base("{+baseurl}/d
230230
{
231231
}
232232
/// <summary>
233-
/// List properties and relationships of the androidManagedAppRegistration objects.
233+
/// List properties and relationships of the iosManagedAppRegistration objects.
234234
/// </summary>
235235
/// <returns>A <see cref="RequestInformation"/></returns>
236236
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -270,7 +270,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppRegistration body,
270270
return requestInfo;
271271
}
272272
/// <summary>
273-
/// List properties and relationships of the androidManagedAppRegistration objects.
273+
/// List properties and relationships of the iosManagedAppRegistration objects.
274274
/// </summary>
275275
public class ManagedAppRegistrationsRequestBuilderGetQueryParameters
276276
{

0 commit comments

Comments
 (0)