diff --git a/src/generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index ef1cded6e8..7b4e7b5c4a 100644 --- a/src/generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -60,12 +60,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Retrieve a conversationMember from a chat or channel. - /// Find more info here + /// Retrieve a conversationMember from a chat. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - 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"; + 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"; var chatIdOption = new Option("--chat-id", description: "The unique identifier of chat") { }; chatIdOption.IsRequired = true; @@ -200,7 +200,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve a conversationMember from a chat or channel. + /// Retrieve a conversationMember from a chat. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -234,7 +234,7 @@ public RequestInformation ToPatchRequestInformation(ConversationMember body, Act return requestInfo; } /// - /// Retrieve a conversationMember from a chat or channel. + /// Retrieve a conversationMember from a chat. /// public class ConversationMemberItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs b/src/generated/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs index 8cdbfb8a60..60b146437a 100644 --- a/src/generated/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs +++ b/src/generated/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs @@ -97,12 +97,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 kind of resource-specific access that each app has. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 kind of resource-specific access that each app has.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chat-list-permissiongrants?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chat-list-permissiongrants?view=graph-rest-1.0"; var chatIdOption = new Option("--chat-id", description: "The unique identifier of chat") { }; chatIdOption.IsRequired = true; @@ -208,7 +208,7 @@ public PermissionGrantsRequestBuilder(Dictionary pathParameters) public PermissionGrantsRequestBuilder(string rawUrl) : base("{+baseurl}/chats/{chat%2Did}/permissionGrants{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 kind of resource-specific access that each app has. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -242,7 +242,7 @@ public RequestInformation ToPostRequestInformation(ResourceSpecificPermissionGra return requestInfo; } /// - /// 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 kind of resource-specific access that each app has. + /// 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. /// public class PermissionGrantsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs index 733b78d5f3..28f01b4172 100644 --- a/src/generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs +++ b/src/generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs @@ -34,6 +34,14 @@ public class SendActivityNotificationPostRequestBody : IAdditionalDataHolder, IP #nullable restore #else public TeamworkNotificationRecipient Recipient { get; set; } +#endif + /// The teamsAppId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TeamsAppId { get; set; } +#nullable restore +#else + public string TeamsAppId { get; set; } #endif /// The templateParameters property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -74,6 +82,7 @@ public virtual IDictionary> GetFieldDeserializers() { {"chainId", n => { ChainId = n.GetLongValue(); } }, {"previewText", n => { PreviewText = n.GetObjectValue(ItemBody.CreateFromDiscriminatorValue); } }, {"recipient", n => { Recipient = n.GetObjectValue(TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } }, + {"teamsAppId", n => { TeamsAppId = n.GetStringValue(); } }, {"templateParameters", n => { TemplateParameters = n.GetCollectionOfObjectValues(ApiSdk.Models.KeyValuePair.CreateFromDiscriminatorValue)?.ToList(); } }, {"topic", n => { Topic = n.GetObjectValue(TeamworkActivityTopic.CreateFromDiscriminatorValue); } }, }; @@ -88,6 +97,7 @@ public virtual void Serialize(ISerializationWriter writer) { writer.WriteLongValue("chainId", ChainId); writer.WriteObjectValue("previewText", PreviewText); writer.WriteObjectValue("recipient", Recipient); + writer.WriteStringValue("teamsAppId", TeamsAppId); writer.WriteCollectionOfObjectValues("templateParameters", TemplateParameters); writer.WriteObjectValue("topic", Topic); writer.WriteAdditionalData(AdditionalData); diff --git a/src/generated/Communications/Calls/CallsRequestBuilder.cs b/src/generated/Communications/Calls/CallsRequestBuilder.cs index d774f9ea73..dfd4c662c3 100644 --- a/src/generated/Communications/Calls/CallsRequestBuilder.cs +++ b/src/generated/Communications/Calls/CallsRequestBuilder.cs @@ -46,6 +46,7 @@ public Tuple, List> BuildCommand() { commands.Add(builder.BuildRecordResponseNavCommand()); commands.Add(builder.BuildRedirectNavCommand()); commands.Add(builder.BuildRejectNavCommand()); + commands.Add(builder.BuildSendDtmfTonesNavCommand()); commands.Add(builder.BuildSubscribeToToneNavCommand()); commands.Add(builder.BuildTransferNavCommand()); commands.Add(builder.BuildUnmuteNavCommand()); diff --git a/src/generated/Communications/Calls/Item/CallItemRequestBuilder.cs b/src/generated/Communications/Calls/Item/CallItemRequestBuilder.cs index d40b1fdd6d..ba6bce6a94 100644 --- a/src/generated/Communications/Calls/Item/CallItemRequestBuilder.cs +++ b/src/generated/Communications/Calls/Item/CallItemRequestBuilder.cs @@ -13,6 +13,7 @@ using ApiSdk.Communications.Calls.Item.RecordResponse; using ApiSdk.Communications.Calls.Item.Redirect; using ApiSdk.Communications.Calls.Item.Reject; +using ApiSdk.Communications.Calls.Item.SendDtmfTones; using ApiSdk.Communications.Calls.Item.SubscribeToTone; using ApiSdk.Communications.Calls.Item.Transfer; using ApiSdk.Communications.Calls.Item.Unmute; @@ -423,6 +424,21 @@ public Command BuildRejectNavCommand() { return command; } /// + /// Provides operations to call the sendDtmfTones method. + /// + public Command BuildSendDtmfTonesNavCommand() { + var command = new Command("send-dtmf-tones"); + command.Description = "Provides operations to call the sendDtmfTones method."; + var builder = new SendDtmfTonesRequestBuilder(PathParameters); + var execCommands = new List(); + execCommands.Add(builder.BuildPostCommand()); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + return command; + } + /// /// Provides operations to call the subscribeToTone method. /// public Command BuildSubscribeToToneNavCommand() { diff --git a/src/generated/Communications/Calls/Item/SendDtmfTones/SendDtmfTonesPostRequestBody.cs b/src/generated/Communications/Calls/Item/SendDtmfTones/SendDtmfTonesPostRequestBody.cs new file mode 100644 index 0000000000..7fa6f50316 --- /dev/null +++ b/src/generated/Communications/Calls/Item/SendDtmfTones/SendDtmfTonesPostRequestBody.cs @@ -0,0 +1,66 @@ +// +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Communications.Calls.Item.SendDtmfTones { + public class SendDtmfTonesPostRequestBody : IAdditionalDataHolder, IParsable { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData { get; set; } + /// The clientContext property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? ClientContext { get; set; } +#nullable restore +#else + public string ClientContext { get; set; } +#endif + /// The delayBetweenTonesMs property + public int? DelayBetweenTonesMs { get; set; } + /// The tones property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Tones { get; set; } +#nullable restore +#else + public List Tones { get; set; } +#endif + /// + /// Instantiates a new sendDtmfTonesPostRequestBody and sets the default values. + /// + public SendDtmfTonesPostRequestBody() { + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static SendDtmfTonesPostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new SendDtmfTonesPostRequestBody(); + } + /// + /// The deserialization information for the current model + /// + public virtual IDictionary> GetFieldDeserializers() { + return new Dictionary> { + {"clientContext", n => { ClientContext = n.GetStringValue(); } }, + {"delayBetweenTonesMs", n => { DelayBetweenTonesMs = n.GetIntValue(); } }, + {"tones", n => { Tones = n.GetCollectionOfEnumValues()?.ToList(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public virtual void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteStringValue("clientContext", ClientContext); + writer.WriteIntValue("delayBetweenTonesMs", DelayBetweenTonesMs); + writer.WriteCollectionOfEnumValues("tones", Tones); + writer.WriteAdditionalData(AdditionalData); + } + } +} diff --git a/src/generated/Communications/Calls/Item/SendDtmfTones/SendDtmfTonesRequestBuilder.cs b/src/generated/Communications/Calls/Item/SendDtmfTones/SendDtmfTonesRequestBuilder.cs new file mode 100644 index 0000000000..1f225fe4a0 --- /dev/null +++ b/src/generated/Communications/Calls/Item/SendDtmfTones/SendDtmfTonesRequestBuilder.cs @@ -0,0 +1,102 @@ +// +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Communications.Calls.Item.SendDtmfTones { + /// + /// Provides operations to call the sendDtmfTones method. + /// + public class SendDtmfTonesRequestBuilder : BaseCliRequestBuilder { + /// + /// Invoke action sendDtmfTones + /// + public Command BuildPostCommand() { + var command = new Command("post"); + command.Description = "Invoke action sendDtmfTones"; + var callIdOption = new Option("--call-id", description: "The unique identifier of call") { + }; + callIdOption.IsRequired = true; + command.AddOption(callIdOption); + var bodyOption = new Option("--body", description: "The request body") { + }; + bodyOption.IsRequired = true; + command.AddOption(bodyOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var callId = invocationContext.ParseResult.GetValueForOption(callIdOption); + var body = invocationContext.ParseResult.GetValueForOption(bodyOption) ?? string.Empty; + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + using var stream = new MemoryStream(Encoding.UTF8.GetBytes(body)); + var parseNode = ParseNodeFactoryRegistry.DefaultInstance.GetRootParseNode("application/json", stream); + var model = parseNode.GetObjectValue(SendDtmfTonesPostRequestBody.CreateFromDiscriminatorValue); + if (model is null) { + Console.Error.WriteLine("No model data to send."); + return; + } + var requestInfo = ToPostRequestInformation(model, q => { + }); + if (callId is not null) requestInfo.PathParameters.Add("call%2Did", callId); + requestInfo.SetContentFromParsable(reqAdapter, "application/json", model); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new SendDtmfTonesRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public SendDtmfTonesRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/communications/calls/{call%2Did}/sendDtmfTones", pathParameters) { + } + /// + /// Instantiates a new SendDtmfTonesRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public SendDtmfTonesRequestBuilder(string rawUrl) : base("{+baseurl}/communications/calls/{call%2Did}/sendDtmfTones", rawUrl) { + } + /// + /// Invoke action sendDtmfTones + /// + /// The request body + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToPostRequestInformation(SendDtmfTonesPostRequestBody body, Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToPostRequestInformation(SendDtmfTonesPostRequestBody body, Action> requestConfiguration = default) { +#endif + _ = body ?? throw new ArgumentNullException(nameof(body)); + var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + } +} diff --git a/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs b/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs index 3b20084987..56f127c436 100644 --- a/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs +++ b/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs @@ -99,11 +99,11 @@ public Command BuildCreateCommand() { return command; } /// - /// Get attendanceReports from communications + /// The attendance reports of an online meeting. Read-only. /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get attendanceReports from communications"; + command.Description = "The attendance reports of an online meeting. Read-only."; var onlineMeetingIdOption = new Option("--online-meeting-id", description: "The unique identifier of onlineMeeting") { }; onlineMeetingIdOption.IsRequired = true; @@ -209,7 +209,7 @@ public AttendanceReportsRequestBuilder(Dictionary pathParameters public AttendanceReportsRequestBuilder(string rawUrl) : base("{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/attendanceReports{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get attendanceReports from communications + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -243,7 +243,7 @@ public RequestInformation ToPostRequestInformation(MeetingAttendanceReport body, return requestInfo; } /// - /// Get attendanceReports from communications + /// The attendance reports of an online meeting. Read-only. /// public class AttendanceReportsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs b/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs index 086d1cc005..c893ac0e02 100644 --- a/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs +++ b/src/generated/Communications/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs @@ -85,11 +85,11 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get attendanceReports from communications + /// The attendance reports of an online meeting. Read-only. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get attendanceReports from communications"; + command.Description = "The attendance reports of an online meeting. Read-only."; var onlineMeetingIdOption = new Option("--online-meeting-id", description: "The unique identifier of onlineMeeting") { }; onlineMeetingIdOption.IsRequired = true; @@ -224,7 +224,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get attendanceReports from communications + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -258,7 +258,7 @@ public RequestInformation ToPatchRequestInformation(MeetingAttendanceReport body return requestInfo; } /// - /// Get attendanceReports from communications + /// The attendance reports of an online meeting. Read-only. /// public class MeetingAttendanceReportItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Contacts/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Contacts/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 8c2fd5e942..eec3f1c859 100644 --- a/src/generated/Contacts/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Contacts/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an organizational contact object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an organizational contact object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var orgContactIdOption = new Option("--org-contact-id", description: "The unique identifier of orgContact") { }; orgContactIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/contacts/{orgContact%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an organizational contact object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an organizational contact object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs b/src/generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs index b0809b2faa..894867939f 100644 --- a/src/generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs @@ -86,11 +86,11 @@ public Command BuildDefaultManagedAppProtectionsNavCommand() { } /// /// Read properties and relationships of the deviceAppManagement object. - /// Find more info here + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the deviceAppManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the deviceAppManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-get?view=graph-rest-1.0"; var selectOption = new Option("--select", description: "Select properties to be returned") { Arity = ArgumentArity.ZeroOrMore }; @@ -373,11 +373,11 @@ public Command BuildMobileAppsNavCommand() { } /// /// Update the properties of a deviceAppManagement object. - /// Find more info here + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - 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"; + command.Description = "Update the properties of a deviceAppManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-policyset-deviceappmanagement-update?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; diff --git a/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs index 43c63ccf78..1b3aa1d8da 100644 --- a/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs @@ -54,12 +54,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Read properties and relationships of the managedAppProtection object. - /// Find more info here + /// Read properties and relationships of the managedAppConfiguration object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - 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"; + command.Description = "Read properties and relationships of the managedAppConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0"; var managedAppPolicyIdOption = new Option("--managed-app-policy-id", description: "The unique identifier of managedAppPolicy") { }; managedAppPolicyIdOption.IsRequired = true; @@ -197,7 +197,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the managedAppProtection object. + /// Read properties and relationships of the managedAppConfiguration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -231,7 +231,7 @@ public RequestInformation ToPatchRequestInformation(ManagedAppPolicy body, Actio return requestInfo; } /// - /// Read properties and relationships of the managedAppProtection object. + /// Read properties and relationships of the managedAppConfiguration object. /// public class ManagedAppPolicyItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index fd46b28822..ddce525fd3 100644 --- a/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.DeviceAppManagement.ManagedAppPolicies.Item.TargetApps { public class TargetAppsRequestBuilder : BaseCliRequestBuilder { /// /// Not yet documented - /// Find more info here + /// Find more info here /// public Command BuildPostCommand() { var command = new Command("post"); - 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"; + command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0"; var managedAppPolicyIdOption = new Option("--managed-app-policy-id", description: "The unique identifier of managedAppPolicy") { }; managedAppPolicyIdOption.IsRequired = true; diff --git a/src/generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs index 4226c4eadf..1578bfdae0 100644 --- a/src/generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs @@ -93,12 +93,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List properties and relationships of the managedAppPolicy objects. - /// Find more info here + /// List properties and relationships of the managedAppConfiguration objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the managedAppPolicy objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-list?view=graph-rest-1.0"; + 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"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -198,7 +198,7 @@ public ManagedAppPoliciesRequestBuilder(Dictionary pathParameter public ManagedAppPoliciesRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/managedAppPolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the managedAppPolicy objects. + /// List properties and relationships of the managedAppConfiguration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -232,7 +232,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppPolicy body, Action return requestInfo; } /// - /// List properties and relationships of the managedAppPolicy objects. + /// List properties and relationships of the managedAppConfiguration objects. /// public class ManagedAppPoliciesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index 2a967fe6b6..58d638ab88 100644 --- a/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.DeviceAppManagement.ManagedAppRegistrations.Item.AppliedPolicie public class TargetAppsRequestBuilder : BaseCliRequestBuilder { /// /// Not yet documented - /// Find more info here + /// Find more info here /// public Command BuildPostCommand() { var command = new Command("post"); - 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"; + command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0"; var managedAppRegistrationIdOption = new Option("--managed-app-registration-id", description: "The unique identifier of managedAppRegistration") { }; managedAppRegistrationIdOption.IsRequired = true; diff --git a/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index 3ca1bc7167..697db9f989 100644 --- a/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.DeviceAppManagement.ManagedAppRegistrations.Item.IntendedPolici public class TargetAppsRequestBuilder : BaseCliRequestBuilder { /// /// Not yet documented - /// Find more info here + /// Find more info here /// public Command BuildPostCommand() { var command = new Command("post"); - 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"; + command.Description = "Not yet documented\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0"; var managedAppRegistrationIdOption = new Option("--managed-app-registration-id", description: "The unique identifier of managedAppRegistration") { }; managedAppRegistrationIdOption.IsRequired = true; diff --git a/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs index cc4732e2d1..d55a1f2c13 100644 --- a/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs @@ -81,12 +81,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Read properties and relationships of the androidManagedAppRegistration object. - /// Find more info here + /// Read properties and relationships of the iosManagedAppRegistration object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the androidManagedAppRegistration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the iosManagedAppRegistration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-get?view=graph-rest-1.0"; var managedAppRegistrationIdOption = new Option("--managed-app-registration-id", description: "The unique identifier of managedAppRegistration") { }; managedAppRegistrationIdOption.IsRequired = true; @@ -259,7 +259,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the androidManagedAppRegistration object. + /// Read properties and relationships of the iosManagedAppRegistration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -293,7 +293,7 @@ public RequestInformation ToPatchRequestInformation(ManagedAppRegistration body, return requestInfo; } /// - /// Read properties and relationships of the androidManagedAppRegistration object. + /// Read properties and relationships of the iosManagedAppRegistration object. /// public class ManagedAppRegistrationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs index 116d139f26..54a99b542f 100644 --- a/src/generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs @@ -112,12 +112,12 @@ public Command BuildGetUserIdsWithFlaggedAppRegistrationNavCommand() { return command; } /// - /// List properties and relationships of the managedAppRegistration objects. - /// Find more info here + /// List properties and relationships of the androidManagedAppRegistration objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the managedAppRegistration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-list?view=graph-rest-1.0"; + 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"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -217,7 +217,7 @@ public ManagedAppRegistrationsRequestBuilder(Dictionary pathPara public ManagedAppRegistrationsRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/managedAppRegistrations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the managedAppRegistration objects. + /// List properties and relationships of the androidManagedAppRegistration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -251,7 +251,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppRegistration body, return requestInfo; } /// - /// List properties and relationships of the managedAppRegistration objects. + /// List properties and relationships of the androidManagedAppRegistration objects. /// public class ManagedAppRegistrationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs index f8f6825db1..811c9887b7 100644 --- a/src/generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs @@ -91,12 +91,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List properties and relationships of the managedAppStatus objects. - /// Find more info here + /// List properties and relationships of the managedAppStatusRaw objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the managedAppStatus objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the managedAppStatusRaw objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-list?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -196,7 +196,7 @@ public ManagedAppStatusesRequestBuilder(Dictionary pathParameter public ManagedAppStatusesRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/managedAppStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the managedAppStatus objects. + /// List properties and relationships of the managedAppStatusRaw objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -230,7 +230,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppStatus body, Action return requestInfo; } /// - /// List properties and relationships of the managedAppStatus objects. + /// List properties and relationships of the managedAppStatusRaw objects. /// public class ManagedAppStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs index 4d5a46d991..7bb9063969 100644 --- a/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs @@ -98,12 +98,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List properties and relationships of the iosVppEBookAssignment objects. - /// Find more info here + /// List properties and relationships of the managedEBookAssignment objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the iosVppEBookAssignment objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the managedEBookAssignment objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-list?view=graph-rest-1.0"; var managedEBookIdOption = new Option("--managed-ebook-id", description: "The unique identifier of managedEBook") { }; managedEBookIdOption.IsRequired = true; @@ -209,7 +209,7 @@ public AssignmentsRequestBuilder(Dictionary pathParameters) : ba public AssignmentsRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the iosVppEBookAssignment objects. + /// List properties and relationships of the managedEBookAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -243,7 +243,7 @@ public RequestInformation ToPostRequestInformation(ManagedEBookAssignment body, return requestInfo; } /// - /// List properties and relationships of the iosVppEBookAssignment objects. + /// List properties and relationships of the managedEBookAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs b/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs index ab90b93af8..e46afee98d 100644 --- a/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.DeviceAppManagement.ManagedEBooks.Item.Assignments.Item { /// public class ManagedEBookAssignmentItemRequestBuilder : BaseCliRequestBuilder { /// - /// Deletes a managedEBookAssignment. - /// Find more info here + /// Deletes a iosVppEBookAssignment. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Deletes a managedEBookAssignment.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-delete?view=graph-rest-1.0"; + command.Description = "Deletes a iosVppEBookAssignment.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-delete?view=graph-rest-1.0"; var managedEBookIdOption = new Option("--managed-ebook-id", description: "The unique identifier of managedEBook") { }; managedEBookIdOption.IsRequired = true; @@ -185,7 +185,7 @@ public ManagedEBookAssignmentItemRequestBuilder(Dictionary pathP public ManagedEBookAssignmentItemRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments/{managedEBookAssignment%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Deletes a managedEBookAssignment. + /// Deletes a iosVppEBookAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs b/src/generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs index 509dd97fe0..1508c4f97c 100644 --- a/src/generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs @@ -103,12 +103,12 @@ public Command BuildCategoriesNavCommand() { return command; } /// - /// Deletes a macOSOfficeSuiteApp. - /// Find more info here + /// Deletes a windowsAppX. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Deletes a macOSOfficeSuiteApp.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-delete?view=graph-rest-1.0"; + command.Description = "Deletes a windowsAppX.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-windowsappx-delete?view=graph-rest-1.0"; var mobileAppIdOption = new Option("--mobile-app-id", description: "The unique identifier of mobileApp") { }; mobileAppIdOption.IsRequired = true; @@ -137,12 +137,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Read properties and relationships of the managedAndroidStoreApp object. - /// Find more info here + /// Read properties and relationships of the windowsMicrosoftEdgeApp object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the managedAndroidStoreApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-managedandroidstoreapp-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the windowsMicrosoftEdgeApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-windowsmicrosoftedgeapp-get?view=graph-rest-1.0"; var mobileAppIdOption = new Option("--mobile-app-id", description: "The unique identifier of mobileApp") { }; mobileAppIdOption.IsRequired = true; @@ -552,12 +552,12 @@ public Command BuildGraphWindowsWebAppByIdNavCommand() { return command; } /// - /// Update the properties of a macOSLobApp object. - /// Find more info here + /// Update the properties of a iosiPadOSWebClip object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of a macOSLobApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-macoslobapp-update?view=graph-rest-1.0"; + command.Description = "Update the properties of a iosiPadOSWebClip object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-iosipadoswebclip-update?view=graph-rest-1.0"; var mobileAppIdOption = new Option("--mobile-app-id", description: "The unique identifier of mobileApp") { }; mobileAppIdOption.IsRequired = true; @@ -614,7 +614,7 @@ public MobileAppItemRequestBuilder(Dictionary pathParameters) : public MobileAppItemRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Deletes a macOSOfficeSuiteApp. + /// Deletes a windowsAppX. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -630,7 +630,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the managedAndroidStoreApp object. + /// Read properties and relationships of the windowsMicrosoftEdgeApp object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -646,7 +646,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a macOSLobApp object. + /// Update the properties of a iosiPadOSWebClip object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -664,7 +664,7 @@ public RequestInformation ToPatchRequestInformation(MobileApp body, Action - /// Read properties and relationships of the managedAndroidStoreApp object. + /// Read properties and relationships of the windowsMicrosoftEdgeApp object. /// public class MobileAppItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs b/src/generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs index 1e4d1f0c27..69826e352e 100644 --- a/src/generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs +++ b/src/generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs @@ -84,12 +84,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Create a new windowsMicrosoftEdgeApp object. - /// Find more info here + /// Create a new windowsUniversalAppX object. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Create a new windowsMicrosoftEdgeApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-windowsmicrosoftedgeapp-create?view=graph-rest-1.0"; + command.Description = "Create a new windowsUniversalAppX object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-windowsuniversalappx-create?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; @@ -464,12 +464,12 @@ public Command BuildGraphWindowsWebAppNavCommand() { return command; } /// - /// List properties and relationships of the androidStoreApp objects. - /// Find more info here + /// List properties and relationships of the windowsAppX objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the androidStoreApp objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-androidstoreapp-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the windowsAppX objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-windowsappx-list?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -569,7 +569,7 @@ public MobileAppsRequestBuilder(Dictionary pathParameters) : bas public MobileAppsRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/mobileApps{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the androidStoreApp objects. + /// List properties and relationships of the windowsAppX objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -585,7 +585,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new windowsMicrosoftEdgeApp object. + /// Create a new windowsUniversalAppX object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -603,7 +603,7 @@ public RequestInformation ToPostRequestInformation(MobileApp body, Action - /// List properties and relationships of the androidStoreApp objects. + /// List properties and relationships of the windowsAppX objects. /// public class MobileAppsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs b/src/generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs index 8db239999c..d0c25d74a5 100644 --- a/src/generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs +++ b/src/generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs @@ -58,12 +58,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Create a new windows81CompliancePolicy object. - /// Find more info here + /// Create a new androidWorkProfileCompliancePolicy object. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Create a new windows81CompliancePolicy object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-create?view=graph-rest-1.0"; + command.Description = "Create a new androidWorkProfileCompliancePolicy object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-androidworkprofilecompliancepolicy-create?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; @@ -102,12 +102,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List properties and relationships of the windows81CompliancePolicy objects. - /// Find more info here + /// List properties and relationships of the windows10CompliancePolicy objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the windows81CompliancePolicy objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the windows10CompliancePolicy objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10compliancepolicy-list?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -207,7 +207,7 @@ public DeviceCompliancePoliciesRequestBuilder(Dictionary pathPar public DeviceCompliancePoliciesRequestBuilder(string rawUrl) : base("{+baseurl}/deviceManagement/deviceCompliancePolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the windows81CompliancePolicy objects. + /// List properties and relationships of the windows10CompliancePolicy objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -223,7 +223,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new windows81CompliancePolicy object. + /// Create a new androidWorkProfileCompliancePolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -241,7 +241,7 @@ public RequestInformation ToPostRequestInformation(DeviceCompliancePolicy body, return requestInfo; } /// - /// List properties and relationships of the windows81CompliancePolicy objects. + /// List properties and relationships of the windows10CompliancePolicy objects. /// public class DeviceCompliancePoliciesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs b/src/generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs index db1aa2fc5b..ea460f0102 100644 --- a/src/generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs +++ b/src/generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs @@ -69,12 +69,12 @@ public Command BuildAssignNavCommand() { return command; } /// - /// Deletes a macOSCompliancePolicy. - /// Find more info here + /// Deletes a windows81CompliancePolicy. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Deletes a macOSCompliancePolicy.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-macoscompliancepolicy-delete?view=graph-rest-1.0"; + command.Description = "Deletes a windows81CompliancePolicy.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-delete?view=graph-rest-1.0"; var deviceCompliancePolicyIdOption = new Option("--device-compliance-policy-id", description: "The unique identifier of deviceCompliancePolicy") { }; deviceCompliancePolicyIdOption.IsRequired = true; @@ -170,12 +170,12 @@ public Command BuildDeviceStatusOverviewNavCommand() { return command; } /// - /// Read properties and relationships of the windows81CompliancePolicy object. - /// Find more info here + /// Read properties and relationships of the windows10CompliancePolicy object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the windows81CompliancePolicy object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the windows10CompliancePolicy object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10compliancepolicy-get?view=graph-rest-1.0"; var deviceCompliancePolicyIdOption = new Option("--device-compliance-policy-id", description: "The unique identifier of deviceCompliancePolicy") { }; deviceCompliancePolicyIdOption.IsRequired = true; @@ -221,12 +221,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the properties of a androidCompliancePolicy object. - /// Find more info here + /// Update the properties of a iosCompliancePolicy object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of a androidCompliancePolicy object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-androidcompliancepolicy-update?view=graph-rest-1.0"; + command.Description = "Update the properties of a iosCompliancePolicy object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-ioscompliancepolicy-update?view=graph-rest-1.0"; var deviceCompliancePolicyIdOption = new Option("--device-compliance-policy-id", description: "The unique identifier of deviceCompliancePolicy") { }; deviceCompliancePolicyIdOption.IsRequired = true; @@ -365,7 +365,7 @@ public DeviceCompliancePolicyItemRequestBuilder(Dictionary pathP public DeviceCompliancePolicyItemRequestBuilder(string rawUrl) : base("{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Deletes a macOSCompliancePolicy. + /// Deletes a windows81CompliancePolicy. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -381,7 +381,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the windows81CompliancePolicy object. + /// Read properties and relationships of the windows10CompliancePolicy object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -397,7 +397,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a androidCompliancePolicy object. + /// Update the properties of a iosCompliancePolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -415,7 +415,7 @@ public RequestInformation ToPatchRequestInformation(DeviceCompliancePolicy body, return requestInfo; } /// - /// Read properties and relationships of the windows81CompliancePolicy object. + /// Read properties and relationships of the windows10CompliancePolicy object. /// public class DeviceCompliancePolicyItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs b/src/generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs index 017e7fed03..5a58c9ca48 100644 --- a/src/generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs +++ b/src/generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs @@ -57,12 +57,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Create a new windowsPhone81GeneralConfiguration object. - /// Find more info here + /// Create a new sharedPCConfiguration object. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Create a new windowsPhone81GeneralConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windowsphone81generalconfiguration-create?view=graph-rest-1.0"; + command.Description = "Create a new sharedPCConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-sharedpcconfiguration-create?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; @@ -101,12 +101,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List properties and relationships of the androidCustomConfiguration objects. - /// Find more info here + /// List properties and relationships of the sharedPCConfiguration objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the androidCustomConfiguration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-androidcustomconfiguration-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the sharedPCConfiguration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-sharedpcconfiguration-list?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -206,7 +206,7 @@ public DeviceConfigurationsRequestBuilder(Dictionary pathParamet public DeviceConfigurationsRequestBuilder(string rawUrl) : base("{+baseurl}/deviceManagement/deviceConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the androidCustomConfiguration objects. + /// List properties and relationships of the sharedPCConfiguration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -222,7 +222,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new windowsPhone81GeneralConfiguration object. + /// Create a new sharedPCConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -240,7 +240,7 @@ public RequestInformation ToPostRequestInformation(DeviceConfiguration body, Act return requestInfo; } /// - /// List properties and relationships of the androidCustomConfiguration objects. + /// List properties and relationships of the sharedPCConfiguration objects. /// public class DeviceConfigurationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs b/src/generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs index 2c8c16513f..6bf840332b 100644 --- a/src/generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs +++ b/src/generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs @@ -68,12 +68,12 @@ public Command BuildAssignNavCommand() { return command; } /// - /// Deletes a iosGeneralDeviceConfiguration. - /// Find more info here + /// Deletes a macOSGeneralDeviceConfiguration. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Deletes a iosGeneralDeviceConfiguration.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-iosgeneraldeviceconfiguration-delete?view=graph-rest-1.0"; + command.Description = "Deletes a macOSGeneralDeviceConfiguration.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-macosgeneraldeviceconfiguration-delete?view=graph-rest-1.0"; var deviceConfigurationIdOption = new Option("--device-configuration-id", description: "The unique identifier of deviceConfiguration") { }; deviceConfigurationIdOption.IsRequired = true; @@ -169,12 +169,12 @@ public Command BuildDeviceStatusOverviewNavCommand() { return command; } /// - /// Read properties and relationships of the appleDeviceFeaturesConfigurationBase object. - /// Find more info here + /// Read properties and relationships of the iosGeneralDeviceConfiguration object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the appleDeviceFeaturesConfigurationBase object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-appledevicefeaturesconfigurationbase-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the iosGeneralDeviceConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-iosgeneraldeviceconfiguration-get?view=graph-rest-1.0"; var deviceConfigurationIdOption = new Option("--device-configuration-id", description: "The unique identifier of deviceConfiguration") { }; deviceConfigurationIdOption.IsRequired = true; @@ -235,12 +235,12 @@ public Command BuildGetOmaSettingPlainTextValueWithSecretReferenceValueIdRbComma return command; } /// - /// Update the properties of a windowsUpdateForBusinessConfiguration object. - /// Find more info here + /// Update the properties of a androidWorkProfileGeneralDeviceConfiguration object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of a windowsUpdateForBusinessConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-update?view=graph-rest-1.0"; + command.Description = "Update the properties of a androidWorkProfileGeneralDeviceConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-update?view=graph-rest-1.0"; var deviceConfigurationIdOption = new Option("--device-configuration-id", description: "The unique identifier of deviceConfiguration") { }; deviceConfigurationIdOption.IsRequired = true; @@ -339,7 +339,7 @@ public DeviceConfigurationItemRequestBuilder(Dictionary pathPara public DeviceConfigurationItemRequestBuilder(string rawUrl) : base("{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Deletes a iosGeneralDeviceConfiguration. + /// Deletes a macOSGeneralDeviceConfiguration. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -355,7 +355,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the appleDeviceFeaturesConfigurationBase object. + /// Read properties and relationships of the iosGeneralDeviceConfiguration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -371,7 +371,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a windowsUpdateForBusinessConfiguration object. + /// Update the properties of a androidWorkProfileGeneralDeviceConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -389,7 +389,7 @@ public RequestInformation ToPatchRequestInformation(DeviceConfiguration body, Ac return requestInfo; } /// - /// Read properties and relationships of the appleDeviceFeaturesConfigurationBase object. + /// Read properties and relationships of the iosGeneralDeviceConfiguration object. /// public class DeviceConfigurationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs b/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs index c6760447ee..5474a7e6e4 100644 --- a/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs +++ b/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs @@ -52,12 +52,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Create a new deviceEnrollmentLimitConfiguration object. - /// Find more info here + /// Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Create a new deviceEnrollmentLimitConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentlimitconfiguration-create?view=graph-rest-1.0"; + command.Description = "Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-create?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; @@ -96,12 +96,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List properties and relationships of the deviceEnrollmentConfiguration objects. - /// Find more info here + /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the deviceEnrollmentConfiguration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-list?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -201,7 +201,7 @@ public DeviceEnrollmentConfigurationsRequestBuilder(Dictionary p public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl) : base("{+baseurl}/deviceManagement/deviceEnrollmentConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the deviceEnrollmentConfiguration objects. + /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -217,7 +217,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new deviceEnrollmentLimitConfiguration object. + /// Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -235,7 +235,7 @@ public RequestInformation ToPostRequestInformation(DeviceEnrollmentConfiguration return requestInfo; } /// - /// List properties and relationships of the deviceEnrollmentConfiguration objects. + /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. /// public class DeviceEnrollmentConfigurationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs b/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs index faa9aa1eef..eaa64d0646 100644 --- a/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs +++ b/src/generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs @@ -97,12 +97,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration object. - /// Find more info here + /// Read properties and relationships of the deviceEnrollmentConfiguration object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the deviceEnrollmentConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-get?view=graph-rest-1.0"; var deviceEnrollmentConfigurationIdOption = new Option("--device-enrollment-configuration-id", description: "The unique identifier of deviceEnrollmentConfiguration") { }; deviceEnrollmentConfigurationIdOption.IsRequired = true; @@ -241,7 +241,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration object. + /// Read properties and relationships of the deviceEnrollmentConfiguration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -275,7 +275,7 @@ public RequestInformation ToPatchRequestInformation(DeviceEnrollmentConfiguratio return requestInfo; } /// - /// Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration object. + /// Read properties and relationships of the deviceEnrollmentConfiguration object. /// public class DeviceEnrollmentConfigurationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/DeviceManagement/DeviceManagementRequestBuilder.cs b/src/generated/DeviceManagement/DeviceManagementRequestBuilder.cs index 7de69b2573..c49b7f83ee 100644 --- a/src/generated/DeviceManagement/DeviceManagementRequestBuilder.cs +++ b/src/generated/DeviceManagement/DeviceManagementRequestBuilder.cs @@ -408,11 +408,11 @@ public Command BuildExchangeConnectorsNavCommand() { } /// /// Read properties and relationships of the deviceManagement object. - /// Find more info here + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the deviceManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-auditing-devicemanagement-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the deviceManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-notification-devicemanagement-get?view=graph-rest-1.0"; var selectOption = new Option("--select", description: "Select properties to be returned") { Arity = ArgumentArity.ZeroOrMore }; @@ -634,11 +634,11 @@ public Command BuildNotificationMessageTemplatesNavCommand() { } /// /// Update the properties of a deviceManagement object. - /// Find more info here + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of a deviceManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-companyterms-devicemanagement-update?view=graph-rest-1.0"; + command.Description = "Update the properties of a deviceManagement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-raimportcerts-devicemanagement-update?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; diff --git a/src/generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs b/src/generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs index ba683d17fc..d4a775ea49 100644 --- a/src/generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs +++ b/src/generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs @@ -55,12 +55,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Read properties and relationships of the roleDefinition object. - /// Find more info here + /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Read properties and relationships of the roleDefinition object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the deviceAndAppManagementRoleDefinition object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-deviceandappmanagementroledefinition-get?view=graph-rest-1.0"; var roleDefinitionIdOption = new Option("--role-definition-id", description: "The unique identifier of roleDefinition") { }; roleDefinitionIdOption.IsRequired = true; @@ -106,12 +106,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the properties of a roleDefinition object. - /// Find more info here + /// Update the properties of a deviceAndAppManagementRoleDefinition object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of a roleDefinition object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-update?view=graph-rest-1.0"; + command.Description = "Update the properties of a deviceAndAppManagementRoleDefinition object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-deviceandappmanagementroledefinition-update?view=graph-rest-1.0"; var roleDefinitionIdOption = new Option("--role-definition-id", description: "The unique identifier of roleDefinition") { }; roleDefinitionIdOption.IsRequired = true; @@ -209,7 +209,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the roleDefinition object. + /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -225,7 +225,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a roleDefinition object. + /// Update the properties of a deviceAndAppManagementRoleDefinition object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -243,7 +243,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.RoleDefinition return requestInfo; } /// - /// Read properties and relationships of the roleDefinition object. + /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. /// public class RoleDefinitionItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs b/src/generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs index 726804122d..a088b14d8c 100644 --- a/src/generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs +++ b/src/generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs @@ -50,12 +50,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Create a new roleDefinition object. - /// Find more info here + /// Create a new deviceAndAppManagementRoleDefinition object. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Create a new roleDefinition object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-create?view=graph-rest-1.0"; + command.Description = "Create a new deviceAndAppManagementRoleDefinition object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-deviceandappmanagementroledefinition-create?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; @@ -94,12 +94,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects. - /// Find more info here + /// List properties and relationships of the roleDefinition objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the deviceAndAppManagementRoleDefinition objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-deviceandappmanagementroledefinition-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the roleDefinition objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-list?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -199,7 +199,7 @@ public RoleDefinitionsRequestBuilder(Dictionary pathParameters) public RoleDefinitionsRequestBuilder(string rawUrl) : base("{+baseurl}/deviceManagement/roleDefinitions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + /// List properties and relationships of the roleDefinition objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -215,7 +215,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new roleDefinition object. + /// Create a new deviceAndAppManagementRoleDefinition object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -233,7 +233,7 @@ public RequestInformation ToPostRequestInformation(ApiSdk.Models.RoleDefinition return requestInfo; } /// - /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + /// List properties and relationships of the roleDefinition objects. /// public class RoleDefinitionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 46d5308e98..466163d27e 100644 --- a/src/generated/Drives/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 44210a24cc..b816d4f4d2 100644 --- a/src/generated/Drives/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 894b1936c1..0a8b7a9f41 100644 --- a/src/generated/Drives/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.Items.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index dfb0934e93..86561177e5 100644 --- a/src/generated/Drives/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs index d54aefbc1f..e15b0300da 100644 --- a/src/generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs @@ -467,12 +467,12 @@ public Command BuildListItemNavCommand() { return command; } /// - /// 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. - /// Find more info here + /// To move a DriveItem to a new parent item, your app requests to update the parentReference of the DriveItem to move. This is a special case of the Update method.Your app can combine moving an item to a new container and updating other properties of the item into a single request. Items cannot be moved between Drives using this request. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/driveitem-update?view=graph-rest-1.0"; + command.Description = "To move a DriveItem to a new parent item, your app requests to update the parentReference of the DriveItem to move. This is a special case of the Update method.Your app can combine moving an item to a new container and updating other properties of the item into a single request. Items cannot be moved between Drives using this request.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/driveitem-move?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -808,7 +808,7 @@ public RequestInformation ToGetRequestInformation(Action - /// 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. + /// To move a DriveItem to a new parent item, your app requests to update the parentReference of the DriveItem to move. This is a special case of the Update method.Your app can combine moving an item to a new container and updating other properties of the item into a single request. Items cannot be moved between Drives using this request. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Drives/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index c2f262acd6..b35e1af7ee 100644 --- a/src/generated/Drives/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.Items.Item.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 8838b920b9..e942cece1e 100644 --- a/src/generated/Drives/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/Items/Item/Workbook/Names/NamesRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/Workbook/Names/NamesRequestBuilder.cs index 5e02721481..1f103d6f21 100644 --- a/src/generated/Drives/Item/Items/Item/Workbook/Names/NamesRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/Workbook/Names/NamesRequestBuilder.cs @@ -139,11 +139,11 @@ public Command BuildCreateCommand() { } /// /// Retrieve a list of nameditem objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of nameditem objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/workbook-list-names?view=graph-rest-1.0"; + command.Description = "Retrieve a list of nameditem objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/nameditem-list?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; diff --git a/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs index 4fd3ffe897..12fccb0c54 100644 --- a/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs @@ -149,11 +149,11 @@ public Command BuildItemAtWithIndexRbCommand() { } /// /// Retrieve a list of tablecolumn objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of tablecolumn objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/table-list-columns?view=graph-rest-1.0"; + command.Description = "Retrieve a list of tablecolumn objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/tablecolumn-list?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; diff --git a/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Rows/RowsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Rows/RowsRequestBuilder.cs index 2f91e72d1b..dffa0e7ce4 100644 --- a/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Rows/RowsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/Workbook/Tables/Item/Rows/RowsRequestBuilder.cs @@ -145,11 +145,11 @@ public Command BuildItemAtWithIndexRbCommand() { } /// /// Retrieve a list of tablerow objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of tablerow objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/tablerow-list?view=graph-rest-1.0"; + command.Description = "Retrieve a list of tablerow objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/table-list-rows?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; diff --git a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs index 765e4ab10e..e3ce1d11a1 100644 --- a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs @@ -173,11 +173,11 @@ public Command BuildItemWithNameRbCommand() { } /// /// Retrieve a list of chart objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of chart objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chart-list?view=graph-rest-1.0"; + command.Description = "Retrieve a list of chart objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/worksheet-list-charts?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; diff --git a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs index cd854cc471..3938a7ebeb 100644 --- a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs @@ -155,11 +155,11 @@ public Command BuildItemAtWithIndexRbCommand() { } /// /// Retrieve a list of tablecolumn objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of tablecolumn objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/table-list-columns?view=graph-rest-1.0"; + command.Description = "Retrieve a list of tablecolumn objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/tablecolumn-list?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; diff --git a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Rows/RowsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Rows/RowsRequestBuilder.cs index b64f5579bb..3153b5346e 100644 --- a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Rows/RowsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Rows/RowsRequestBuilder.cs @@ -151,11 +151,11 @@ public Command BuildItemAtWithIndexRbCommand() { } /// /// Retrieve a list of tablerow objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of tablerow objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/tablerow-list?view=graph-rest-1.0"; + command.Description = "Retrieve a list of tablerow objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/table-list-rows?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; diff --git a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs index f17c8b9bc5..d6c317f650 100644 --- a/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs +++ b/src/generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs @@ -131,11 +131,11 @@ public Command BuildCreateCommand() { } /// /// Retrieve a list of worksheet objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of worksheet objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/worksheet-list?view=graph-rest-1.0"; + command.Description = "Retrieve a list of worksheet objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/workbook-list-worksheets?view=graph-rest-1.0"; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; diff --git a/src/generated/Drives/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index d9d8d8fa00..617b67a52d 100644 --- a/src/generated/Drives/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index e9da77d834..6b6f700af1 100644 --- a/src/generated/Drives/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 4eb5b4a311..6bc19fe729 100644 --- a/src/generated/Drives/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.List.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 4635b1e0ac..ccafcc0556 100644 --- a/src/generated/Drives/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index c0c8818245..13cb7b5c32 100644 --- a/src/generated/Drives/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.List.Items.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index dbf9cbe59e..64869842ec 100644 --- a/src/generated/Drives/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index ae67d39421..92f267545a 100644 --- a/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.List.Items.Item.LastModifiedByUser.MailboxSettings /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index d07561183d..15db268082 100644 --- a/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Drives/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Drives/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 39ecd59eea..e234093875 100644 --- a/src/generated/Drives/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Drives.Item.List.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Drives/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Drives/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index d3a2c4596e..ad24fe585c 100644 --- a/src/generated/Drives/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Drives/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var driveIdOption = new Option("--drive-id", description: "The unique identifier of drive") { }; driveIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/drives/{drive%2Did}/list/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs b/src/generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs index ff4f50f506..e2cacfee4f 100644 --- a/src/generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs @@ -1,4 +1,5 @@ // +using ApiSdk.Education.Classes.Item.AssignmentSettings.GradingCategories; using ApiSdk.Models.ODataErrors; using ApiSdk.Models; using Microsoft.Kiota.Abstractions.Serialization; @@ -103,6 +104,31 @@ public Command BuildGetCommand() { return command; } /// + /// Provides operations to manage the gradingCategories property of the microsoft.graph.educationAssignmentSettings entity. + /// + public Command BuildGradingCategoriesNavCommand() { + var command = new Command("grading-categories"); + command.Description = "Provides operations to manage the gradingCategories property of the microsoft.graph.educationAssignmentSettings entity."; + var builder = new GradingCategoriesRequestBuilder(PathParameters); + var execCommands = new List(); + var nonExecCommands = new List(); + nonExecCommands.Add(builder.BuildCountNavCommand()); + execCommands.Add(builder.BuildCreateCommand()); + execCommands.Add(builder.BuildListCommand()); + var cmds = builder.BuildCommand(); + execCommands.AddRange(cmds.Item1); + nonExecCommands.AddRange(cmds.Item2); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + foreach (var cmd in nonExecCommands.OrderBy(static c => c.Name, StringComparer.Ordinal)) + { + command.AddCommand(cmd); + } + return command; + } + /// /// Update the properties of an educationAssignmentSettings object. Only teachers can update these settings. /// Find more info here /// diff --git a/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/Count/CountRequestBuilder.cs b/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/Count/CountRequestBuilder.cs new file mode 100644 index 0000000000..18d2a83a1d --- /dev/null +++ b/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/Count/CountRequestBuilder.cs @@ -0,0 +1,115 @@ +// +using ApiSdk.Models.ODataErrors; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Education.Classes.Item.AssignmentSettings.GradingCategories.Count { + /// + /// Provides operations to count the resources in the collection. + /// + public class CountRequestBuilder : BaseCliRequestBuilder { + /// + /// Get the number of the resource + /// + public Command BuildGetCommand() { + var command = new Command("get"); + command.Description = "Get the number of the resource"; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var searchOption = new Option("--search", description: "Search items by search phrases") { + }; + searchOption.IsRequired = false; + command.AddOption(searchOption); + var filterOption = new Option("--filter", description: "Filter items by property values") { + }; + filterOption.IsRequired = false; + command.AddOption(filterOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var search = invocationContext.ParseResult.GetValueForOption(searchOption); + var filter = invocationContext.ParseResult.GetValueForOption(filterOption); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + if (!string.IsNullOrEmpty(search)) q.QueryParameters.Search = search; + if (!string.IsNullOrEmpty(filter)) q.QueryParameters.Filter = filter; + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + var formatter = outputFormatterFactory.GetFormatter(FormatterType.TEXT); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new CountRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public CountRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignmentSettings/gradingCategories/$count{?%24search,%24filter}", pathParameters) { + } + /// + /// Instantiates a new CountRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public CountRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignmentSettings/gradingCategories/$count{?%24search,%24filter}", rawUrl) { + } + /// + /// Get the number of the resource + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "text/plain;q=0.9"); + return requestInfo; + } + /// + /// Get the number of the resource + /// + public class CountRequestBuilderGetQueryParameters { + /// Filter items by property values +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24filter")] + public string? Filter { get; set; } +#nullable restore +#else + [QueryParameter("%24filter")] + public string Filter { get; set; } +#endif + /// Search items by search phrases +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24search")] + public string? Search { get; set; } +#nullable restore +#else + [QueryParameter("%24search")] + public string Search { get; set; } +#endif + } + } +} diff --git a/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/GradingCategoriesRequestBuilder.cs b/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/GradingCategoriesRequestBuilder.cs new file mode 100644 index 0000000000..49f66f39c7 --- /dev/null +++ b/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/GradingCategoriesRequestBuilder.cs @@ -0,0 +1,308 @@ +// +using ApiSdk.Education.Classes.Item.AssignmentSettings.GradingCategories.Count; +using ApiSdk.Education.Classes.Item.AssignmentSettings.GradingCategories.Item; +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Education.Classes.Item.AssignmentSettings.GradingCategories { + /// + /// Provides operations to manage the gradingCategories property of the microsoft.graph.educationAssignmentSettings entity. + /// + public class GradingCategoriesRequestBuilder : BaseCliRequestBuilder { + /// + /// Provides operations to manage the gradingCategories property of the microsoft.graph.educationAssignmentSettings entity. + /// + public Tuple, List> BuildCommand() { + var executables = new List(); + var builder = new EducationGradingCategoryItemRequestBuilder(PathParameters); + executables.Add(builder.BuildDeleteCommand()); + executables.Add(builder.BuildGetCommand()); + executables.Add(builder.BuildPatchCommand()); + return new(executables, new(0)); + } + /// + /// Provides operations to count the resources in the collection. + /// + public Command BuildCountNavCommand() { + var command = new Command("count"); + command.Description = "Provides operations to count the resources in the collection."; + var builder = new CountRequestBuilder(PathParameters); + var execCommands = new List(); + execCommands.Add(builder.BuildGetCommand()); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + return command; + } + /// + /// Create new navigation property to gradingCategories for education + /// + public Command BuildCreateCommand() { + var command = new Command("create"); + command.Description = "Create new navigation property to gradingCategories for education"; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var bodyOption = new Option("--body", description: "The request body") { + }; + bodyOption.IsRequired = true; + command.AddOption(bodyOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var body = invocationContext.ParseResult.GetValueForOption(bodyOption) ?? string.Empty; + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + using var stream = new MemoryStream(Encoding.UTF8.GetBytes(body)); + var parseNode = ParseNodeFactoryRegistry.DefaultInstance.GetRootParseNode("application/json", stream); + var model = parseNode.GetObjectValue(EducationGradingCategory.CreateFromDiscriminatorValue); + if (model is null) { + Console.Error.WriteLine("No model data to send."); + return; + } + var requestInfo = ToPostRequestInformation(model, q => { + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + requestInfo.SetContentFromParsable(reqAdapter, "application/json", model); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public Command BuildListCommand() { + var command = new Command("list"); + command.Description = "When set, enables users to weight assignments differently when computing a class average grade."; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var topOption = new Option("--top", description: "Show only the first n items") { + }; + topOption.IsRequired = false; + command.AddOption(topOption); + var skipOption = new Option("--skip", description: "Skip the first n items") { + }; + skipOption.IsRequired = false; + command.AddOption(skipOption); + var searchOption = new Option("--search", description: "Search items by search phrases") { + }; + searchOption.IsRequired = false; + command.AddOption(searchOption); + var filterOption = new Option("--filter", description: "Filter items by property values") { + }; + filterOption.IsRequired = false; + command.AddOption(filterOption); + var countOption = new Option("--count", description: "Include count of items") { + }; + countOption.IsRequired = false; + command.AddOption(countOption); + var orderbyOption = new Option("--orderby", description: "Order items by property values") { + Arity = ArgumentArity.ZeroOrMore + }; + orderbyOption.IsRequired = false; + command.AddOption(orderbyOption); + var selectOption = new Option("--select", description: "Select properties to be returned") { + Arity = ArgumentArity.ZeroOrMore + }; + selectOption.IsRequired = false; + command.AddOption(selectOption); + var expandOption = new Option("--expand", description: "Expand related entities") { + Arity = ArgumentArity.ZeroOrMore + }; + expandOption.IsRequired = false; + command.AddOption(expandOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + var allOption = new Option("--all"); + command.AddOption(allOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var top = invocationContext.ParseResult.GetValueForOption(topOption); + var skip = invocationContext.ParseResult.GetValueForOption(skipOption); + var search = invocationContext.ParseResult.GetValueForOption(searchOption); + var filter = invocationContext.ParseResult.GetValueForOption(filterOption); + var count = invocationContext.ParseResult.GetValueForOption(countOption); + var orderby = invocationContext.ParseResult.GetValueForOption(orderbyOption); + var select = invocationContext.ParseResult.GetValueForOption(selectOption); + var expand = invocationContext.ParseResult.GetValueForOption(expandOption); + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + var all = invocationContext.ParseResult.GetValueForOption(allOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + IPagingService pagingService = invocationContext.BindingContext.GetService(typeof(IPagingService)) as IPagingService ?? throw new ArgumentNullException("pagingService"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + q.QueryParameters.Top = top; + q.QueryParameters.Skip = skip; + if (!string.IsNullOrEmpty(search)) q.QueryParameters.Search = search; + if (!string.IsNullOrEmpty(filter)) q.QueryParameters.Filter = filter; + q.QueryParameters.Count = count; + q.QueryParameters.Orderby = orderby; + q.QueryParameters.Select = select; + q.QueryParameters.Expand = expand; + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var pagingData = new PageLinkData(requestInfo, null, itemName: "value", nextLinkName: "@odata.nextLink"); + var pageResponse = await pagingService.GetPagedDataAsync((info, token) => reqAdapter.SendNoContentAsync(info, cancellationToken: token), pagingData, all, cancellationToken); + var response = pageResponse?.Response; + IOutputFormatter? formatter = null; + if (pageResponse?.StatusCode >= 200 && pageResponse?.StatusCode < 300) { + formatter = outputFormatterFactory.GetFormatter(output); + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + } else { + formatter = outputFormatterFactory.GetFormatter(FormatterType.TEXT); + } + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new GradingCategoriesRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public GradingCategoriesRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignmentSettings/gradingCategories{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", pathParameters) { + } + /// + /// Instantiates a new GradingCategoriesRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public GradingCategoriesRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignmentSettings/gradingCategories{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// Create new navigation property to gradingCategories for education + /// + /// The request body + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToPostRequestInformation(EducationGradingCategory body, Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToPostRequestInformation(EducationGradingCategory body, Action> requestConfiguration = default) { +#endif + _ = body ?? throw new ArgumentNullException(nameof(body)); + var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public class GradingCategoriesRequestBuilderGetQueryParameters { + /// Include count of items + [QueryParameter("%24count")] + public bool? Count { get; set; } + /// Expand related entities +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24expand")] + public string[]? Expand { get; set; } +#nullable restore +#else + [QueryParameter("%24expand")] + public string[] Expand { get; set; } +#endif + /// Filter items by property values +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24filter")] + public string? Filter { get; set; } +#nullable restore +#else + [QueryParameter("%24filter")] + public string Filter { get; set; } +#endif + /// Order items by property values +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24orderby")] + public string[]? Orderby { get; set; } +#nullable restore +#else + [QueryParameter("%24orderby")] + public string[] Orderby { get; set; } +#endif + /// Search items by search phrases +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24search")] + public string? Search { get; set; } +#nullable restore +#else + [QueryParameter("%24search")] + public string Search { get; set; } +#endif + /// Select properties to be returned +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24select")] + public string[]? Select { get; set; } +#nullable restore +#else + [QueryParameter("%24select")] + public string[] Select { get; set; } +#endif + /// Skip the first n items + [QueryParameter("%24skip")] + public int? Skip { get; set; } + /// Show only the first n items + [QueryParameter("%24top")] + public int? Top { get; set; } + } + } +} diff --git a/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/Item/EducationGradingCategoryItemRequestBuilder.cs b/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/Item/EducationGradingCategoryItemRequestBuilder.cs new file mode 100644 index 0000000000..66f9866424 --- /dev/null +++ b/src/generated/Education/Classes/Item/AssignmentSettings/GradingCategories/Item/EducationGradingCategoryItemRequestBuilder.cs @@ -0,0 +1,260 @@ +// +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Education.Classes.Item.AssignmentSettings.GradingCategories.Item { + /// + /// Provides operations to manage the gradingCategories property of the microsoft.graph.educationAssignmentSettings entity. + /// + public class EducationGradingCategoryItemRequestBuilder : BaseCliRequestBuilder { + /// + /// Delete navigation property gradingCategories for education + /// + public Command BuildDeleteCommand() { + var command = new Command("delete"); + command.Description = "Delete navigation property gradingCategories for education"; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var educationGradingCategoryIdOption = new Option("--education-grading-category-id", description: "The unique identifier of educationGradingCategory") { + }; + educationGradingCategoryIdOption.IsRequired = true; + command.AddOption(educationGradingCategoryIdOption); + var ifMatchOption = new Option("--if-match", description: "ETag") { + Arity = ArgumentArity.ZeroOrMore + }; + ifMatchOption.IsRequired = false; + command.AddOption(ifMatchOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var educationGradingCategoryId = invocationContext.ParseResult.GetValueForOption(educationGradingCategoryIdOption); + var ifMatch = invocationContext.ParseResult.GetValueForOption(ifMatchOption); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToDeleteRequestInformation(q => { + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + if (educationGradingCategoryId is not null) requestInfo.PathParameters.Add("educationGradingCategory%2Did", educationGradingCategoryId); + if (ifMatch is not null) requestInfo.Headers.Add("If-Match", ifMatch); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + await reqAdapter.SendNoContentAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken); + Console.WriteLine("Success"); + }); + return command; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public Command BuildGetCommand() { + var command = new Command("get"); + command.Description = "When set, enables users to weight assignments differently when computing a class average grade."; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var educationGradingCategoryIdOption = new Option("--education-grading-category-id", description: "The unique identifier of educationGradingCategory") { + }; + educationGradingCategoryIdOption.IsRequired = true; + command.AddOption(educationGradingCategoryIdOption); + var selectOption = new Option("--select", description: "Select properties to be returned") { + Arity = ArgumentArity.ZeroOrMore + }; + selectOption.IsRequired = false; + command.AddOption(selectOption); + var expandOption = new Option("--expand", description: "Expand related entities") { + Arity = ArgumentArity.ZeroOrMore + }; + expandOption.IsRequired = false; + command.AddOption(expandOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var educationGradingCategoryId = invocationContext.ParseResult.GetValueForOption(educationGradingCategoryIdOption); + var select = invocationContext.ParseResult.GetValueForOption(selectOption); + var expand = invocationContext.ParseResult.GetValueForOption(expandOption); + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + q.QueryParameters.Select = select; + q.QueryParameters.Expand = expand; + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + if (educationGradingCategoryId is not null) requestInfo.PathParameters.Add("educationGradingCategory%2Did", educationGradingCategoryId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Update the navigation property gradingCategories in education + /// + public Command BuildPatchCommand() { + var command = new Command("patch"); + command.Description = "Update the navigation property gradingCategories in education"; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var educationGradingCategoryIdOption = new Option("--education-grading-category-id", description: "The unique identifier of educationGradingCategory") { + }; + educationGradingCategoryIdOption.IsRequired = true; + command.AddOption(educationGradingCategoryIdOption); + var bodyOption = new Option("--body", description: "The request body") { + }; + bodyOption.IsRequired = true; + command.AddOption(bodyOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var educationGradingCategoryId = invocationContext.ParseResult.GetValueForOption(educationGradingCategoryIdOption); + var body = invocationContext.ParseResult.GetValueForOption(bodyOption) ?? string.Empty; + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + using var stream = new MemoryStream(Encoding.UTF8.GetBytes(body)); + var parseNode = ParseNodeFactoryRegistry.DefaultInstance.GetRootParseNode("application/json", stream); + var model = parseNode.GetObjectValue(EducationGradingCategory.CreateFromDiscriminatorValue); + if (model is null) { + Console.Error.WriteLine("No model data to send."); + return; + } + var requestInfo = ToPatchRequestInformation(model, q => { + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + if (educationGradingCategoryId is not null) requestInfo.PathParameters.Add("educationGradingCategory%2Did", educationGradingCategoryId); + requestInfo.SetContentFromParsable(reqAdapter, "application/json", model); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new EducationGradingCategoryItemRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public EducationGradingCategoryItemRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignmentSettings/gradingCategories/{educationGradingCategory%2Did}{?%24select,%24expand}", pathParameters) { + } + /// + /// Instantiates a new EducationGradingCategoryItemRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public EducationGradingCategoryItemRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignmentSettings/gradingCategories/{educationGradingCategory%2Did}{?%24select,%24expand}", rawUrl) { + } + /// + /// Delete navigation property gradingCategories for education + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToDeleteRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToDeleteRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.DELETE, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// Update the navigation property gradingCategories in education + /// + /// The request body + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToPatchRequestInformation(EducationGradingCategory body, Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToPatchRequestInformation(EducationGradingCategory body, Action> requestConfiguration = default) { +#endif + _ = body ?? throw new ArgumentNullException(nameof(body)); + var requestInfo = new RequestInformation(Method.PATCH, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public class EducationGradingCategoryItemRequestBuilderGetQueryParameters { + /// Expand related entities +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24expand")] + public string[]? Expand { get; set; } +#nullable restore +#else + [QueryParameter("%24expand")] + public string[] Expand { get; set; } +#endif + /// Select properties to be returned +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24select")] + public string[]? Select { get; set; } +#nullable restore +#else + [QueryParameter("%24select")] + public string[] Select { get; set; } +#endif + } + } +} diff --git a/src/generated/Education/Classes/Item/Assignments/AssignmentsRequestBuilder.cs b/src/generated/Education/Classes/Item/Assignments/AssignmentsRequestBuilder.cs index 5c07e4c9b2..ac33313c31 100644 --- a/src/generated/Education/Classes/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/Assignments/AssignmentsRequestBuilder.cs @@ -32,6 +32,7 @@ public Tuple, List> BuildCommand() { commands.Add(builder.BuildCategoriesNavCommand()); executables.Add(builder.BuildDeleteCommand()); executables.Add(builder.BuildGetCommand()); + commands.Add(builder.BuildGradingCategoryNavCommand()); executables.Add(builder.BuildPatchCommand()); commands.Add(builder.BuildPublishNavCommand()); commands.Add(builder.BuildResourcesNavCommand()); @@ -122,12 +123,12 @@ public Command BuildDeltaNavCommand() { return command; } /// - /// Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application executing with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application executing with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationclass-list-assignments?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationclass-list-assignments?view=graph-rest-1.0"; var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { }; educationClassIdOption.IsRequired = true; @@ -233,7 +234,7 @@ public AssignmentsRequestBuilder(Dictionary pathParameters) : ba public AssignmentsRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application executing with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -267,7 +268,7 @@ public RequestInformation ToPostRequestInformation(EducationAssignment body, Act return requestInfo; } /// - /// Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application executing with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. + /// 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. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Classes/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs b/src/generated/Education/Classes/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs index 420e291dff..0f8c62fbdb 100644 --- a/src/generated/Education/Classes/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs @@ -1,5 +1,6 @@ // using ApiSdk.Education.Classes.Item.Assignments.Item.Categories; +using ApiSdk.Education.Classes.Item.Assignments.Item.GradingCategory; using ApiSdk.Education.Classes.Item.Assignments.Item.Publish; using ApiSdk.Education.Classes.Item.Assignments.Item.Resources; using ApiSdk.Education.Classes.Item.Assignments.Item.Rubric; @@ -151,6 +152,22 @@ public Command BuildGetCommand() { return command; } /// + /// Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity. + /// + public Command BuildGradingCategoryNavCommand() { + var command = new Command("grading-category"); + command.Description = "Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity."; + var builder = new GradingCategoryRequestBuilder(PathParameters); + var execCommands = new List(); + execCommands.Add(builder.BuildDeleteCommand()); + execCommands.Add(builder.BuildGetCommand()); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + return command; + } + /// /// 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. /// Find more info here /// diff --git a/src/generated/Education/Classes/Item/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs b/src/generated/Education/Classes/Item/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs new file mode 100644 index 0000000000..b733c2da4a --- /dev/null +++ b/src/generated/Education/Classes/Item/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs @@ -0,0 +1,188 @@ +// +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Education.Classes.Item.Assignments.Item.GradingCategory { + /// + /// Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity. + /// + public class GradingCategoryRequestBuilder : BaseCliRequestBuilder { + /// + /// Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation. + /// Find more info here + /// + public Command BuildDeleteCommand() { + var command = new Command("delete"); + command.Description = "Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-delete-gradingcategory?view=graph-rest-1.0"; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { + }; + educationAssignmentIdOption.IsRequired = true; + command.AddOption(educationAssignmentIdOption); + var ifMatchOption = new Option("--if-match", description: "ETag") { + Arity = ArgumentArity.ZeroOrMore + }; + ifMatchOption.IsRequired = false; + command.AddOption(ifMatchOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var educationAssignmentId = invocationContext.ParseResult.GetValueForOption(educationAssignmentIdOption); + var ifMatch = invocationContext.ParseResult.GetValueForOption(ifMatchOption); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToDeleteRequestInformation(q => { + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + if (educationAssignmentId is not null) requestInfo.PathParameters.Add("educationAssignment%2Did", educationAssignmentId); + if (ifMatch is not null) requestInfo.Headers.Add("If-Match", ifMatch); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + await reqAdapter.SendNoContentAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken); + Console.WriteLine("Success"); + }); + return command; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public Command BuildGetCommand() { + var command = new Command("get"); + command.Description = "When set, enables users to weight assignments differently when computing a class average grade."; + var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { + }; + educationClassIdOption.IsRequired = true; + command.AddOption(educationClassIdOption); + var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { + }; + educationAssignmentIdOption.IsRequired = true; + command.AddOption(educationAssignmentIdOption); + var selectOption = new Option("--select", description: "Select properties to be returned") { + Arity = ArgumentArity.ZeroOrMore + }; + selectOption.IsRequired = false; + command.AddOption(selectOption); + var expandOption = new Option("--expand", description: "Expand related entities") { + Arity = ArgumentArity.ZeroOrMore + }; + expandOption.IsRequired = false; + command.AddOption(expandOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var educationClassId = invocationContext.ParseResult.GetValueForOption(educationClassIdOption); + var educationAssignmentId = invocationContext.ParseResult.GetValueForOption(educationAssignmentIdOption); + var select = invocationContext.ParseResult.GetValueForOption(selectOption); + var expand = invocationContext.ParseResult.GetValueForOption(expandOption); + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + q.QueryParameters.Select = select; + q.QueryParameters.Expand = expand; + }); + if (educationClassId is not null) requestInfo.PathParameters.Add("educationClass%2Did", educationClassId); + if (educationAssignmentId is not null) requestInfo.PathParameters.Add("educationAssignment%2Did", educationAssignmentId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new GradingCategoryRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public GradingCategoryRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/gradingCategory{?%24select,%24expand}", pathParameters) { + } + /// + /// Instantiates a new GradingCategoryRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public GradingCategoryRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/gradingCategory{?%24select,%24expand}", rawUrl) { + } + /// + /// Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToDeleteRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToDeleteRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.DELETE, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public class GradingCategoryRequestBuilderGetQueryParameters { + /// Expand related entities +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24expand")] + public string[]? Expand { get; set; } +#nullable restore +#else + [QueryParameter("%24expand")] + public string[] Expand { get; set; } +#endif + /// Select properties to be returned +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24select")] + public string[]? Select { get; set; } +#nullable restore +#else + [QueryParameter("%24select")] + public string[] Select { get; set; } +#endif + } + } +} diff --git a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs index 954c9d85f4..70ce0f698b 100644 --- a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs @@ -110,12 +110,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"; var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { }; educationClassIdOption.IsRequired = true; @@ -233,7 +233,7 @@ public OutcomesRequestBuilder(Dictionary pathParameters) : base( public OutcomesRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -267,7 +267,7 @@ public RequestInformation ToPostRequestInformation(EducationOutcome body, Action return requestInfo; } /// - /// 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// public class OutcomesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs index b6e04f1266..5d1acc7e12 100644 --- a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs @@ -110,12 +110,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"; var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { }; educationClassIdOption.IsRequired = true; @@ -233,7 +233,7 @@ public ResourcesRequestBuilder(Dictionary pathParameters) : base public ResourcesRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -267,7 +267,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmissionResource b return requestInfo; } /// - /// 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// public class ResourcesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs index cc6998645b..c77eedb950 100644 --- a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs @@ -109,12 +109,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-submittedresources?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-submittedresources?view=graph-rest-1.0"; var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { }; educationClassIdOption.IsRequired = true; @@ -232,7 +232,7 @@ public SubmittedResourcesRequestBuilder(Dictionary pathParameter public SubmittedResourcesRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/submittedResources{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -266,7 +266,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmissionResource b return requestInfo; } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// public class SubmittedResourcesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs index af885de2ac..3606433fa4 100644 --- a/src/generated/Education/Classes/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs @@ -112,12 +112,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 are associated with. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 are associated with.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"; var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { }; educationClassIdOption.IsRequired = true; @@ -229,7 +229,7 @@ public SubmissionsRequestBuilder(Dictionary pathParameters) : ba public SubmissionsRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 are associated with. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -263,7 +263,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmission body, Act return requestInfo; } /// - /// 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 are associated with. + /// 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. /// public class SubmissionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Classes/Item/EducationClassItemRequestBuilder.cs b/src/generated/Education/Classes/Item/EducationClassItemRequestBuilder.cs index 215b661c0a..6f9b200b57 100644 --- a/src/generated/Education/Classes/Item/EducationClassItemRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/EducationClassItemRequestBuilder.cs @@ -78,13 +78,19 @@ public Command BuildAssignmentSettingsNavCommand() { command.Description = "Provides operations to manage the assignmentSettings property of the microsoft.graph.educationClass entity."; var builder = new AssignmentSettingsRequestBuilder(PathParameters); var execCommands = new List(); + var nonExecCommands = new List(); execCommands.Add(builder.BuildDeleteCommand()); execCommands.Add(builder.BuildGetCommand()); + nonExecCommands.Add(builder.BuildGradingCategoriesNavCommand()); execCommands.Add(builder.BuildPatchCommand()); foreach (var cmd in execCommands) { command.AddCommand(cmd); } + foreach (var cmd in nonExecCommands) + { + command.AddCommand(cmd); + } return command; } /// diff --git a/src/generated/Education/Classes/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Education/Classes/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 5ba0481557..17709f571b 100644 --- a/src/generated/Education/Classes/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Education/Classes/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var educationClassIdOption = new Option("--education-class-id", description: "The unique identifier of educationClass") { }; educationClassIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/education/classes/{educationClass%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Me/Assignments/AssignmentsRequestBuilder.cs b/src/generated/Education/Me/Assignments/AssignmentsRequestBuilder.cs index 65e516144f..06d697a39b 100644 --- a/src/generated/Education/Me/Assignments/AssignmentsRequestBuilder.cs +++ b/src/generated/Education/Me/Assignments/AssignmentsRequestBuilder.cs @@ -32,6 +32,7 @@ public Tuple, List> BuildCommand() { commands.Add(builder.BuildCategoriesNavCommand()); executables.Add(builder.BuildDeleteCommand()); executables.Add(builder.BuildGetCommand()); + commands.Add(builder.BuildGradingCategoryNavCommand()); executables.Add(builder.BuildPatchCommand()); commands.Add(builder.BuildPublishNavCommand()); commands.Add(builder.BuildResourcesNavCommand()); diff --git a/src/generated/Education/Me/Assignments/Item/EducationAssignmentItemRequestBuilder.cs b/src/generated/Education/Me/Assignments/Item/EducationAssignmentItemRequestBuilder.cs index e52b8d0434..af38312903 100644 --- a/src/generated/Education/Me/Assignments/Item/EducationAssignmentItemRequestBuilder.cs +++ b/src/generated/Education/Me/Assignments/Item/EducationAssignmentItemRequestBuilder.cs @@ -1,5 +1,6 @@ // using ApiSdk.Education.Me.Assignments.Item.Categories; +using ApiSdk.Education.Me.Assignments.Item.GradingCategory; using ApiSdk.Education.Me.Assignments.Item.Publish; using ApiSdk.Education.Me.Assignments.Item.Resources; using ApiSdk.Education.Me.Assignments.Item.Rubric; @@ -137,6 +138,22 @@ public Command BuildGetCommand() { return command; } /// + /// Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity. + /// + public Command BuildGradingCategoryNavCommand() { + var command = new Command("grading-category"); + command.Description = "Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity."; + var builder = new GradingCategoryRequestBuilder(PathParameters); + var execCommands = new List(); + execCommands.Add(builder.BuildDeleteCommand()); + execCommands.Add(builder.BuildGetCommand()); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + return command; + } + /// /// Update the navigation property assignments in education /// public Command BuildPatchCommand() { diff --git a/src/generated/Education/Me/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs b/src/generated/Education/Me/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs new file mode 100644 index 0000000000..bf19a5415d --- /dev/null +++ b/src/generated/Education/Me/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs @@ -0,0 +1,176 @@ +// +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Education.Me.Assignments.Item.GradingCategory { + /// + /// Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity. + /// + public class GradingCategoryRequestBuilder : BaseCliRequestBuilder { + /// + /// Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation. + /// Find more info here + /// + public Command BuildDeleteCommand() { + var command = new Command("delete"); + command.Description = "Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-delete-gradingcategory?view=graph-rest-1.0"; + var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { + }; + educationAssignmentIdOption.IsRequired = true; + command.AddOption(educationAssignmentIdOption); + var ifMatchOption = new Option("--if-match", description: "ETag") { + Arity = ArgumentArity.ZeroOrMore + }; + ifMatchOption.IsRequired = false; + command.AddOption(ifMatchOption); + command.SetHandler(async (invocationContext) => { + var educationAssignmentId = invocationContext.ParseResult.GetValueForOption(educationAssignmentIdOption); + var ifMatch = invocationContext.ParseResult.GetValueForOption(ifMatchOption); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToDeleteRequestInformation(q => { + }); + if (educationAssignmentId is not null) requestInfo.PathParameters.Add("educationAssignment%2Did", educationAssignmentId); + if (ifMatch is not null) requestInfo.Headers.Add("If-Match", ifMatch); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + await reqAdapter.SendNoContentAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken); + Console.WriteLine("Success"); + }); + return command; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public Command BuildGetCommand() { + var command = new Command("get"); + command.Description = "When set, enables users to weight assignments differently when computing a class average grade."; + var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { + }; + educationAssignmentIdOption.IsRequired = true; + command.AddOption(educationAssignmentIdOption); + var selectOption = new Option("--select", description: "Select properties to be returned") { + Arity = ArgumentArity.ZeroOrMore + }; + selectOption.IsRequired = false; + command.AddOption(selectOption); + var expandOption = new Option("--expand", description: "Expand related entities") { + Arity = ArgumentArity.ZeroOrMore + }; + expandOption.IsRequired = false; + command.AddOption(expandOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var educationAssignmentId = invocationContext.ParseResult.GetValueForOption(educationAssignmentIdOption); + var select = invocationContext.ParseResult.GetValueForOption(selectOption); + var expand = invocationContext.ParseResult.GetValueForOption(expandOption); + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + q.QueryParameters.Select = select; + q.QueryParameters.Expand = expand; + }); + if (educationAssignmentId is not null) requestInfo.PathParameters.Add("educationAssignment%2Did", educationAssignmentId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new GradingCategoryRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public GradingCategoryRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/education/me/assignments/{educationAssignment%2Did}/gradingCategory{?%24select,%24expand}", pathParameters) { + } + /// + /// Instantiates a new GradingCategoryRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public GradingCategoryRequestBuilder(string rawUrl) : base("{+baseurl}/education/me/assignments/{educationAssignment%2Did}/gradingCategory{?%24select,%24expand}", rawUrl) { + } + /// + /// Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToDeleteRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToDeleteRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.DELETE, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public class GradingCategoryRequestBuilderGetQueryParameters { + /// Expand related entities +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24expand")] + public string[]? Expand { get; set; } +#nullable restore +#else + [QueryParameter("%24expand")] + public string[] Expand { get; set; } +#endif + /// Select properties to be returned +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24select")] + public string[]? Select { get; set; } +#nullable restore +#else + [QueryParameter("%24select")] + public string[] Select { get; set; } +#endif + } + } +} diff --git a/src/generated/Education/Me/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs b/src/generated/Education/Me/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs index 18e82166db..a2316ab693 100644 --- a/src/generated/Education/Me/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs +++ b/src/generated/Education/Me/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs @@ -104,12 +104,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"; var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { }; educationAssignmentIdOption.IsRequired = true; @@ -221,7 +221,7 @@ public OutcomesRequestBuilder(Dictionary pathParameters) : base( public OutcomesRequestBuilder(string rawUrl) : base("{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -255,7 +255,7 @@ public RequestInformation ToPostRequestInformation(EducationOutcome body, Action return requestInfo; } /// - /// 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// public class OutcomesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Me/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs b/src/generated/Education/Me/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs index ce4fdce969..dbbb1e2b2e 100644 --- a/src/generated/Education/Me/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs +++ b/src/generated/Education/Me/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs @@ -104,12 +104,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"; var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { }; educationAssignmentIdOption.IsRequired = true; @@ -221,7 +221,7 @@ public ResourcesRequestBuilder(Dictionary pathParameters) : base public ResourcesRequestBuilder(string rawUrl) : base("{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -255,7 +255,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmissionResource b return requestInfo; } /// - /// 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// public class ResourcesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Me/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs b/src/generated/Education/Me/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs index 5279a50714..3388f56b6d 100644 --- a/src/generated/Education/Me/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs +++ b/src/generated/Education/Me/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs @@ -103,12 +103,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-submittedresources?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-submittedresources?view=graph-rest-1.0"; var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { }; educationAssignmentIdOption.IsRequired = true; @@ -220,7 +220,7 @@ public SubmittedResourcesRequestBuilder(Dictionary pathParameter public SubmittedResourcesRequestBuilder(string rawUrl) : base("{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/submittedResources{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -254,7 +254,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmissionResource b return requestInfo; } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// public class SubmittedResourcesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Me/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs b/src/generated/Education/Me/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs index 90842120a3..4a7414666b 100644 --- a/src/generated/Education/Me/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs +++ b/src/generated/Education/Me/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs @@ -106,12 +106,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 are associated with. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 are associated with.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"; var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { }; educationAssignmentIdOption.IsRequired = true; @@ -217,7 +217,7 @@ public SubmissionsRequestBuilder(Dictionary pathParameters) : ba public SubmissionsRequestBuilder(string rawUrl) : base("{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 are associated with. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -251,7 +251,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmission body, Act return requestInfo; } /// - /// 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 are associated with. + /// 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. /// public class SubmissionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Me/User/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Education/Me/User/MailboxSettings/MailboxSettingsRequestBuilder.cs index cea0bdb1d0..b2fccdeb0c 100644 --- a/src/generated/Education/Me/User/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Education/Me/User/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Education.Me.User.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var selectOption = new Option("--select", description: "Select properties to be returned") { Arity = ArgumentArity.ZeroOrMore }; @@ -119,7 +119,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/education/me/user/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -153,7 +153,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Education/Me/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Education/Me/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 7971210274..8ccf59424e 100644 --- a/src/generated/Education/Me/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Education/Me/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -140,7 +140,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/education/me/user/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -156,7 +156,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Users/Item/Assignments/AssignmentsRequestBuilder.cs b/src/generated/Education/Users/Item/Assignments/AssignmentsRequestBuilder.cs index 1f4f938c44..0386bfc8bd 100644 --- a/src/generated/Education/Users/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/generated/Education/Users/Item/Assignments/AssignmentsRequestBuilder.cs @@ -32,6 +32,7 @@ public Tuple, List> BuildCommand() { commands.Add(builder.BuildCategoriesNavCommand()); executables.Add(builder.BuildDeleteCommand()); executables.Add(builder.BuildGetCommand()); + commands.Add(builder.BuildGradingCategoryNavCommand()); executables.Add(builder.BuildPatchCommand()); commands.Add(builder.BuildPublishNavCommand()); commands.Add(builder.BuildResourcesNavCommand()); diff --git a/src/generated/Education/Users/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs b/src/generated/Education/Users/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs index 1829a464bb..a99bbd78de 100644 --- a/src/generated/Education/Users/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs +++ b/src/generated/Education/Users/Item/Assignments/Item/EducationAssignmentItemRequestBuilder.cs @@ -1,5 +1,6 @@ // using ApiSdk.Education.Users.Item.Assignments.Item.Categories; +using ApiSdk.Education.Users.Item.Assignments.Item.GradingCategory; using ApiSdk.Education.Users.Item.Assignments.Item.Publish; using ApiSdk.Education.Users.Item.Assignments.Item.Resources; using ApiSdk.Education.Users.Item.Assignments.Item.Rubric; @@ -149,6 +150,22 @@ public Command BuildGetCommand() { return command; } /// + /// Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity. + /// + public Command BuildGradingCategoryNavCommand() { + var command = new Command("grading-category"); + command.Description = "Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity."; + var builder = new GradingCategoryRequestBuilder(PathParameters); + var execCommands = new List(); + execCommands.Add(builder.BuildDeleteCommand()); + execCommands.Add(builder.BuildGetCommand()); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + return command; + } + /// /// Update the navigation property assignments in education /// public Command BuildPatchCommand() { diff --git a/src/generated/Education/Users/Item/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs b/src/generated/Education/Users/Item/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs new file mode 100644 index 0000000000..61369b529a --- /dev/null +++ b/src/generated/Education/Users/Item/Assignments/Item/GradingCategory/GradingCategoryRequestBuilder.cs @@ -0,0 +1,188 @@ +// +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Education.Users.Item.Assignments.Item.GradingCategory { + /// + /// Provides operations to manage the gradingCategory property of the microsoft.graph.educationAssignment entity. + /// + public class GradingCategoryRequestBuilder : BaseCliRequestBuilder { + /// + /// Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation. + /// Find more info here + /// + public Command BuildDeleteCommand() { + var command = new Command("delete"); + command.Description = "Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-delete-gradingcategory?view=graph-rest-1.0"; + var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { + }; + educationUserIdOption.IsRequired = true; + command.AddOption(educationUserIdOption); + var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { + }; + educationAssignmentIdOption.IsRequired = true; + command.AddOption(educationAssignmentIdOption); + var ifMatchOption = new Option("--if-match", description: "ETag") { + Arity = ArgumentArity.ZeroOrMore + }; + ifMatchOption.IsRequired = false; + command.AddOption(ifMatchOption); + command.SetHandler(async (invocationContext) => { + var educationUserId = invocationContext.ParseResult.GetValueForOption(educationUserIdOption); + var educationAssignmentId = invocationContext.ParseResult.GetValueForOption(educationAssignmentIdOption); + var ifMatch = invocationContext.ParseResult.GetValueForOption(ifMatchOption); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToDeleteRequestInformation(q => { + }); + if (educationUserId is not null) requestInfo.PathParameters.Add("educationUser%2Did", educationUserId); + if (educationAssignmentId is not null) requestInfo.PathParameters.Add("educationAssignment%2Did", educationAssignmentId); + if (ifMatch is not null) requestInfo.Headers.Add("If-Match", ifMatch); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + await reqAdapter.SendNoContentAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken); + Console.WriteLine("Success"); + }); + return command; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public Command BuildGetCommand() { + var command = new Command("get"); + command.Description = "When set, enables users to weight assignments differently when computing a class average grade."; + var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { + }; + educationUserIdOption.IsRequired = true; + command.AddOption(educationUserIdOption); + var educationAssignmentIdOption = new Option("--education-assignment-id", description: "The unique identifier of educationAssignment") { + }; + educationAssignmentIdOption.IsRequired = true; + command.AddOption(educationAssignmentIdOption); + var selectOption = new Option("--select", description: "Select properties to be returned") { + Arity = ArgumentArity.ZeroOrMore + }; + selectOption.IsRequired = false; + command.AddOption(selectOption); + var expandOption = new Option("--expand", description: "Expand related entities") { + Arity = ArgumentArity.ZeroOrMore + }; + expandOption.IsRequired = false; + command.AddOption(expandOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var educationUserId = invocationContext.ParseResult.GetValueForOption(educationUserIdOption); + var educationAssignmentId = invocationContext.ParseResult.GetValueForOption(educationAssignmentIdOption); + var select = invocationContext.ParseResult.GetValueForOption(selectOption); + var expand = invocationContext.ParseResult.GetValueForOption(expandOption); + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + q.QueryParameters.Select = select; + q.QueryParameters.Expand = expand; + }); + if (educationUserId is not null) requestInfo.PathParameters.Add("educationUser%2Did", educationUserId); + if (educationAssignmentId is not null) requestInfo.PathParameters.Add("educationAssignment%2Did", educationAssignmentId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new GradingCategoryRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public GradingCategoryRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/gradingCategory{?%24select,%24expand}", pathParameters) { + } + /// + /// Instantiates a new GradingCategoryRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public GradingCategoryRequestBuilder(string rawUrl) : base("{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/gradingCategory{?%24select,%24expand}", rawUrl) { + } + /// + /// Remove a gradingCategory from an educationAssignment. Only teachers can perform this operation. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToDeleteRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToDeleteRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.DELETE, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// When set, enables users to weight assignments differently when computing a class average grade. + /// + public class GradingCategoryRequestBuilderGetQueryParameters { + /// Expand related entities +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24expand")] + public string[]? Expand { get; set; } +#nullable restore +#else + [QueryParameter("%24expand")] + public string[] Expand { get; set; } +#endif + /// Select properties to be returned +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24select")] + public string[]? Select { get; set; } +#nullable restore +#else + [QueryParameter("%24select")] + public string[] Select { get; set; } +#endif + } + } +} diff --git a/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs b/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs index a5bf737f43..abf761c358 100644 --- a/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs +++ b/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Outcomes/OutcomesRequestBuilder.cs @@ -110,12 +110,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"; var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { }; educationUserIdOption.IsRequired = true; @@ -233,7 +233,7 @@ public OutcomesRequestBuilder(Dictionary pathParameters) : base( public OutcomesRequestBuilder(string rawUrl) : base("{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -267,7 +267,7 @@ public RequestInformation ToPostRequestInformation(EducationOutcome body, Action return requestInfo; } /// - /// 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) will have 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) will have both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), will have 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, will have an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource will have 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. + /// 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. /// public class OutcomesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs b/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs index 2aa2b420d3..898c01838f 100644 --- a/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs +++ b/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/Resources/ResourcesRequestBuilder.cs @@ -110,12 +110,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"; var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { }; educationUserIdOption.IsRequired = true; @@ -233,7 +233,7 @@ public ResourcesRequestBuilder(Dictionary pathParameters) : base public ResourcesRequestBuilder(string rawUrl) : base("{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -267,7 +267,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmissionResource b return requestInfo; } /// - /// 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 was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that have officially been submitted to be graded. + /// 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. /// public class ResourcesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs b/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs index 16a56c7d59..b9f5c9f8f9 100644 --- a/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs +++ b/src/generated/Education/Users/Item/Assignments/Item/Submissions/Item/SubmittedResources/SubmittedResourcesRequestBuilder.cs @@ -109,12 +109,12 @@ public Command BuildCreateCommand() { return command; } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-submittedresources?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationsubmission-list-submittedresources?view=graph-rest-1.0"; var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { }; educationUserIdOption.IsRequired = true; @@ -232,7 +232,7 @@ public SubmittedResourcesRequestBuilder(Dictionary pathParameter public SubmittedResourcesRequestBuilder(string rawUrl) : base("{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/submittedResources{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -266,7 +266,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmissionResource b return requestInfo; } /// - /// List the educationSubmissionResource objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This 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. + /// 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. /// public class SubmittedResourcesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Users/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs b/src/generated/Education/Users/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs index cbb3a70b31..1a9f3253c7 100644 --- a/src/generated/Education/Users/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs +++ b/src/generated/Education/Users/Item/Assignments/Item/Submissions/SubmissionsRequestBuilder.cs @@ -112,12 +112,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 are associated with. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 are associated with.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"; var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { }; educationUserIdOption.IsRequired = true; @@ -229,7 +229,7 @@ public SubmissionsRequestBuilder(Dictionary pathParameters) : ba public SubmissionsRequestBuilder(string rawUrl) : base("{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 are associated with. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -263,7 +263,7 @@ public RequestInformation ToPostRequestInformation(EducationSubmission body, Act return requestInfo; } /// - /// 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 are associated with. + /// 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. /// public class SubmissionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Education/Users/Item/User/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Education/Users/Item/User/MailboxSettings/MailboxSettingsRequestBuilder.cs index c5ccd514d4..b5a9adedfd 100644 --- a/src/generated/Education/Users/Item/User/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Education/Users/Item/User/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Education.Users.Item.User.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { }; educationUserIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/education/users/{educationUser%2Did}/user/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Education/Users/Item/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Education/Users/Item/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 5bbf486837..126668d23c 100644 --- a/src/generated/Education/Users/Item/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Education/Users/Item/User/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var educationUserIdOption = new Option("--education-user-id", description: "The unique identifier of educationUser") { }; educationUserIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/education/users/{educationUser%2Did}/user/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/EmployeeExperience/LearningProviders/Item/LearningCourseActivities/Item/LearningCourseActivityItemRequestBuilder.cs b/src/generated/EmployeeExperience/LearningProviders/Item/LearningCourseActivities/Item/LearningCourseActivityItemRequestBuilder.cs index 612b84ac1b..ee3a1b3d77 100644 --- a/src/generated/EmployeeExperience/LearningProviders/Item/LearningCourseActivities/Item/LearningCourseActivityItemRequestBuilder.cs +++ b/src/generated/EmployeeExperience/LearningProviders/Item/LearningCourseActivities/Item/LearningCourseActivityItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.EmployeeExperience.LearningProviders.Item.LearningCourseActivit /// public class LearningCourseActivityItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a learningCourseActivity object by using the course activity ID of either an assignment or a self-initiated activity. + /// Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a learningCourseActivity object by using the course activity ID of either an assignment or a self-initiated activity.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/learningcourseactivity-delete?view=graph-rest-1.0"; + command.Description = "Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/learningcourseactivity-delete?view=graph-rest-1.0"; var learningProviderIdOption = new Option("--learning-provider-id", description: "The unique identifier of learningProvider") { }; learningProviderIdOption.IsRequired = true; @@ -184,7 +184,7 @@ public LearningCourseActivityItemRequestBuilder(Dictionary pathP public LearningCourseActivityItemRequestBuilder(string rawUrl) : base("{+baseurl}/employeeExperience/learningProviders/{learningProvider%2Did}/learningCourseActivities/{learningCourseActivity%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a learningCourseActivity object by using the course activity ID of either an assignment or a self-initiated activity. + /// Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs b/src/generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs index b695705aa3..5d3b72a00d 100644 --- a/src/generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs +++ b/src/generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs @@ -49,12 +49,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Use reply thread or reply post to further post to that conversation. - /// Find more info here + /// 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. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Use reply thread or reply post to further post to that conversation.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/group-post-conversations?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -219,7 +219,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use reply thread or reply post to further post to that conversation. + /// 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. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs b/src/generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs index 31f0b260e2..8dceedf338 100644 --- a/src/generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs +++ b/src/generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs @@ -22,11 +22,11 @@ namespace ApiSdk.Groups.Item.Conversations.Item { public class ConversationItemRequestBuilder : BaseCliRequestBuilder { /// /// Delete conversation. - /// Find more info here + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete conversation.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/group-delete-conversation?view=graph-rest-1.0"; + command.Description = "Delete conversation.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversation-delete?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -61,12 +61,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Retrieve the properties and relationships of conversation object. - /// Find more info here + /// The group's conversations. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Retrieve the properties and relationships of conversation object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversation-get?view=graph-rest-1.0"; + command.Description = "The group's conversations.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/group-get-conversation?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -164,7 +164,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of conversation object. + /// The group's conversations. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -180,7 +180,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Retrieve the properties and relationships of conversation object. + /// The group's conversations. /// public class ConversationItemRequestBuilderGetQueryParameters { /// Select properties to be returned diff --git a/src/generated/Groups/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs b/src/generated/Groups/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs index c8847df42f..6062014b7d 100644 --- a/src/generated/Groups/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs +++ b/src/generated/Groups/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs @@ -97,12 +97,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 kind of resource-specific access that each app has. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 kind of resource-specific access that each app has.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/group-list-permissiongrants?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/group-list-permissiongrants?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -208,7 +208,7 @@ public PermissionGrantsRequestBuilder(Dictionary pathParameters) public PermissionGrantsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/permissionGrants{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 kind of resource-specific access that each app has. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -242,7 +242,7 @@ public RequestInformation ToPostRequestInformation(ResourceSpecificPermissionGra return requestInfo; } /// - /// 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 kind of resource-specific access that each app has. + /// 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. /// public class PermissionGrantsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs b/src/generated/Groups/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs index 291587d110..96f2804922 100644 --- a/src/generated/Groups/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs +++ b/src/generated/Groups/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs @@ -19,11 +19,12 @@ namespace ApiSdk.Groups.Item.RetryServiceProvisioning { /// public class RetryServiceProvisioningRequestBuilder : BaseCliRequestBuilder { /// - /// Invoke action retryServiceProvisioning + /// Retry the group service provisioning. + /// Find more info here /// public Command BuildPostCommand() { var command = new Command("post"); - command.Description = "Invoke action retryServiceProvisioning"; + command.Description = "Retry the group service provisioning.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -57,7 +58,7 @@ public RetryServiceProvisioningRequestBuilder(Dictionary pathPar public RetryServiceProvisioningRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/retryServiceProvisioning", rawUrl) { } /// - /// Invoke action retryServiceProvisioning + /// Retry the group service provisioning. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/generated/Groups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index d00a24c3ff..09b091ef4c 100644 --- a/src/generated/Groups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 962a32f0d6..c5c34508d1 100644 --- a/src/generated/Groups/Item/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Groups.Item.Sites.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Groups/Item/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 994bb89a9f..85093e2996 100644 --- a/src/generated/Groups/Item/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index e9e8ebcc9d..949d76e08b 100644 --- a/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Groups.Item.Sites.Item.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 05d91b3f6b..4a186f4f83 100644 --- a/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 2f5f835033..2e3269bba4 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Groups.Item.Sites.Item.Lists.Item.CreatedByUser.MailboxSettings /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 2ca7fff140..00e1d7473f 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 9827bd2cc9..83d60f5195 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Groups.Item.Sites.Item.Lists.Item.Items.Item.CreatedByUser.Mail /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -167,7 +167,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -201,7 +201,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index c9e6c52d9d..7ced482e92 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -164,7 +164,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -180,7 +180,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index f45b65d9ac..968360a86a 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Groups.Item.Sites.Item.Lists.Item.Items.Item.LastModifiedByUser /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -167,7 +167,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -201,7 +201,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 9a3049ae22..3ba6aeb90a 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -164,7 +164,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -180,7 +180,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 49bcb0c55e..cdb8e277bd 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Groups.Item.Sites.Item.Lists.Item.LastModifiedByUser.MailboxSet /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 6b861a3c9c..c017ea1d0a 100644 --- a/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index b643b2cf16..e8b728a651 100644 --- a/src/generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Groups.Item.Team.Channels.Item.Members.Item { /// public class ConversationMemberItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Delete a conversationMember from a channel. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0"; + command.Description = "Delete a conversationMember from a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -129,12 +129,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the role of a conversationMember in a team or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0"; + command.Description = "Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -203,7 +203,7 @@ public ConversationMemberItemRequestBuilder(Dictionary pathParam public ConversationMemberItemRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Delete a conversationMember from a channel. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -235,7 +235,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs b/src/generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs index ac92e9e21d..18b26e87f4 100644 --- a/src/generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs @@ -64,12 +64,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0"; + command.Description = "Add a conversationMember to a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -253,7 +253,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Groups/Item/Team/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Groups/Item/Team/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 01ffc3efc7..60ad5b2c30 100644 --- a/src/generated/Groups/Item/Team/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Groups/Item/Team/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/team/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs index 5f91a896ee..a911eecf7c 100644 --- a/src/generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Groups.Item.Team.PrimaryChannel.Members.Item { /// public class ConversationMemberItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Delete a conversationMember from a channel. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0"; + command.Description = "Delete a conversationMember from a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -117,12 +117,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the role of a conversationMember in a team or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0"; + command.Description = "Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -185,7 +185,7 @@ public ConversationMemberItemRequestBuilder(Dictionary pathParam public ConversationMemberItemRequestBuilder(string rawUrl) : base("{+baseurl}/groups/{group%2Did}/team/primaryChannel/members/{conversationMember%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Delete a conversationMember from a channel. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -217,7 +217,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs index 32af0551f9..61b05f7af2 100644 --- a/src/generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs +++ b/src/generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs @@ -64,12 +64,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0"; + command.Description = "Add a conversationMember to a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0"; var groupIdOption = new Option("--group-id", description: "The unique identifier of group") { }; groupIdOption.IsRequired = true; @@ -241,7 +241,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs index aedabd8151..2e745d47fe 100644 --- a/src/generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs +++ b/src/generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs @@ -34,6 +34,14 @@ public class SendActivityNotificationPostRequestBody : IAdditionalDataHolder, IP #nullable restore #else public TeamworkNotificationRecipient Recipient { get; set; } +#endif + /// The teamsAppId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TeamsAppId { get; set; } +#nullable restore +#else + public string TeamsAppId { get; set; } #endif /// The templateParameters property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -74,6 +82,7 @@ public virtual IDictionary> GetFieldDeserializers() { {"chainId", n => { ChainId = n.GetLongValue(); } }, {"previewText", n => { PreviewText = n.GetObjectValue(ItemBody.CreateFromDiscriminatorValue); } }, {"recipient", n => { Recipient = n.GetObjectValue(TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } }, + {"teamsAppId", n => { TeamsAppId = n.GetStringValue(); } }, {"templateParameters", n => { TemplateParameters = n.GetCollectionOfObjectValues(ApiSdk.Models.KeyValuePair.CreateFromDiscriminatorValue)?.ToList(); } }, {"topic", n => { Topic = n.GetObjectValue(TeamworkActivityTopic.CreateFromDiscriminatorValue); } }, }; @@ -88,6 +97,7 @@ public virtual void Serialize(ISerializationWriter writer) { writer.WriteLongValue("chainId", ChainId); writer.WriteObjectValue("previewText", PreviewText); writer.WriteObjectValue("recipient", Recipient); + writer.WriteStringValue("teamsAppId", TeamsAppId); writer.WriteCollectionOfObjectValues("templateParameters", TemplateParameters); writer.WriteObjectValue("topic", Topic); writer.WriteAdditionalData(AdditionalData); diff --git a/src/generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs b/src/generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs index fc863e211a..25dbfef6ed 100644 --- a/src/generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs +++ b/src/generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Identity.ConditionalAccess.NamedLocations.Item { /// public class NamedLocationItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a namedLocation object. - /// Find more info here + /// Delete a countryNamedLocation object. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a namedLocation object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/namedlocation-delete?view=graph-rest-1.0"; + command.Description = "Delete a countryNamedLocation object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/countrynamedlocation-delete?view=graph-rest-1.0"; var namedLocationIdOption = new Option("--named-location-id", description: "The unique identifier of namedLocation") { }; namedLocationIdOption.IsRequired = true; @@ -54,12 +54,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Retrieve the properties and relationships of a namedLocation object. - /// Find more info here + /// Retrieve the properties and relationships of an ipNamedLocation object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Retrieve the properties and relationships of a namedLocation object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/namedlocation-get?view=graph-rest-1.0"; + command.Description = "Retrieve the properties and relationships of an ipNamedLocation object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/ipnamedlocation-get?view=graph-rest-1.0"; var namedLocationIdOption = new Option("--named-location-id", description: "The unique identifier of namedLocation") { }; namedLocationIdOption.IsRequired = true; @@ -167,7 +167,7 @@ public NamedLocationItemRequestBuilder(Dictionary pathParameters public NamedLocationItemRequestBuilder(string rawUrl) : base("{+baseurl}/identity/conditionalAccess/namedLocations/{namedLocation%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a namedLocation object. + /// Delete a countryNamedLocation object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -183,7 +183,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of a namedLocation object. + /// Retrieve the properties and relationships of an ipNamedLocation object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -217,7 +217,7 @@ public RequestInformation ToPatchRequestInformation(NamedLocation body, Action - /// Retrieve the properties and relationships of a namedLocation object. + /// Retrieve the properties and relationships of an ipNamedLocation object. /// public class NamedLocationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs b/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs index c7ce823751..9481d71a0a 100644 --- a/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs +++ b/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs @@ -140,12 +140,12 @@ public Command BuildGetApplicablePolicyRequirementsNavCommand() { return command; } /// - /// Retrieve the properties and relationships of an accessPackage object. - /// Find more info here + /// 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. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Retrieve the properties and relationships of an accessPackage object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackage-get?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackage-list-resourcerolescopes?view=graph-rest-1.0"; var accessPackageIdOption = new Option("--access-package-id", description: "The unique identifier of accessPackage") { }; accessPackageIdOption.IsRequired = true; @@ -344,7 +344,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of an accessPackage object. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -378,7 +378,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.AccessPackage return requestInfo; } /// - /// Retrieve the properties and relationships of an accessPackage object. + /// 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. /// public class AccessPackageItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/IncompatibleGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/IncompatibleGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 13e1a83d8b..7bc0d89b33 100644 --- a/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/IncompatibleGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/IncompatibleGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var accessPackageIdOption = new Option("--access-package-id", description: "The unique identifier of accessPackage") { }; accessPackageIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleGroups/{group%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs b/src/generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs index 8f196a568b..66c65d2e01 100644 --- a/src/generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs +++ b/src/generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.IdentityGovernance.EntitlementManagement.Catalogs.Item.CustomWo /// public class CustomCalloutExtensionItemRequestBuilder : BaseCliRequestBuilder { /// - /// 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: - /// Find more info here + /// Delete an accessPackageAssignmentWorkflowExtension 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: + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "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:\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentrequestworkflowextension-delete?view=graph-rest-1.0"; + command.Description = "Delete an accessPackageAssignmentWorkflowExtension 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:\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-delete?view=graph-rest-1.0"; var accessPackageCatalogIdOption = new Option("--access-package-catalog-id", description: "The unique identifier of accessPackageCatalog") { }; accessPackageCatalogIdOption.IsRequired = true; @@ -117,12 +117,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the properties of an accessPackageAssignmentRequestWorkflowExtension object. - /// Find more info here + /// Update the properties of an accessPackageAssignmentWorkflowExtension object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentrequestworkflowextension-update?view=graph-rest-1.0"; + command.Description = "Update the properties of an accessPackageAssignmentWorkflowExtension object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-update?view=graph-rest-1.0"; var accessPackageCatalogIdOption = new Option("--access-package-catalog-id", description: "The unique identifier of accessPackageCatalog") { }; accessPackageCatalogIdOption.IsRequired = true; @@ -185,7 +185,7 @@ public CustomCalloutExtensionItemRequestBuilder(Dictionary pathP public CustomCalloutExtensionItemRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog%2Did}/customWorkflowExtensions/{customCalloutExtension%2Did}{?%24select,%24expand}", 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 an accessPackageAssignmentWorkflowExtension 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: /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -217,7 +217,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of an accessPackageAssignmentRequestWorkflowExtension object. + /// Update the properties of an accessPackageAssignmentWorkflowExtension object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/IdentityGovernance/EntitlementManagement/ResourceRequests/Item/Catalog/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs b/src/generated/IdentityGovernance/EntitlementManagement/ResourceRequests/Item/Catalog/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs index 337ac1b6bf..62d0d34122 100644 --- a/src/generated/IdentityGovernance/EntitlementManagement/ResourceRequests/Item/Catalog/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs +++ b/src/generated/IdentityGovernance/EntitlementManagement/ResourceRequests/Item/Catalog/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.IdentityGovernance.EntitlementManagement.ResourceRequests.Item. /// public class CustomCalloutExtensionItemRequestBuilder : BaseCliRequestBuilder { /// - /// 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: - /// Find more info here + /// Delete an accessPackageAssignmentWorkflowExtension 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: + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "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:\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentrequestworkflowextension-delete?view=graph-rest-1.0"; + command.Description = "Delete an accessPackageAssignmentWorkflowExtension 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:\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-delete?view=graph-rest-1.0"; var accessPackageResourceRequestIdOption = new Option("--access-package-resource-request-id", description: "The unique identifier of accessPackageResourceRequest") { }; accessPackageResourceRequestIdOption.IsRequired = true; @@ -117,12 +117,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the properties of an accessPackageAssignmentRequestWorkflowExtension object. - /// Find more info here + /// Update the properties of an accessPackageAssignmentWorkflowExtension object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentrequestworkflowextension-update?view=graph-rest-1.0"; + command.Description = "Update the properties of an accessPackageAssignmentWorkflowExtension object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-update?view=graph-rest-1.0"; var accessPackageResourceRequestIdOption = new Option("--access-package-resource-request-id", description: "The unique identifier of accessPackageResourceRequest") { }; accessPackageResourceRequestIdOption.IsRequired = true; @@ -185,7 +185,7 @@ public CustomCalloutExtensionItemRequestBuilder(Dictionary pathP public CustomCalloutExtensionItemRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest%2Did}/catalog/customWorkflowExtensions/{customCalloutExtension%2Did}{?%24select,%24expand}", 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 an accessPackageAssignmentWorkflowExtension 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: /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -217,7 +217,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of an accessPackageAssignmentRequestWorkflowExtension object. + /// Update the properties of an accessPackageAssignmentWorkflowExtension object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 8c71233805..3286daa07b 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.CustomTaskExtensions.Item /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var customTaskExtensionIdOption = new Option("--custom-task-extension-id", description: "The unique identifier of customTaskExtension") { }; customTaskExtensionIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension%2Did}/createdBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 2a48a5fd19..63c0373cc1 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var customTaskExtensionIdOption = new Option("--custom-task-extension-id", description: "The unique identifier of customTaskExtension") { }; customTaskExtensionIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension%2Did}/createdBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 3c26a5c9fb..c01fff7d3e 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.CustomTaskExtensions.Item /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var customTaskExtensionIdOption = new Option("--custom-task-extension-id", description: "The unique identifier of customTaskExtension") { }; customTaskExtensionIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension%2Did}/lastModifiedBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 48f10e7a68..aa01147f36 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/CustomTaskExtensions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var customTaskExtensionIdOption = new Option("--custom-task-extension-id", description: "The unique identifier of customTaskExtension") { }; customTaskExtensionIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension%2Did}/lastModifiedBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 56e410fd8f..3014926049 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/createdBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 248d05b0ca..cbcbd5c630 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/createdBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 24ccd59697..9d232bf98c 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/lastModifiedBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 2ff1e598f9..4389adee61 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/lastModifiedBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 3f6fe9fd34..129c95d3d2 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 1130c92c04..bd8ec21177 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index cda3169ceb..1a0ac8dda0 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 2594b5eba0..fec2398af7 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 0de11d3a4f..da8044343a 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -167,7 +167,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -201,7 +201,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 63795d8e98..b568df7b07 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -164,7 +164,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -180,7 +180,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 33777dfbae..e94d4afbc2 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/taskReports/{taskReport%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 1f49d8fd37..13945f49df 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/taskReports/{taskReport%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 8c8d7d0521..4a90150a30 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 7e2dadae34..a3288e7910 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 322541fa0d..13ea1e3748 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index ab2f6ee82e..e5784f3c69 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index ddbe990f0b..0342c7b221 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 31f4faeb16..237581c2f6 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index d42833b844..d9d2b089b0 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/createdBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index ac24c96cc7..bd299d0848 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/createdBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index fa0b2babbc..947506a959 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/lastModifiedBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 6eef8a69a6..b877109476 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/lastModifiedBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 6303146e33..0a8368bd4c 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.DeletedItems.Workflows.It /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -167,7 +167,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -201,7 +201,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 45b55d57f2..9370ddb009 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/DeletedItems/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -164,7 +164,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -180,7 +180,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index c4ae139117..f4ff7f39b5 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.WorkflowTemplates.Item.Ta /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowTemplateIdOption = new Option("--workflow-template-id", description: "The unique identifier of workflowTemplate") { }; workflowTemplateIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate%2Did}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 862b71d931..9f3adb6a8d 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/WorkflowTemplates/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowTemplateIdOption = new Option("--workflow-template-id", description: "The unique identifier of workflowTemplate") { }; workflowTemplateIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate%2Did}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 76fe968c9b..7879251471 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.CreatedBy. /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/createdBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 80f38eb65b..b130d8d706 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/createdBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 5bc63cbee2..ee886e4c03 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.LastModifi /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/lastModifiedBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index b2377e4d6c..14798cca3e 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/lastModifiedBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 5cc8f47979..d25703f9d3 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.Runs.Item. /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index ec9fdc165a..2c2d46b510 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 607a68b772..77a0542715 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.Runs.Item. /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 7db8dd8d9e..557ad59076 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index cb63745dc5..83d8bcd57c 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.Runs.Item. /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -167,7 +167,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -201,7 +201,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 2e72395da2..e45bb77877 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Runs/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -164,7 +164,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -180,7 +180,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 15278ad5c4..c3e5da8202 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.TaskReport /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/taskReports/{taskReport%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index c40dea02bf..ea9240b504 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/TaskReports/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/taskReports/{taskReport%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 1671eec5a4..86cfb83a40 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.Tasks.Item /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 6de871ac8f..b61c5522da 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 5134625373..f71124be1b 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.UserProces /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 3dd23c041e..59c8b15e61 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index b2bc45d21d..23b80e7922 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.UserProces /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 785e86bd96..1b1510c0cc 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/UserProcessingResults/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 76e189c361..de255d476a 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.Versions.I /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/createdBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 61c112ca1e..6e9884ca00 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/CreatedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/createdBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs index 758fc1cd5d..01cf488715 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.Versions.I /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/lastModifiedBy/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index eb561ef388..96f888e76c 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/LastModifiedBy/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/lastModifiedBy/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs index 2e597a7db6..0c343a2ed2 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.IdentityGovernance.LifecycleWorkflows.Workflows.Item.Versions.I /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -167,7 +167,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -201,7 +201,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index b4851230ef..706acb4ee5 100644 --- a/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/LifecycleWorkflows/Workflows/Item/Versions/Item/Tasks/Item/TaskProcessingResults/Item/Subject/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var workflowIdOption = new Option("--workflow-id", description: "The unique identifier of workflow") { }; workflowIdOption.IsRequired = true; @@ -164,7 +164,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}/tasks/{task%2Did}/taskProcessingResults/{taskProcessingResult%2Did}/subject/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -180,7 +180,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 5d729eac04..fd7da96c84 100644 --- a/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var privilegedAccessGroupAssignmentScheduleInstanceIdOption = new Option("--privileged-access-group-assignment-schedule-instance-id", description: "The unique identifier of privilegedAccessGroupAssignmentScheduleInstance") { }; privilegedAccessGroupAssignmentScheduleInstanceIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 210472f8a2..5eac4f5be7 100644 --- a/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var privilegedAccessGroupAssignmentScheduleRequestIdOption = new Option("--privileged-access-group-assignment-schedule-request-id", description: "The unique identifier of privilegedAccessGroupAssignmentScheduleRequest") { }; privilegedAccessGroupAssignmentScheduleRequestIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentSchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentSchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 756cb1d751..74ccf08e3d 100644 --- a/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentSchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/PrivilegedAccess/Group/AssignmentSchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var privilegedAccessGroupAssignmentScheduleIdOption = new Option("--privileged-access-group-assignment-schedule-id", description: "The unique identifier of privilegedAccessGroupAssignmentSchedule") { }; privilegedAccessGroupAssignmentScheduleIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 6a2b8fa9c3..75a260051e 100644 --- a/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleInstances/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var privilegedAccessGroupEligibilityScheduleInstanceIdOption = new Option("--privileged-access-group-eligibility-schedule-instance-id", description: "The unique identifier of privilegedAccessGroupEligibilityScheduleInstance") { }; privilegedAccessGroupEligibilityScheduleInstanceIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 8bdb9d8f73..1776484de5 100644 --- a/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilityScheduleRequests/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var privilegedAccessGroupEligibilityScheduleRequestIdOption = new Option("--privileged-access-group-eligibility-schedule-request-id", description: "The unique identifier of privilegedAccessGroupEligibilityScheduleRequest") { }; privilegedAccessGroupEligibilityScheduleRequestIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilitySchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilitySchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index c45a8e9545..fdf4ac0509 100644 --- a/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilitySchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/IdentityGovernance/PrivilegedAccess/Group/EligibilitySchedules/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var privilegedAccessGroupEligibilityScheduleIdOption = new Option("--privileged-access-group-eligibility-schedule-id", description: "The unique identifier of privilegedAccessGroupEligibilitySchedule") { }; privilegedAccessGroupEligibilityScheduleIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs b/src/generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs index f119859f02..b2373fe0c1 100644 --- a/src/generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs +++ b/src/generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs @@ -130,12 +130,12 @@ public Command BuildFilesNavCommand() { return command; } /// - /// Retrieve the properties and relationships of an agreement object. - /// Find more info here + /// Retrieve all files related to an agreement. This includes the default file and all localized files. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Retrieve the properties and relationships of an agreement object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/agreement-get?view=graph-rest-1.0"; + command.Description = "Retrieve all files related to an agreement. This includes the default file and all localized files.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/agreement-list-files?view=graph-rest-1.0"; var agreementIdOption = new Option("--agreement-id", description: "The unique identifier of agreement") { }; agreementIdOption.IsRequired = true; @@ -259,7 +259,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of an agreement object. + /// Retrieve all files related to an agreement. This includes the default file and all localized files. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -293,7 +293,7 @@ public RequestInformation ToPatchRequestInformation(Agreement body, Action - /// Retrieve the properties and relationships of an agreement object. + /// Retrieve all files related to an agreement. This includes the default file and all localized files. /// public class AgreementItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Invitations/Item/InvitedUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Invitations/Item/InvitedUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index d95a4e0a23..b092b8c74e 100644 --- a/src/generated/Invitations/Item/InvitedUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Invitations/Item/InvitedUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Invitations.Item.InvitedUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var invitationIdOption = new Option("--invitation-id", description: "The unique identifier of invitation") { }; invitationIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/invitations/{invitation%2Did}/invitedUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Invitations/Item/InvitedUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Invitations/Item/InvitedUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 615f92f121..7cb1a60c64 100644 --- a/src/generated/Invitations/Item/InvitedUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Invitations/Item/InvitedUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var invitationIdOption = new Option("--invitation-id", description: "The unique identifier of invitation") { }; invitationIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/invitations/{invitation%2Did}/invitedUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Models/AccessPackageResource.cs b/src/generated/Models/AccessPackageResource.cs index f706f74d46..467cb988b2 100644 --- a/src/generated/Models/AccessPackageResource.cs +++ b/src/generated/Models/AccessPackageResource.cs @@ -6,6 +6,14 @@ using System; namespace ApiSdk.Models { public class AccessPackageResource : Entity, IParsable { + /// The attributes property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Attributes { get; set; } +#nullable restore +#else + public List Attributes { get; set; } +#endif /// 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. Read-only. public DateTimeOffset? CreatedDateTime { get; set; } /// A description for the resource. @@ -79,6 +87,7 @@ public class AccessPackageResource : Entity, IParsable { /// public override IDictionary> GetFieldDeserializers() { return new Dictionary>(base.GetFieldDeserializers()) { + {"attributes", n => { Attributes = n.GetCollectionOfObjectValues(AccessPackageResourceAttribute.CreateFromDiscriminatorValue)?.ToList(); } }, {"createdDateTime", n => { CreatedDateTime = n.GetDateTimeOffsetValue(); } }, {"description", n => { Description = n.GetStringValue(); } }, {"displayName", n => { DisplayName = n.GetStringValue(); } }, @@ -97,6 +106,7 @@ public override IDictionary> GetFieldDeserializers() public override void Serialize(ISerializationWriter writer) { _ = writer ?? throw new ArgumentNullException(nameof(writer)); base.Serialize(writer); + writer.WriteCollectionOfObjectValues("attributes", Attributes); writer.WriteDateTimeOffsetValue("createdDateTime", CreatedDateTime); writer.WriteStringValue("description", Description); writer.WriteStringValue("displayName", DisplayName); diff --git a/src/generated/Models/AccessPackageResourceAttribute.cs b/src/generated/Models/AccessPackageResourceAttribute.cs new file mode 100644 index 0000000000..b063f5f3c6 --- /dev/null +++ b/src/generated/Models/AccessPackageResourceAttribute.cs @@ -0,0 +1,81 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class AccessPackageResourceAttribute : IAdditionalDataHolder, IParsable { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData { get; set; } + /// The destination property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public AccessPackageResourceAttributeDestination? Destination { get; set; } +#nullable restore +#else + public AccessPackageResourceAttributeDestination Destination { get; set; } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { get; set; } +#nullable restore +#else + public string Name { get; set; } +#endif + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType { get; set; } +#nullable restore +#else + public string OdataType { get; set; } +#endif + /// The source property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public AccessPackageResourceAttributeSource? Source { get; set; } +#nullable restore +#else + public AccessPackageResourceAttributeSource Source { get; set; } +#endif + /// + /// Instantiates a new accessPackageResourceAttribute and sets the default values. + /// + public AccessPackageResourceAttribute() { + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static AccessPackageResourceAttribute CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new AccessPackageResourceAttribute(); + } + /// + /// The deserialization information for the current model + /// + public virtual IDictionary> GetFieldDeserializers() { + return new Dictionary> { + {"destination", n => { Destination = n.GetObjectValue(AccessPackageResourceAttributeDestination.CreateFromDiscriminatorValue); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"@odata.type", n => { OdataType = n.GetStringValue(); } }, + {"source", n => { Source = n.GetObjectValue(AccessPackageResourceAttributeSource.CreateFromDiscriminatorValue); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public virtual void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteObjectValue("destination", Destination); + writer.WriteStringValue("name", Name); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteObjectValue("source", Source); + writer.WriteAdditionalData(AdditionalData); + } + } +} diff --git a/src/generated/Models/AccessPackageResourceAttributeDestination.cs b/src/generated/Models/AccessPackageResourceAttributeDestination.cs new file mode 100644 index 0000000000..5b9dea182d --- /dev/null +++ b/src/generated/Models/AccessPackageResourceAttributeDestination.cs @@ -0,0 +1,55 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class AccessPackageResourceAttributeDestination : IAdditionalDataHolder, IParsable { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData { get; set; } + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType { get; set; } +#nullable restore +#else + public string OdataType { get; set; } +#endif + /// + /// Instantiates a new accessPackageResourceAttributeDestination and sets the default values. + /// + public AccessPackageResourceAttributeDestination() { + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static AccessPackageResourceAttributeDestination CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + var mappingValue = parseNode.GetChildNode("@odata.type")?.GetStringValue(); + return mappingValue switch { + "#microsoft.graph.accessPackageUserDirectoryAttributeStore" => new AccessPackageUserDirectoryAttributeStore(), + _ => new AccessPackageResourceAttributeDestination(), + }; + } + /// + /// The deserialization information for the current model + /// + public virtual IDictionary> GetFieldDeserializers() { + return new Dictionary> { + {"@odata.type", n => { OdataType = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public virtual void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteAdditionalData(AdditionalData); + } + } +} diff --git a/src/generated/Models/AccessPackageResourceAttributeQuestion.cs b/src/generated/Models/AccessPackageResourceAttributeQuestion.cs new file mode 100644 index 0000000000..08e3eacee8 --- /dev/null +++ b/src/generated/Models/AccessPackageResourceAttributeQuestion.cs @@ -0,0 +1,49 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class AccessPackageResourceAttributeQuestion : AccessPackageResourceAttributeSource, IParsable { + /// The question property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public AccessPackageQuestion? Question { get; set; } +#nullable restore +#else + public AccessPackageQuestion Question { get; set; } +#endif + /// + /// Instantiates a new accessPackageResourceAttributeQuestion and sets the default values. + /// + public AccessPackageResourceAttributeQuestion() : base() { + OdataType = "#microsoft.graph.accessPackageResourceAttributeQuestion"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new AccessPackageResourceAttributeQuestion CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new AccessPackageResourceAttributeQuestion(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"question", n => { Question = n.GetObjectValue(AccessPackageQuestion.CreateFromDiscriminatorValue); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("question", Question); + } + } +} diff --git a/src/generated/Models/AccessPackageResourceAttributeSource.cs b/src/generated/Models/AccessPackageResourceAttributeSource.cs new file mode 100644 index 0000000000..75beb0cf91 --- /dev/null +++ b/src/generated/Models/AccessPackageResourceAttributeSource.cs @@ -0,0 +1,55 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class AccessPackageResourceAttributeSource : IAdditionalDataHolder, IParsable { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData { get; set; } + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType { get; set; } +#nullable restore +#else + public string OdataType { get; set; } +#endif + /// + /// Instantiates a new accessPackageResourceAttributeSource and sets the default values. + /// + public AccessPackageResourceAttributeSource() { + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static AccessPackageResourceAttributeSource CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + var mappingValue = parseNode.GetChildNode("@odata.type")?.GetStringValue(); + return mappingValue switch { + "#microsoft.graph.accessPackageResourceAttributeQuestion" => new AccessPackageResourceAttributeQuestion(), + _ => new AccessPackageResourceAttributeSource(), + }; + } + /// + /// The deserialization information for the current model + /// + public virtual IDictionary> GetFieldDeserializers() { + return new Dictionary> { + {"@odata.type", n => { OdataType = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public virtual void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteAdditionalData(AdditionalData); + } + } +} diff --git a/src/generated/Models/AccessPackageUserDirectoryAttributeStore.cs b/src/generated/Models/AccessPackageUserDirectoryAttributeStore.cs new file mode 100644 index 0000000000..f7a2532571 --- /dev/null +++ b/src/generated/Models/AccessPackageUserDirectoryAttributeStore.cs @@ -0,0 +1,39 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class AccessPackageUserDirectoryAttributeStore : AccessPackageResourceAttributeDestination, IParsable { + /// + /// Instantiates a new accessPackageUserDirectoryAttributeStore and sets the default values. + /// + public AccessPackageUserDirectoryAttributeStore() : base() { + OdataType = "#microsoft.graph.accessPackageUserDirectoryAttributeStore"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new AccessPackageUserDirectoryAttributeStore CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new AccessPackageUserDirectoryAttributeStore(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + } + } +} diff --git a/src/generated/Models/Agreement.cs b/src/generated/Models/Agreement.cs index 9afb7077fc..aa2e49bade 100644 --- a/src/generated/Models/Agreement.cs +++ b/src/generated/Models/Agreement.cs @@ -14,7 +14,7 @@ public class Agreement : Entity, IParsable { #else public List Acceptances { get; set; } #endif - /// Display name of the agreement. The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement. Supports $filter (eq). + /// Display name of the agreement. The display name is used for internal tracking of the agreement but isn't shown to end users who view the agreement. Supports $filter (eq). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? DisplayName { get; set; } @@ -50,7 +50,7 @@ public class Agreement : Entity, IParsable { #else public ApiSdk.Models.TermsExpiration TermsExpiration { get; set; } #endif - /// The duration after which the user must re-accept the terms of use. The value is represented in ISO 8601 format for durations. Supports $filter (eq). + /// The duration after which the user must reaccept the terms of use. The value is represented in ISO 8601 format for durations. Supports $filter (eq). public TimeSpan? UserReacceptRequiredFrequency { get; set; } /// /// Creates a new instance of the appropriate class based on discriminator value diff --git a/src/generated/Models/Call.cs b/src/generated/Models/Call.cs index a1fe887553..8156938f55 100644 --- a/src/generated/Models/Call.cs +++ b/src/generated/Models/Call.cs @@ -14,7 +14,7 @@ public class Call : Entity, IParsable { #else public List AudioRoutingGroups { get; set; } #endif - /// The callback URL on which callbacks will be delivered. Must be https. + /// The callback URL on which callbacks are delivered. Must be an HTTPS URL. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? CallbackUri { get; set; } @@ -22,7 +22,7 @@ public class Call : Entity, IParsable { #else public string CallbackUri { get; set; } #endif - /// A unique identifier for all the participant calls in a conference or a unique identifier for two participant calls in a P2P call. This needs to be copied over from Microsoft.Graph.Call.CallChainId. + /// A unique identifier for all the participant calls in a conference or a unique identifier for two participant calls in a P2P call. This identifier must be copied over from Microsoft.Graph.Call.CallChainId. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? CallChainId { get; set; } diff --git a/src/generated/Models/CommsOperation.cs b/src/generated/Models/CommsOperation.cs index a00aaa7946..ea23dd2400 100644 --- a/src/generated/Models/CommsOperation.cs +++ b/src/generated/Models/CommsOperation.cs @@ -38,6 +38,7 @@ public class CommsOperation : Entity, IParsable { "#microsoft.graph.muteParticipantOperation" => new MuteParticipantOperation(), "#microsoft.graph.playPromptOperation" => new PlayPromptOperation(), "#microsoft.graph.recordOperation" => new RecordOperation(), + "#microsoft.graph.sendDtmfTonesOperation" => new SendDtmfTonesOperation(), "#microsoft.graph.startHoldMusicOperation" => new StartHoldMusicOperation(), "#microsoft.graph.stopHoldMusicOperation" => new StopHoldMusicOperation(), "#microsoft.graph.subscribeToToneOperation" => new SubscribeToToneOperation(), diff --git a/src/generated/Models/ConditionalAccessApplications.cs b/src/generated/Models/ConditionalAccessApplications.cs index 82c0db8ead..c7914722ec 100644 --- a/src/generated/Models/ConditionalAccessApplications.cs +++ b/src/generated/Models/ConditionalAccessApplications.cs @@ -16,7 +16,7 @@ public class ConditionalAccessApplications : IAdditionalDataHolder, IParsable { #else public ConditionalAccessFilter ApplicationFilter { get; set; } #endif - /// Can be one of the following: The list of client IDs (appId) explicitly excluded from the policy. Office365 - For the list of apps included in Office365, see Conditional Access target apps: Office 365 + /// Can be one of the following: The list of client IDs (appId) explicitly excluded from the policy. Office365 - For the list of apps included in Office365, see Apps included in Conditional Access Office 365 app suite #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? ExcludeApplications { get; set; } @@ -24,7 +24,7 @@ public class ConditionalAccessApplications : IAdditionalDataHolder, IParsable { #else public List ExcludeApplications { get; set; } #endif - /// Can be one of the following: The list of client IDs (appId) the policy applies to, unless explicitly excluded (in excludeApplications) All Office365 - For the list of apps included in Office365, see Conditional Access target apps: Office 365 + /// Can be one of the following: The list of client IDs (appId) the policy applies to, unless explicitly excluded (in excludeApplications) All Office365 - For the list of apps included in Office365, see Apps included in Conditional Access Office 365 app suite #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? IncludeApplications { get; set; } diff --git a/src/generated/Models/DeltaParticipants.cs b/src/generated/Models/DeltaParticipants.cs index cb408515f1..9e609834a9 100644 --- a/src/generated/Models/DeltaParticipants.cs +++ b/src/generated/Models/DeltaParticipants.cs @@ -6,7 +6,7 @@ using System; namespace ApiSdk.Models { public class DeltaParticipants : Entity, IParsable { - /// The participants property + /// The collection of participants that were updated since the last roster update. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? Participants { get; set; } @@ -14,7 +14,7 @@ public class DeltaParticipants : Entity, IParsable { #else public List Participants { get; set; } #endif - /// The sequenceNumber property + /// The sequence number for the roster update that is used to identify the notification order. public long? SequenceNumber { get; set; } /// /// Creates a new instance of the appropriate class based on discriminator value diff --git a/src/generated/Models/EducationAssignment.cs b/src/generated/Models/EducationAssignment.cs index 7e39ead764..13d04e431e 100644 --- a/src/generated/Models/EducationAssignment.cs +++ b/src/generated/Models/EducationAssignment.cs @@ -6,9 +6,9 @@ using System; namespace ApiSdk.Models { public class EducationAssignment : Entity, IParsable { - /// Optional field to control the assignment behavior for students who are added after the assignment is published. If not specified, defaults to none. Supported values are: none, assignIfOpen. For example, a teacher can use assignIfOpen to indicate that an assignment should be assigned to any new student who joins the class while the assignment is still open, and none to indicate that an assignment should not be assigned to new students. + /// Optional field to control the assignment behavior for students who are added after the assignment is published. If not specified, defaults to none. Supported values are: none, assignIfOpen. For example, a teacher can use assignIfOpen to indicate that an assignment should be assigned to any new student who joins the class while the assignment is still open, and none to indicate that an assignment shouldn't be assigned to new students. public EducationAddedStudentAction? AddedStudentAction { get; set; } - /// Optional field to control the assignment behavior for adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: studentsOnly. The default value is none. + /// Optional field to control the assignment behavior for adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly. You must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: studentsOnly. The default value is none. public EducationAddToCalendarOptions? AddToCalendarAction { get; set; } /// Identifies whether students can submit after the due date. If this property isn't specified during create, it defaults to true. public bool? AllowLateSubmissions { get; set; } @@ -34,7 +34,7 @@ public class EducationAssignment : Entity, IParsable { #else public List Categories { get; set; } #endif - /// Class which this assignment belongs. + /// Class to which this assignment belongs. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? ClassId { get; set; } @@ -42,7 +42,7 @@ public class EducationAssignment : Entity, IParsable { #else public string ClassId { get; set; } #endif - /// Date when the assignment will be closed for submissions. This is an optional field that can be null if the assignment does not allowLateSubmissions or when the closeDateTime is the same as the dueDateTime. But if specified, then the closeDateTime must be greater than or equal to the dueDateTime. 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 + /// Date when the assignment will be closed for submissions. This is an optional field that can be null if the assignment doesn't allowLateSubmissions or when the closeDateTime is the same as the dueDateTime. But if specified, then the closeDateTime must be greater than or equal to the dueDateTime. 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 public DateTimeOffset? CloseDateTime { get; set; } /// Who created the assignment. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -80,7 +80,15 @@ public class EducationAssignment : Entity, IParsable { #else public EducationAssignmentGradeType Grading { get; set; } #endif - /// Instructions for the assignment. This along with the display name tell the student what to do. + /// When set, enables users to weight assignments differently when computing a class average grade. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public EducationGradingCategory? GradingCategory { get; set; } +#nullable restore +#else + public EducationGradingCategory GradingCategory { get; set; } +#endif + /// Instructions for the assignment. The instructsions and the display name tell the student what to do. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public EducationItemBody? Instructions { get; set; } @@ -132,7 +140,7 @@ public class EducationAssignment : Entity, IParsable { #endif /// Status of the Assignment. You can't PATCH this value. Possible values are: draft, scheduled, published, assigned. public EducationAssignmentStatus? Status { get; private set; } - /// Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable. + /// Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? Submissions { get; set; } @@ -177,6 +185,7 @@ public override IDictionary> GetFieldDeserializers() {"dueDateTime", n => { DueDateTime = n.GetDateTimeOffsetValue(); } }, {"feedbackResourcesFolderUrl", n => { FeedbackResourcesFolderUrl = n.GetStringValue(); } }, {"grading", n => { Grading = n.GetObjectValue(EducationAssignmentGradeType.CreateFromDiscriminatorValue); } }, + {"gradingCategory", n => { GradingCategory = n.GetObjectValue(EducationGradingCategory.CreateFromDiscriminatorValue); } }, {"instructions", n => { Instructions = n.GetObjectValue(EducationItemBody.CreateFromDiscriminatorValue); } }, {"lastModifiedBy", n => { LastModifiedBy = n.GetObjectValue(IdentitySet.CreateFromDiscriminatorValue); } }, {"lastModifiedDateTime", n => { LastModifiedDateTime = n.GetDateTimeOffsetValue(); } }, @@ -207,6 +216,7 @@ public override void Serialize(ISerializationWriter writer) { writer.WriteStringValue("displayName", DisplayName); writer.WriteDateTimeOffsetValue("dueDateTime", DueDateTime); writer.WriteObjectValue("grading", Grading); + writer.WriteObjectValue("gradingCategory", GradingCategory); writer.WriteObjectValue("instructions", Instructions); writer.WriteStringValue("notificationChannelUrl", NotificationChannelUrl); writer.WriteCollectionOfObjectValues("resources", Resources); diff --git a/src/generated/Models/EducationAssignmentSettings.cs b/src/generated/Models/EducationAssignmentSettings.cs index 229647d35d..73a4728b66 100644 --- a/src/generated/Models/EducationAssignmentSettings.cs +++ b/src/generated/Models/EducationAssignmentSettings.cs @@ -6,7 +6,15 @@ using System; namespace ApiSdk.Models { public class EducationAssignmentSettings : Entity, IParsable { - /// Indicates whether turn-in celebration animation is shown. A value of true indicates that the animation isn't shown. Default value is false. + /// When set, enables users to weight assignments differently when computing a class average grade. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? GradingCategories { get; set; } +#nullable restore +#else + public List GradingCategories { get; set; } +#endif + /// Indicates whether to show the turn-in celebration animation. If true, indicates to skip the animation. The default value is false. public bool? SubmissionAnimationDisabled { get; set; } /// /// Creates a new instance of the appropriate class based on discriminator value @@ -21,6 +29,7 @@ public class EducationAssignmentSettings : Entity, IParsable { /// public override IDictionary> GetFieldDeserializers() { return new Dictionary>(base.GetFieldDeserializers()) { + {"gradingCategories", n => { GradingCategories = n.GetCollectionOfObjectValues(EducationGradingCategory.CreateFromDiscriminatorValue)?.ToList(); } }, {"submissionAnimationDisabled", n => { SubmissionAnimationDisabled = n.GetBoolValue(); } }, }; } @@ -31,6 +40,7 @@ public override IDictionary> GetFieldDeserializers() public override void Serialize(ISerializationWriter writer) { _ = writer ?? throw new ArgumentNullException(nameof(writer)); base.Serialize(writer); + writer.WriteCollectionOfObjectValues("gradingCategories", GradingCategories); writer.WriteBoolValue("submissionAnimationDisabled", SubmissionAnimationDisabled); } } diff --git a/src/generated/Models/EducationGradingCategory.cs b/src/generated/Models/EducationGradingCategory.cs new file mode 100644 index 0000000000..0f1ebe4cb4 --- /dev/null +++ b/src/generated/Models/EducationGradingCategory.cs @@ -0,0 +1,47 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class EducationGradingCategory : Entity, IParsable { + /// The name of the grading category. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DisplayName { get; set; } +#nullable restore +#else + public string DisplayName { get; set; } +#endif + /// The weight of the category; an integer between 0 and 100. + public int? PercentageWeight { get; set; } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new EducationGradingCategory CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new EducationGradingCategory(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"displayName", n => { DisplayName = n.GetStringValue(); } }, + {"percentageWeight", n => { PercentageWeight = n.GetIntValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("displayName", DisplayName); + writer.WriteIntValue("percentageWeight", PercentageWeight); + } + } +} diff --git a/src/generated/Models/EducationGradingCategoryCollectionResponse.cs b/src/generated/Models/EducationGradingCategoryCollectionResponse.cs new file mode 100644 index 0000000000..5680004b00 --- /dev/null +++ b/src/generated/Models/EducationGradingCategoryCollectionResponse.cs @@ -0,0 +1,43 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class EducationGradingCategoryCollectionResponse : BaseCollectionPaginationCountResponse, IParsable { + /// The value property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Value { get; set; } +#nullable restore +#else + public List Value { get; set; } +#endif + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new EducationGradingCategoryCollectionResponse CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new EducationGradingCategoryCollectionResponse(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"value", n => { Value = n.GetCollectionOfObjectValues(EducationGradingCategory.CreateFromDiscriminatorValue)?.ToList(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteCollectionOfObjectValues("value", Value); + } + } +} diff --git a/src/generated/Models/Entity.cs b/src/generated/Models/Entity.cs index 5fca1d3080..e313519b2f 100644 --- a/src/generated/Models/Entity.cs +++ b/src/generated/Models/Entity.cs @@ -274,6 +274,7 @@ public static Entity CreateFromDiscriminatorValue(IParseNode parseNode) { "#microsoft.graph.educationClass" => new EducationClass(), "#microsoft.graph.educationFeedbackOutcome" => new EducationFeedbackOutcome(), "#microsoft.graph.educationFeedbackResourceOutcome" => new EducationFeedbackResourceOutcome(), + "#microsoft.graph.educationGradingCategory" => new EducationGradingCategory(), "#microsoft.graph.educationOrganization" => new EducationOrganization(), "#microsoft.graph.educationOutcome" => new EducationOutcome(), "#microsoft.graph.educationPointsOutcome" => new EducationPointsOutcome(), @@ -630,6 +631,7 @@ public static Entity CreateFromDiscriminatorValue(IParseNode parseNode) { "#microsoft.graph.security.whoisHistoryRecord" => new WhoisHistoryRecord(), "#microsoft.graph.security.whoisRecord" => new WhoisRecord(), "#microsoft.graph.securityReportsRoot" => new SecurityReportsRoot(), + "#microsoft.graph.sendDtmfTonesOperation" => new SendDtmfTonesOperation(), "#microsoft.graph.serviceAnnouncement" => new ServiceAnnouncement(), "#microsoft.graph.serviceAnnouncementAttachment" => new ServiceAnnouncementAttachment(), "#microsoft.graph.serviceAnnouncementBase" => new ServiceAnnouncementBase(), diff --git a/src/generated/Models/ExtensionProperty.cs b/src/generated/Models/ExtensionProperty.cs index 31bc27129b..ccedff4c76 100644 --- a/src/generated/Models/ExtensionProperty.cs +++ b/src/generated/Models/ExtensionProperty.cs @@ -14,7 +14,7 @@ public class ExtensionProperty : DirectoryObject, IParsable { #else public string AppDisplayName { get; set; } #endif - /// Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum + /// Specifies the data type of the value the extension property can hold. Following values are supported. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximumNot nullable. For multivalued directory extensions, these limits apply per value in the collection. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? DataType { get; set; } @@ -22,7 +22,7 @@ public class ExtensionProperty : DirectoryObject, IParsable { #else public string DataType { get; set; } #endif - /// Defines the directory extension as a multi-valued property. When true, the directory extension property can store a collection of objects of the dataType; for example, a collection of integers. The default value is false. Supports $filter (eq). + /// Defines the directory extension as a multi-valued property. When true, the directory extension property can store a collection of objects of the dataType; for example, a collection of string types such as 'extensionb7b1c57b532f40b8b5ed4b7a7ba67401jobGroupTracker': ['String 1', 'String 2']. The default value is false. Supports $filter (eq). public bool? IsMultiValued { get; set; } /// Indicates if this extension property was synced from on-premises active directory using Microsoft Entra Connect. Read-only. public bool? IsSyncedFromOnPremises { get; set; } diff --git a/src/generated/Models/Group.cs b/src/generated/Models/Group.cs index 49cd27337a..8a11f1da21 100644 --- a/src/generated/Models/Group.cs +++ b/src/generated/Models/Group.cs @@ -364,7 +364,7 @@ public class Group : DirectoryObject, IParsable { #else public string SecurityIdentifier { get; set; } #endif - /// The serviceProvisioningErrors property + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? ServiceProvisioningErrors { get; set; } diff --git a/src/generated/Models/IdentitySource.cs b/src/generated/Models/IdentitySource.cs index a29d7a00b8..5192e38115 100644 --- a/src/generated/Models/IdentitySource.cs +++ b/src/generated/Models/IdentitySource.cs @@ -34,6 +34,7 @@ public static IdentitySource CreateFromDiscriminatorValue(IParseNode parseNode) "#microsoft.graph.crossCloudAzureActiveDirectoryTenant" => new CrossCloudAzureActiveDirectoryTenant(), "#microsoft.graph.domainIdentitySource" => new DomainIdentitySource(), "#microsoft.graph.externalDomainFederation" => new ExternalDomainFederation(), + "#microsoft.graph.socialIdentitySource" => new SocialIdentitySource(), _ => new IdentitySource(), }; } diff --git a/src/generated/Models/LearningSelfInitiatedCourse.cs b/src/generated/Models/LearningSelfInitiatedCourse.cs index f0602c86b7..a2db9203f2 100644 --- a/src/generated/Models/LearningSelfInitiatedCourse.cs +++ b/src/generated/Models/LearningSelfInitiatedCourse.cs @@ -6,7 +6,7 @@ using System; namespace ApiSdk.Models { public class LearningSelfInitiatedCourse : LearningCourseActivity, IParsable { - /// The date and time on which the self-initiated course was started by the learner. Optional. + /// The date and time on which the learner started the self-initiated course. Optional. public DateTimeOffset? StartedDateTime { get; set; } /// /// Creates a new instance of the appropriate class based on discriminator value diff --git a/src/generated/Models/ODataErrors/InnerError.cs b/src/generated/Models/ODataErrors/InnerError.cs index 27047d8f54..5cc47a40ed 100644 --- a/src/generated/Models/ODataErrors/InnerError.cs +++ b/src/generated/Models/ODataErrors/InnerError.cs @@ -54,7 +54,7 @@ public static InnerError CreateFromDiscriminatorValue(IParseNode parseNode) { public virtual IDictionary> GetFieldDeserializers() { return new Dictionary> { {"client-request-id", n => { ClientRequestId = n.GetStringValue(); } }, - {"Date", n => { Date = n.GetDateTimeOffsetValue(); } }, + {"date", n => { Date = n.GetDateTimeOffsetValue(); } }, {"@odata.type", n => { OdataType = n.GetStringValue(); } }, {"request-id", n => { RequestId = n.GetStringValue(); } }, }; @@ -66,7 +66,7 @@ public virtual IDictionary> GetFieldDeserializers() { public virtual void Serialize(ISerializationWriter writer) { _ = writer ?? throw new ArgumentNullException(nameof(writer)); writer.WriteStringValue("client-request-id", ClientRequestId); - writer.WriteDateTimeOffsetValue("Date", Date); + writer.WriteDateTimeOffsetValue("date", Date); writer.WriteStringValue("@odata.type", OdataType); writer.WriteStringValue("request-id", RequestId); writer.WriteAdditionalData(AdditionalData); diff --git a/src/generated/Models/OnlineMeeting.cs b/src/generated/Models/OnlineMeeting.cs index bf5b43b16a..9ec0639e18 100644 --- a/src/generated/Models/OnlineMeeting.cs +++ b/src/generated/Models/OnlineMeeting.cs @@ -36,7 +36,7 @@ public class OnlineMeeting : OnlineMeetingBase, IParsable { #endif /// The isBroadcast property public bool? IsBroadcast { get; set; } - /// The participants associated with the online meeting. This includes the organizer and the attendees. + /// The participants associated with the online meeting, including the organizer and the attendees. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public MeetingParticipants? Participants { get; set; } diff --git a/src/generated/Models/OnlineMeetingBase.cs b/src/generated/Models/OnlineMeetingBase.cs index 963dddc861..88d7934a13 100644 --- a/src/generated/Models/OnlineMeetingBase.cs +++ b/src/generated/Models/OnlineMeetingBase.cs @@ -6,19 +6,19 @@ using System; namespace ApiSdk.Models { public class OnlineMeetingBase : Entity, IParsable { - /// The allowAttendeeToEnableCamera property + /// Indicates whether attendees can turn on their camera. public bool? AllowAttendeeToEnableCamera { get; set; } - /// The allowAttendeeToEnableMic property + /// Indicates whether attendees can turn on their microphone. public bool? AllowAttendeeToEnableMic { get; set; } - /// The allowedPresenters property + /// Specifies who can be a presenter in a meeting. public OnlineMeetingPresenters? AllowedPresenters { get; set; } - /// The allowMeetingChat property + /// Specifies the mode of the meeting chat. public MeetingChatMode? AllowMeetingChat { get; set; } - /// The allowParticipantsToChangeName property + /// Specifies if participants are allowed to rename themselves in an instance of the meeting. public bool? AllowParticipantsToChangeName { get; set; } - /// The allowTeamworkReactions property + /// Indicates if Teams reactions are enabled for the meeting. public bool? AllowTeamworkReactions { get; set; } - /// The attendanceReports property + /// The attendance reports of an online meeting. Read-only. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? AttendanceReports { get; set; } @@ -26,7 +26,7 @@ public class OnlineMeetingBase : Entity, IParsable { #else public List AttendanceReports { get; set; } #endif - /// The audioConferencing property + /// The phone access (dial-in) information for an online meeting. Read-only. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ApiSdk.Models.AudioConferencing? AudioConferencing { get; set; } @@ -34,7 +34,7 @@ public class OnlineMeetingBase : Entity, IParsable { #else public ApiSdk.Models.AudioConferencing AudioConferencing { get; set; } #endif - /// The chatInfo property + /// The chat information associated with this online meeting. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ApiSdk.Models.ChatInfo? ChatInfo { get; set; } @@ -42,9 +42,9 @@ public class OnlineMeetingBase : Entity, IParsable { #else public ApiSdk.Models.ChatInfo ChatInfo { get; set; } #endif - /// The isEntryExitAnnounced property + /// Indicates whether to announce when callers join or leave. public bool? IsEntryExitAnnounced { get; set; } - /// The joinInformation property + /// The join information in the language and locale variant specified in 'Accept-Language' request HTTP header. Read-only. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ItemBody? JoinInformation { get; set; } @@ -52,7 +52,7 @@ public class OnlineMeetingBase : Entity, IParsable { #else public ItemBody JoinInformation { get; set; } #endif - /// The joinMeetingIdSettings property + /// Specifies the joinMeetingId, the meeting passcode, and the requirement for the passcode. Once an onlineMeeting is created, the joinMeetingIdSettings can't be modified. To make any changes to this property, you must cancel this meeting and create a new one. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ApiSdk.Models.JoinMeetingIdSettings? JoinMeetingIdSettings { get; set; } @@ -60,7 +60,7 @@ public class OnlineMeetingBase : Entity, IParsable { #else public ApiSdk.Models.JoinMeetingIdSettings JoinMeetingIdSettings { get; set; } #endif - /// The joinWebUrl property + /// The join URL of the online meeting. Read-only. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? JoinWebUrl { get; set; } @@ -68,7 +68,7 @@ public class OnlineMeetingBase : Entity, IParsable { #else public string JoinWebUrl { get; set; } #endif - /// The lobbyBypassSettings property + /// Specifies which participants can bypass the meeting lobby. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ApiSdk.Models.LobbyBypassSettings? LobbyBypassSettings { get; set; } @@ -76,11 +76,11 @@ public class OnlineMeetingBase : Entity, IParsable { #else public ApiSdk.Models.LobbyBypassSettings LobbyBypassSettings { get; set; } #endif - /// The recordAutomatically property + /// Indicates whether to record the meeting automatically. public bool? RecordAutomatically { get; set; } /// The shareMeetingChatHistoryDefault property public MeetingChatHistoryDefaultMode? ShareMeetingChatHistoryDefault { get; set; } - /// The subject property + /// The subject of the online meeting. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? Subject { get; set; } @@ -88,7 +88,7 @@ public class OnlineMeetingBase : Entity, IParsable { #else public string Subject { get; set; } #endif - /// The videoTeleconferenceId property + /// The video teleconferencing ID. Read-only. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? VideoTeleconferenceId { get; set; } @@ -96,7 +96,7 @@ public class OnlineMeetingBase : Entity, IParsable { #else public string VideoTeleconferenceId { get; set; } #endif - /// The watermarkProtection property + /// Specifies whether the client application should apply a watermark to a content type. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public WatermarkProtectionValues? WatermarkProtection { get; set; } diff --git a/src/generated/Models/OrgContact.cs b/src/generated/Models/OrgContact.cs index 82df35c36a..f9f8deda48 100644 --- a/src/generated/Models/OrgContact.cs +++ b/src/generated/Models/OrgContact.cs @@ -122,7 +122,7 @@ public class OrgContact : DirectoryObject, IParsable { #else public List ProxyAddresses { get; set; } #endif - /// The serviceProvisioningErrors property + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an organizational contact object . Supports $filter (eq, not, for isResolved and serviceInstance). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? ServiceProvisioningErrors { get; set; } diff --git a/src/generated/Models/Participant.cs b/src/generated/Models/Participant.cs index deb99f0f29..36afc39637 100644 --- a/src/generated/Models/Participant.cs +++ b/src/generated/Models/Participant.cs @@ -42,7 +42,7 @@ public class Participant : Entity, IParsable { #else public ApiSdk.Models.RecordingInfo RecordingInfo { get; set; } #endif - /// The removedState property + /// Indicates the reason why the participant was removed from the roster. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ApiSdk.Models.RemovedState? RemovedState { get; set; } @@ -58,7 +58,7 @@ public class Participant : Entity, IParsable { #else public OnlineMeetingRestricted RestrictedExperience { get; set; } #endif - /// The rosterSequenceNumber property + /// Indicates the roster sequence number in which the participant was last updated. public long? RosterSequenceNumber { get; set; } /// /// Creates a new instance of the appropriate class based on discriminator value diff --git a/src/generated/Models/PublicationFacet.cs b/src/generated/Models/PublicationFacet.cs index 437c4a1c2f..e9cfae531b 100644 --- a/src/generated/Models/PublicationFacet.cs +++ b/src/generated/Models/PublicationFacet.cs @@ -8,7 +8,7 @@ namespace ApiSdk.Models { public class PublicationFacet : IAdditionalDataHolder, IParsable { /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. public IDictionary AdditionalData { get; set; } - /// User who has checked out the file. + /// The user who checked out the file. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public IdentitySet? CheckedOutBy { get; set; } diff --git a/src/generated/Models/RemovedState.cs b/src/generated/Models/RemovedState.cs index 8ff4aef1f9..c23b3735ea 100644 --- a/src/generated/Models/RemovedState.cs +++ b/src/generated/Models/RemovedState.cs @@ -16,7 +16,7 @@ public class RemovedState : IAdditionalDataHolder, IParsable { #else public string OdataType { get; set; } #endif - /// The reason property + /// The removal reason for the participant resource. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? Reason { get; set; } diff --git a/src/generated/Models/SearchRequest.cs b/src/generated/Models/SearchRequest.cs index e0142a2bb9..406efd583e 100644 --- a/src/generated/Models/SearchRequest.cs +++ b/src/generated/Models/SearchRequest.cs @@ -42,7 +42,7 @@ public class SearchRequest : IAdditionalDataHolder, IParsable { #endif /// This triggers hybrid sort for messages : the first 3 messages are the most relevant. This property is only applicable to entityType=message. Optional. public bool? EnableTopResults { get; set; } - /// One or more types of resources expected in the response. Possible values are: event, message, driveItem, externalItem, site, list, listItem, drive, chatMessage, person, acronym, bookmark. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum:chatMessage, person, acronym, bookmark. See known limitations for those combinations of two or more entity types that are supported in the same search request. Required. + /// One or more types of resources expected in the response. Possible values are: event, message, driveItem, externalItem, site, list, listItem, drive, chatMessage, person, acronym, bookmark. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: chatMessage, person, acronym, bookmark. See known limitations for those combinations of two or more entity types that are supported in the same search request. Required. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? EntityTypes { get; set; } diff --git a/src/generated/Models/Security/AlertEvidence.cs b/src/generated/Models/Security/AlertEvidence.cs index bac98d8d72..562039ce0e 100644 --- a/src/generated/Models/Security/AlertEvidence.cs +++ b/src/generated/Models/Security/AlertEvidence.cs @@ -79,7 +79,12 @@ public static AlertEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { "#microsoft.graph.security.containerRegistryEvidence" => new ContainerRegistryEvidence(), "#microsoft.graph.security.deviceEvidence" => new DeviceEvidence(), "#microsoft.graph.security.fileEvidence" => new FileEvidence(), + "#microsoft.graph.security.gitHubOrganizationEvidence" => new GitHubOrganizationEvidence(), + "#microsoft.graph.security.gitHubRepoEvidence" => new GitHubRepoEvidence(), + "#microsoft.graph.security.gitHubUserEvidence" => new GitHubUserEvidence(), "#microsoft.graph.security.googleCloudResourceEvidence" => new GoogleCloudResourceEvidence(), + "#microsoft.graph.security.hostLogonSessionEvidence" => new HostLogonSessionEvidence(), + "#microsoft.graph.security.ioTDeviceEvidence" => new IoTDeviceEvidence(), "#microsoft.graph.security.ipEvidence" => new IpEvidence(), "#microsoft.graph.security.kubernetesClusterEvidence" => new KubernetesClusterEvidence(), "#microsoft.graph.security.kubernetesControllerEvidence" => new KubernetesControllerEvidence(), @@ -90,11 +95,17 @@ public static AlertEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { "#microsoft.graph.security.kubernetesServiceEvidence" => new KubernetesServiceEvidence(), "#microsoft.graph.security.mailboxEvidence" => new MailboxEvidence(), "#microsoft.graph.security.mailClusterEvidence" => new MailClusterEvidence(), + "#microsoft.graph.security.malwareEvidence" => new MalwareEvidence(), + "#microsoft.graph.security.networkConnectionEvidence" => new NetworkConnectionEvidence(), + "#microsoft.graph.security.nicEvidence" => new NicEvidence(), "#microsoft.graph.security.oauthApplicationEvidence" => new OauthApplicationEvidence(), "#microsoft.graph.security.processEvidence" => new ProcessEvidence(), "#microsoft.graph.security.registryKeyEvidence" => new RegistryKeyEvidence(), "#microsoft.graph.security.registryValueEvidence" => new RegistryValueEvidence(), + "#microsoft.graph.security.sasTokenEvidence" => new SasTokenEvidence(), "#microsoft.graph.security.securityGroupEvidence" => new SecurityGroupEvidence(), + "#microsoft.graph.security.servicePrincipalEvidence" => new ServicePrincipalEvidence(), + "#microsoft.graph.security.submissionMailEvidence" => new SubmissionMailEvidence(), "#microsoft.graph.security.urlEvidence" => new UrlEvidence(), "#microsoft.graph.security.userEvidence" => new UserEvidence(), _ => new AlertEvidence(), diff --git a/src/generated/Models/Security/GitHubOrganizationEvidence.cs b/src/generated/Models/Security/GitHubOrganizationEvidence.cs new file mode 100644 index 0000000000..db98c6475e --- /dev/null +++ b/src/generated/Models/Security/GitHubOrganizationEvidence.cs @@ -0,0 +1,99 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class GitHubOrganizationEvidence : AlertEvidence, IParsable { + /// The company property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Company { get; set; } +#nullable restore +#else + public string Company { get; set; } +#endif + /// The displayName property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DisplayName { get; set; } +#nullable restore +#else + public string DisplayName { get; set; } +#endif + /// The email property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Email { get; set; } +#nullable restore +#else + public string Email { get; set; } +#endif + /// The login property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Login { get; set; } +#nullable restore +#else + public string Login { get; set; } +#endif + /// The orgId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OrgId { get; set; } +#nullable restore +#else + public string OrgId { get; set; } +#endif + /// The webUrl property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? WebUrl { get; set; } +#nullable restore +#else + public string WebUrl { get; set; } +#endif + /// + /// Instantiates a new gitHubOrganizationEvidence and sets the default values. + /// + public GitHubOrganizationEvidence() : base() { + OdataType = "#microsoft.graph.security.gitHubOrganizationEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new GitHubOrganizationEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new GitHubOrganizationEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"company", n => { Company = n.GetStringValue(); } }, + {"displayName", n => { DisplayName = n.GetStringValue(); } }, + {"email", n => { Email = n.GetStringValue(); } }, + {"login", n => { Login = n.GetStringValue(); } }, + {"orgId", n => { OrgId = n.GetStringValue(); } }, + {"webUrl", n => { WebUrl = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("company", Company); + writer.WriteStringValue("displayName", DisplayName); + writer.WriteStringValue("email", Email); + writer.WriteStringValue("login", Login); + writer.WriteStringValue("orgId", OrgId); + writer.WriteStringValue("webUrl", WebUrl); + } + } +} diff --git a/src/generated/Models/Security/GitHubRepoEvidence.cs b/src/generated/Models/Security/GitHubRepoEvidence.cs new file mode 100644 index 0000000000..03a0d8374a --- /dev/null +++ b/src/generated/Models/Security/GitHubRepoEvidence.cs @@ -0,0 +1,89 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class GitHubRepoEvidence : AlertEvidence, IParsable { + /// The baseUrl property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? BaseUrl { get; set; } +#nullable restore +#else + public string BaseUrl { get; set; } +#endif + /// The login property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Login { get; set; } +#nullable restore +#else + public string Login { get; set; } +#endif + /// The owner property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Owner { get; set; } +#nullable restore +#else + public string Owner { get; set; } +#endif + /// The ownerType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OwnerType { get; set; } +#nullable restore +#else + public string OwnerType { get; set; } +#endif + /// The repoId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? RepoId { get; set; } +#nullable restore +#else + public string RepoId { get; set; } +#endif + /// + /// Instantiates a new gitHubRepoEvidence and sets the default values. + /// + public GitHubRepoEvidence() : base() { + OdataType = "#microsoft.graph.security.gitHubRepoEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new GitHubRepoEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new GitHubRepoEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"baseUrl", n => { BaseUrl = n.GetStringValue(); } }, + {"login", n => { Login = n.GetStringValue(); } }, + {"owner", n => { Owner = n.GetStringValue(); } }, + {"ownerType", n => { OwnerType = n.GetStringValue(); } }, + {"repoId", n => { RepoId = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("baseUrl", BaseUrl); + writer.WriteStringValue("login", Login); + writer.WriteStringValue("owner", Owner); + writer.WriteStringValue("ownerType", OwnerType); + writer.WriteStringValue("repoId", RepoId); + } + } +} diff --git a/src/generated/Models/Security/GitHubUserEvidence.cs b/src/generated/Models/Security/GitHubUserEvidence.cs new file mode 100644 index 0000000000..29fb53881b --- /dev/null +++ b/src/generated/Models/Security/GitHubUserEvidence.cs @@ -0,0 +1,89 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class GitHubUserEvidence : AlertEvidence, IParsable { + /// The email property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Email { get; set; } +#nullable restore +#else + public string Email { get; set; } +#endif + /// The login property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Login { get; set; } +#nullable restore +#else + public string Login { get; set; } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { get; set; } +#nullable restore +#else + public string Name { get; set; } +#endif + /// The userId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? UserId { get; set; } +#nullable restore +#else + public string UserId { get; set; } +#endif + /// The webUrl property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? WebUrl { get; set; } +#nullable restore +#else + public string WebUrl { get; set; } +#endif + /// + /// Instantiates a new gitHubUserEvidence and sets the default values. + /// + public GitHubUserEvidence() : base() { + OdataType = "#microsoft.graph.security.gitHubUserEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new GitHubUserEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new GitHubUserEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"email", n => { Email = n.GetStringValue(); } }, + {"login", n => { Login = n.GetStringValue(); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"userId", n => { UserId = n.GetStringValue(); } }, + {"webUrl", n => { WebUrl = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("email", Email); + writer.WriteStringValue("login", Login); + writer.WriteStringValue("name", Name); + writer.WriteStringValue("userId", UserId); + writer.WriteStringValue("webUrl", WebUrl); + } + } +} diff --git a/src/generated/Models/Security/HostLogonSessionEvidence.cs b/src/generated/Models/Security/HostLogonSessionEvidence.cs new file mode 100644 index 0000000000..e2d561ef00 --- /dev/null +++ b/src/generated/Models/Security/HostLogonSessionEvidence.cs @@ -0,0 +1,77 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class HostLogonSessionEvidence : AlertEvidence, IParsable { + /// The account property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public UserEvidence? Account { get; set; } +#nullable restore +#else + public UserEvidence Account { get; set; } +#endif + /// The endUtcDateTime property + public DateTimeOffset? EndUtcDateTime { get; set; } + /// The host property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public DeviceEvidence? Host { get; set; } +#nullable restore +#else + public DeviceEvidence Host { get; set; } +#endif + /// The sessionId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? SessionId { get; set; } +#nullable restore +#else + public string SessionId { get; set; } +#endif + /// The startUtcDateTime property + public DateTimeOffset? StartUtcDateTime { get; set; } + /// + /// Instantiates a new hostLogonSessionEvidence and sets the default values. + /// + public HostLogonSessionEvidence() : base() { + OdataType = "#microsoft.graph.security.hostLogonSessionEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new HostLogonSessionEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new HostLogonSessionEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"account", n => { Account = n.GetObjectValue(UserEvidence.CreateFromDiscriminatorValue); } }, + {"endUtcDateTime", n => { EndUtcDateTime = n.GetDateTimeOffsetValue(); } }, + {"host", n => { Host = n.GetObjectValue(DeviceEvidence.CreateFromDiscriminatorValue); } }, + {"sessionId", n => { SessionId = n.GetStringValue(); } }, + {"startUtcDateTime", n => { StartUtcDateTime = n.GetDateTimeOffsetValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("account", Account); + writer.WriteDateTimeOffsetValue("endUtcDateTime", EndUtcDateTime); + writer.WriteObjectValue("host", Host); + writer.WriteStringValue("sessionId", SessionId); + writer.WriteDateTimeOffsetValue("startUtcDateTime", StartUtcDateTime); + } + } +} diff --git a/src/generated/Models/Security/IoTDeviceEvidence.cs b/src/generated/Models/Security/IoTDeviceEvidence.cs new file mode 100644 index 0000000000..73fed4dddf --- /dev/null +++ b/src/generated/Models/Security/IoTDeviceEvidence.cs @@ -0,0 +1,275 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class IoTDeviceEvidence : AlertEvidence, IParsable { + /// The deviceId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DeviceId { get; set; } +#nullable restore +#else + public string DeviceId { get; set; } +#endif + /// The deviceName property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DeviceName { get; set; } +#nullable restore +#else + public string DeviceName { get; set; } +#endif + /// The devicePageLink property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DevicePageLink { get; set; } +#nullable restore +#else + public string DevicePageLink { get; set; } +#endif + /// The deviceSubType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DeviceSubType { get; set; } +#nullable restore +#else + public string DeviceSubType { get; set; } +#endif + /// The deviceType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DeviceType { get; set; } +#nullable restore +#else + public string DeviceType { get; set; } +#endif + /// The importance property + public IoTDeviceImportanceType? Importance { get; set; } + /// The ioTHub property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public AzureResourceEvidence? IoTHub { get; set; } +#nullable restore +#else + public AzureResourceEvidence IoTHub { get; set; } +#endif + /// The ioTSecurityAgentId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? IoTSecurityAgentId { get; set; } +#nullable restore +#else + public string IoTSecurityAgentId { get; set; } +#endif + /// The ipAddress property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public IpEvidence? IpAddress { get; set; } +#nullable restore +#else + public IpEvidence IpAddress { get; set; } +#endif + /// The isAuthorized property + public bool? IsAuthorized { get; set; } + /// The isProgramming property + public bool? IsProgramming { get; set; } + /// The isScanner property + public bool? IsScanner { get; set; } + /// The macAddress property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? MacAddress { get; set; } +#nullable restore +#else + public string MacAddress { get; set; } +#endif + /// The manufacturer property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Manufacturer { get; set; } +#nullable restore +#else + public string Manufacturer { get; set; } +#endif + /// The model property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Model { get; set; } +#nullable restore +#else + public string Model { get; set; } +#endif + /// The nics property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public NicEvidence? Nics { get; set; } +#nullable restore +#else + public NicEvidence Nics { get; set; } +#endif + /// The operatingSystem property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OperatingSystem { get; set; } +#nullable restore +#else + public string OperatingSystem { get; set; } +#endif + /// The owners property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Owners { get; set; } +#nullable restore +#else + public List Owners { get; set; } +#endif + /// The protocols property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Protocols { get; set; } +#nullable restore +#else + public List Protocols { get; set; } +#endif + /// The purdueLayer property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? PurdueLayer { get; set; } +#nullable restore +#else + public string PurdueLayer { get; set; } +#endif + /// The sensor property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Sensor { get; set; } +#nullable restore +#else + public string Sensor { get; set; } +#endif + /// The serialNumber property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? SerialNumber { get; set; } +#nullable restore +#else + public string SerialNumber { get; set; } +#endif + /// The site property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Site { get; set; } +#nullable restore +#else + public string Site { get; set; } +#endif + /// The source property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Source { get; set; } +#nullable restore +#else + public string Source { get; set; } +#endif + /// The sourceRef property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public UrlEvidence? SourceRef { get; set; } +#nullable restore +#else + public UrlEvidence SourceRef { get; set; } +#endif + /// The zone property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Zone { get; set; } +#nullable restore +#else + public string Zone { get; set; } +#endif + /// + /// Instantiates a new ioTDeviceEvidence and sets the default values. + /// + public IoTDeviceEvidence() : base() { + OdataType = "#microsoft.graph.security.ioTDeviceEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new IoTDeviceEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new IoTDeviceEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"deviceId", n => { DeviceId = n.GetStringValue(); } }, + {"deviceName", n => { DeviceName = n.GetStringValue(); } }, + {"devicePageLink", n => { DevicePageLink = n.GetStringValue(); } }, + {"deviceSubType", n => { DeviceSubType = n.GetStringValue(); } }, + {"deviceType", n => { DeviceType = n.GetStringValue(); } }, + {"importance", n => { Importance = n.GetEnumValue(); } }, + {"ioTHub", n => { IoTHub = n.GetObjectValue(AzureResourceEvidence.CreateFromDiscriminatorValue); } }, + {"ioTSecurityAgentId", n => { IoTSecurityAgentId = n.GetStringValue(); } }, + {"ipAddress", n => { IpAddress = n.GetObjectValue(IpEvidence.CreateFromDiscriminatorValue); } }, + {"isAuthorized", n => { IsAuthorized = n.GetBoolValue(); } }, + {"isProgramming", n => { IsProgramming = n.GetBoolValue(); } }, + {"isScanner", n => { IsScanner = n.GetBoolValue(); } }, + {"macAddress", n => { MacAddress = n.GetStringValue(); } }, + {"manufacturer", n => { Manufacturer = n.GetStringValue(); } }, + {"model", n => { Model = n.GetStringValue(); } }, + {"nics", n => { Nics = n.GetObjectValue(NicEvidence.CreateFromDiscriminatorValue); } }, + {"operatingSystem", n => { OperatingSystem = n.GetStringValue(); } }, + {"owners", n => { Owners = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + {"protocols", n => { Protocols = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + {"purdueLayer", n => { PurdueLayer = n.GetStringValue(); } }, + {"sensor", n => { Sensor = n.GetStringValue(); } }, + {"serialNumber", n => { SerialNumber = n.GetStringValue(); } }, + {"site", n => { Site = n.GetStringValue(); } }, + {"source", n => { Source = n.GetStringValue(); } }, + {"sourceRef", n => { SourceRef = n.GetObjectValue(UrlEvidence.CreateFromDiscriminatorValue); } }, + {"zone", n => { Zone = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("deviceId", DeviceId); + writer.WriteStringValue("deviceName", DeviceName); + writer.WriteStringValue("devicePageLink", DevicePageLink); + writer.WriteStringValue("deviceSubType", DeviceSubType); + writer.WriteStringValue("deviceType", DeviceType); + writer.WriteEnumValue("importance", Importance); + writer.WriteObjectValue("ioTHub", IoTHub); + writer.WriteStringValue("ioTSecurityAgentId", IoTSecurityAgentId); + writer.WriteObjectValue("ipAddress", IpAddress); + writer.WriteBoolValue("isAuthorized", IsAuthorized); + writer.WriteBoolValue("isProgramming", IsProgramming); + writer.WriteBoolValue("isScanner", IsScanner); + writer.WriteStringValue("macAddress", MacAddress); + writer.WriteStringValue("manufacturer", Manufacturer); + writer.WriteStringValue("model", Model); + writer.WriteObjectValue("nics", Nics); + writer.WriteStringValue("operatingSystem", OperatingSystem); + writer.WriteCollectionOfPrimitiveValues("owners", Owners); + writer.WriteCollectionOfPrimitiveValues("protocols", Protocols); + writer.WriteStringValue("purdueLayer", PurdueLayer); + writer.WriteStringValue("sensor", Sensor); + writer.WriteStringValue("serialNumber", SerialNumber); + writer.WriteStringValue("site", Site); + writer.WriteStringValue("source", Source); + writer.WriteObjectValue("sourceRef", SourceRef); + writer.WriteStringValue("zone", Zone); + } + } +} diff --git a/src/generated/Models/Security/IoTDeviceImportanceType.cs b/src/generated/Models/Security/IoTDeviceImportanceType.cs new file mode 100644 index 0000000000..57a72d4ac7 --- /dev/null +++ b/src/generated/Models/Security/IoTDeviceImportanceType.cs @@ -0,0 +1,17 @@ +// +using System.Runtime.Serialization; +using System; +namespace ApiSdk.Models.Security { + public enum IoTDeviceImportanceType { + [EnumMember(Value = "unknown")] + Unknown, + [EnumMember(Value = "low")] + Low, + [EnumMember(Value = "normal")] + Normal, + [EnumMember(Value = "high")] + High, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/generated/Models/Security/MalwareEvidence.cs b/src/generated/Models/Security/MalwareEvidence.cs new file mode 100644 index 0000000000..a1b2868f10 --- /dev/null +++ b/src/generated/Models/Security/MalwareEvidence.cs @@ -0,0 +1,79 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class MalwareEvidence : AlertEvidence, IParsable { + /// The category property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Category { get; set; } +#nullable restore +#else + public string Category { get; set; } +#endif + /// The files property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Files { get; set; } +#nullable restore +#else + public List Files { get; set; } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { get; set; } +#nullable restore +#else + public string Name { get; set; } +#endif + /// The processes property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Processes { get; set; } +#nullable restore +#else + public List Processes { get; set; } +#endif + /// + /// Instantiates a new malwareEvidence and sets the default values. + /// + public MalwareEvidence() : base() { + OdataType = "#microsoft.graph.security.malwareEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new MalwareEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new MalwareEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"category", n => { Category = n.GetStringValue(); } }, + {"files", n => { Files = n.GetCollectionOfObjectValues(FileEvidence.CreateFromDiscriminatorValue)?.ToList(); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"processes", n => { Processes = n.GetCollectionOfObjectValues(ProcessEvidence.CreateFromDiscriminatorValue)?.ToList(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("category", Category); + writer.WriteCollectionOfObjectValues("files", Files); + writer.WriteStringValue("name", Name); + writer.WriteCollectionOfObjectValues("processes", Processes); + } + } +} diff --git a/src/generated/Models/Security/NetworkConnectionEvidence.cs b/src/generated/Models/Security/NetworkConnectionEvidence.cs new file mode 100644 index 0000000000..6d2ef2939a --- /dev/null +++ b/src/generated/Models/Security/NetworkConnectionEvidence.cs @@ -0,0 +1,71 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class NetworkConnectionEvidence : AlertEvidence, IParsable { + /// The destinationAddress property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public IpEvidence? DestinationAddress { get; set; } +#nullable restore +#else + public IpEvidence DestinationAddress { get; set; } +#endif + /// The destinationPort property + public int? DestinationPort { get; set; } + /// The protocol property + public ProtocolType? Protocol { get; set; } + /// The sourceAddress property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public IpEvidence? SourceAddress { get; set; } +#nullable restore +#else + public IpEvidence SourceAddress { get; set; } +#endif + /// The sourcePort property + public int? SourcePort { get; set; } + /// + /// Instantiates a new networkConnectionEvidence and sets the default values. + /// + public NetworkConnectionEvidence() : base() { + OdataType = "#microsoft.graph.security.networkConnectionEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new NetworkConnectionEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new NetworkConnectionEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"destinationAddress", n => { DestinationAddress = n.GetObjectValue(IpEvidence.CreateFromDiscriminatorValue); } }, + {"destinationPort", n => { DestinationPort = n.GetIntValue(); } }, + {"protocol", n => { Protocol = n.GetEnumValue(); } }, + {"sourceAddress", n => { SourceAddress = n.GetObjectValue(IpEvidence.CreateFromDiscriminatorValue); } }, + {"sourcePort", n => { SourcePort = n.GetIntValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("destinationAddress", DestinationAddress); + writer.WriteIntValue("destinationPort", DestinationPort); + writer.WriteEnumValue("protocol", Protocol); + writer.WriteObjectValue("sourceAddress", SourceAddress); + writer.WriteIntValue("sourcePort", SourcePort); + } + } +} diff --git a/src/generated/Models/Security/NicEvidence.cs b/src/generated/Models/Security/NicEvidence.cs new file mode 100644 index 0000000000..0d06b6cfad --- /dev/null +++ b/src/generated/Models/Security/NicEvidence.cs @@ -0,0 +1,69 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class NicEvidence : AlertEvidence, IParsable { + /// The ipAddress property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public IpEvidence? IpAddress { get; set; } +#nullable restore +#else + public IpEvidence IpAddress { get; set; } +#endif + /// The macAddress property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? MacAddress { get; set; } +#nullable restore +#else + public string MacAddress { get; set; } +#endif + /// The vlans property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Vlans { get; set; } +#nullable restore +#else + public List Vlans { get; set; } +#endif + /// + /// Instantiates a new nicEvidence and sets the default values. + /// + public NicEvidence() : base() { + OdataType = "#microsoft.graph.security.nicEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new NicEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new NicEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"ipAddress", n => { IpAddress = n.GetObjectValue(IpEvidence.CreateFromDiscriminatorValue); } }, + {"macAddress", n => { MacAddress = n.GetStringValue(); } }, + {"vlans", n => { Vlans = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("ipAddress", IpAddress); + writer.WriteStringValue("macAddress", MacAddress); + writer.WriteCollectionOfPrimitiveValues("vlans", Vlans); + } + } +} diff --git a/src/generated/Models/Security/ProtocolType.cs b/src/generated/Models/Security/ProtocolType.cs new file mode 100644 index 0000000000..cd379c16bb --- /dev/null +++ b/src/generated/Models/Security/ProtocolType.cs @@ -0,0 +1,13 @@ +// +using System.Runtime.Serialization; +using System; +namespace ApiSdk.Models.Security { + public enum ProtocolType { + [EnumMember(Value = "tcp")] + Tcp, + [EnumMember(Value = "udp")] + Udp, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/generated/Models/Security/SasTokenEvidence.cs b/src/generated/Models/Security/SasTokenEvidence.cs new file mode 100644 index 0000000000..32b619590f --- /dev/null +++ b/src/generated/Models/Security/SasTokenEvidence.cs @@ -0,0 +1,127 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class SasTokenEvidence : AlertEvidence, IParsable { + /// The allowedIpAddresses property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? AllowedIpAddresses { get; set; } +#nullable restore +#else + public string AllowedIpAddresses { get; set; } +#endif + /// The allowedResourceTypes property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? AllowedResourceTypes { get; set; } +#nullable restore +#else + public List AllowedResourceTypes { get; set; } +#endif + /// The allowedServices property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? AllowedServices { get; set; } +#nullable restore +#else + public List AllowedServices { get; set; } +#endif + /// The expiryDateTime property + public DateTimeOffset? ExpiryDateTime { get; set; } + /// The permissions property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Permissions { get; set; } +#nullable restore +#else + public List Permissions { get; set; } +#endif + /// The protocol property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Protocol { get; set; } +#nullable restore +#else + public string Protocol { get; set; } +#endif + /// The signatureHash property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? SignatureHash { get; set; } +#nullable restore +#else + public string SignatureHash { get; set; } +#endif + /// The signedWith property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? SignedWith { get; set; } +#nullable restore +#else + public string SignedWith { get; set; } +#endif + /// The startDateTime property + public DateTimeOffset? StartDateTime { get; set; } + /// The storageResource property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public AzureResourceEvidence? StorageResource { get; set; } +#nullable restore +#else + public AzureResourceEvidence StorageResource { get; set; } +#endif + /// + /// Instantiates a new sasTokenEvidence and sets the default values. + /// + public SasTokenEvidence() : base() { + OdataType = "#microsoft.graph.security.sasTokenEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new SasTokenEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new SasTokenEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"allowedIpAddresses", n => { AllowedIpAddresses = n.GetStringValue(); } }, + {"allowedResourceTypes", n => { AllowedResourceTypes = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + {"allowedServices", n => { AllowedServices = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + {"expiryDateTime", n => { ExpiryDateTime = n.GetDateTimeOffsetValue(); } }, + {"permissions", n => { Permissions = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + {"protocol", n => { Protocol = n.GetStringValue(); } }, + {"signatureHash", n => { SignatureHash = n.GetStringValue(); } }, + {"signedWith", n => { SignedWith = n.GetStringValue(); } }, + {"startDateTime", n => { StartDateTime = n.GetDateTimeOffsetValue(); } }, + {"storageResource", n => { StorageResource = n.GetObjectValue(AzureResourceEvidence.CreateFromDiscriminatorValue); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("allowedIpAddresses", AllowedIpAddresses); + writer.WriteCollectionOfPrimitiveValues("allowedResourceTypes", AllowedResourceTypes); + writer.WriteCollectionOfPrimitiveValues("allowedServices", AllowedServices); + writer.WriteDateTimeOffsetValue("expiryDateTime", ExpiryDateTime); + writer.WriteCollectionOfPrimitiveValues("permissions", Permissions); + writer.WriteStringValue("protocol", Protocol); + writer.WriteStringValue("signatureHash", SignatureHash); + writer.WriteStringValue("signedWith", SignedWith); + writer.WriteDateTimeOffsetValue("startDateTime", StartDateTime); + writer.WriteObjectValue("storageResource", StorageResource); + } + } +} diff --git a/src/generated/Models/Security/ServicePrincipalEvidence.cs b/src/generated/Models/Security/ServicePrincipalEvidence.cs new file mode 100644 index 0000000000..5beaf810c9 --- /dev/null +++ b/src/generated/Models/Security/ServicePrincipalEvidence.cs @@ -0,0 +1,93 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class ServicePrincipalEvidence : AlertEvidence, IParsable { + /// The appId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? AppId { get; set; } +#nullable restore +#else + public string AppId { get; set; } +#endif + /// The appOwnerTenantId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? AppOwnerTenantId { get; set; } +#nullable restore +#else + public string AppOwnerTenantId { get; set; } +#endif + /// The servicePrincipalName property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? ServicePrincipalName { get; set; } +#nullable restore +#else + public string ServicePrincipalName { get; set; } +#endif + /// The servicePrincipalObjectId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? ServicePrincipalObjectId { get; set; } +#nullable restore +#else + public string ServicePrincipalObjectId { get; set; } +#endif + /// The servicePrincipalType property + public ApiSdk.Models.Security.ServicePrincipalType? ServicePrincipalType { get; set; } + /// The tenantId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TenantId { get; set; } +#nullable restore +#else + public string TenantId { get; set; } +#endif + /// + /// Instantiates a new servicePrincipalEvidence and sets the default values. + /// + public ServicePrincipalEvidence() : base() { + OdataType = "#microsoft.graph.security.servicePrincipalEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new ServicePrincipalEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new ServicePrincipalEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"appId", n => { AppId = n.GetStringValue(); } }, + {"appOwnerTenantId", n => { AppOwnerTenantId = n.GetStringValue(); } }, + {"servicePrincipalName", n => { ServicePrincipalName = n.GetStringValue(); } }, + {"servicePrincipalObjectId", n => { ServicePrincipalObjectId = n.GetStringValue(); } }, + {"servicePrincipalType", n => { ServicePrincipalType = n.GetEnumValue(); } }, + {"tenantId", n => { TenantId = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("appId", AppId); + writer.WriteStringValue("appOwnerTenantId", AppOwnerTenantId); + writer.WriteStringValue("servicePrincipalName", ServicePrincipalName); + writer.WriteStringValue("servicePrincipalObjectId", ServicePrincipalObjectId); + writer.WriteEnumValue("servicePrincipalType", ServicePrincipalType); + writer.WriteStringValue("tenantId", TenantId); + } + } +} diff --git a/src/generated/Models/Security/ServicePrincipalType.cs b/src/generated/Models/Security/ServicePrincipalType.cs new file mode 100644 index 0000000000..53e2fccb5e --- /dev/null +++ b/src/generated/Models/Security/ServicePrincipalType.cs @@ -0,0 +1,17 @@ +// +using System.Runtime.Serialization; +using System; +namespace ApiSdk.Models.Security { + public enum ServicePrincipalType { + [EnumMember(Value = "unknown")] + Unknown, + [EnumMember(Value = "application")] + Application, + [EnumMember(Value = "managedIdentity")] + ManagedIdentity, + [EnumMember(Value = "legacy")] + Legacy, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/generated/Models/Security/SubmissionMailEvidence.cs b/src/generated/Models/Security/SubmissionMailEvidence.cs new file mode 100644 index 0000000000..5461207818 --- /dev/null +++ b/src/generated/Models/Security/SubmissionMailEvidence.cs @@ -0,0 +1,123 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models.Security { + public class SubmissionMailEvidence : AlertEvidence, IParsable { + /// The networkMessageId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? NetworkMessageId { get; set; } +#nullable restore +#else + public string NetworkMessageId { get; set; } +#endif + /// The recipient property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Recipient { get; set; } +#nullable restore +#else + public string Recipient { get; set; } +#endif + /// The reportType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? ReportType { get; set; } +#nullable restore +#else + public string ReportType { get; set; } +#endif + /// The sender property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Sender { get; set; } +#nullable restore +#else + public string Sender { get; set; } +#endif + /// The senderIp property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? SenderIp { get; set; } +#nullable restore +#else + public string SenderIp { get; set; } +#endif + /// The subject property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Subject { get; set; } +#nullable restore +#else + public string Subject { get; set; } +#endif + /// The submissionDateTime property + public DateTimeOffset? SubmissionDateTime { get; set; } + /// The submissionId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? SubmissionId { get; set; } +#nullable restore +#else + public string SubmissionId { get; set; } +#endif + /// The submitter property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Submitter { get; set; } +#nullable restore +#else + public string Submitter { get; set; } +#endif + /// + /// Instantiates a new submissionMailEvidence and sets the default values. + /// + public SubmissionMailEvidence() : base() { + OdataType = "#microsoft.graph.security.submissionMailEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new SubmissionMailEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new SubmissionMailEvidence(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"networkMessageId", n => { NetworkMessageId = n.GetStringValue(); } }, + {"recipient", n => { Recipient = n.GetStringValue(); } }, + {"reportType", n => { ReportType = n.GetStringValue(); } }, + {"sender", n => { Sender = n.GetStringValue(); } }, + {"senderIp", n => { SenderIp = n.GetStringValue(); } }, + {"subject", n => { Subject = n.GetStringValue(); } }, + {"submissionDateTime", n => { SubmissionDateTime = n.GetDateTimeOffsetValue(); } }, + {"submissionId", n => { SubmissionId = n.GetStringValue(); } }, + {"submitter", n => { Submitter = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("networkMessageId", NetworkMessageId); + writer.WriteStringValue("recipient", Recipient); + writer.WriteStringValue("reportType", ReportType); + writer.WriteStringValue("sender", Sender); + writer.WriteStringValue("senderIp", SenderIp); + writer.WriteStringValue("subject", Subject); + writer.WriteDateTimeOffsetValue("submissionDateTime", SubmissionDateTime); + writer.WriteStringValue("submissionId", SubmissionId); + writer.WriteStringValue("submitter", Submitter); + } + } +} diff --git a/src/generated/Models/SendDtmfCompletionReason.cs b/src/generated/Models/SendDtmfCompletionReason.cs new file mode 100644 index 0000000000..5a4e569f7f --- /dev/null +++ b/src/generated/Models/SendDtmfCompletionReason.cs @@ -0,0 +1,15 @@ +// +using System.Runtime.Serialization; +using System; +namespace ApiSdk.Models { + public enum SendDtmfCompletionReason { + [EnumMember(Value = "unknown")] + Unknown, + [EnumMember(Value = "completedSuccessfully")] + CompletedSuccessfully, + [EnumMember(Value = "mediaOperationCanceled")] + MediaOperationCanceled, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/generated/Models/SendDtmfTonesOperation.cs b/src/generated/Models/SendDtmfTonesOperation.cs new file mode 100644 index 0000000000..914f33a701 --- /dev/null +++ b/src/generated/Models/SendDtmfTonesOperation.cs @@ -0,0 +1,37 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class SendDtmfTonesOperation : CommsOperation, IParsable { + /// The results of the action. Possible values are: unknown, completedSuccessfully, mediaOperationCanceled, unknownfutureValue. + public SendDtmfCompletionReason? CompletionReason { get; set; } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new SendDtmfTonesOperation CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new SendDtmfTonesOperation(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"completionReason", n => { CompletionReason = n.GetEnumValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteEnumValue("completionReason", CompletionReason); + } + } +} diff --git a/src/generated/Models/ServiceProvisioningError.cs b/src/generated/Models/ServiceProvisioningError.cs index 46d8a033f6..5f07d0c881 100644 --- a/src/generated/Models/ServiceProvisioningError.cs +++ b/src/generated/Models/ServiceProvisioningError.cs @@ -8,9 +8,9 @@ namespace ApiSdk.Models { public class ServiceProvisioningError : IAdditionalDataHolder, IParsable { /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. public IDictionary AdditionalData { get; set; } - /// The createdDateTime property + /// The date and time at which the error occurred. public DateTimeOffset? CreatedDateTime { get; set; } - /// The isResolved property + /// Indicates whether the error has been attended to. public bool? IsResolved { get; set; } /// The OdataType property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -20,7 +20,7 @@ public class ServiceProvisioningError : IAdditionalDataHolder, IParsable { #else public string OdataType { get; set; } #endif - /// The serviceInstance property + /// Qualified service instance (for example, 'SharePoint/Dublin') that published the service error information. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? ServiceInstance { get; set; } diff --git a/src/generated/Models/ServiceProvisioningXmlError.cs b/src/generated/Models/ServiceProvisioningXmlError.cs index 7d1a283a13..51ac05c9e2 100644 --- a/src/generated/Models/ServiceProvisioningXmlError.cs +++ b/src/generated/Models/ServiceProvisioningXmlError.cs @@ -6,7 +6,7 @@ using System; namespace ApiSdk.Models { public class ServiceProvisioningXmlError : ServiceProvisioningError, IParsable { - /// The errorDetail property + /// Error Information published by the Federated Service as an xml string. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? ErrorDetail { get; set; } diff --git a/src/generated/Models/SignInActivity.cs b/src/generated/Models/SignInActivity.cs index b3fb615d5c..e0317fd679 100644 --- a/src/generated/Models/SignInActivity.cs +++ b/src/generated/Models/SignInActivity.cs @@ -8,7 +8,7 @@ namespace ApiSdk.Models { public class SignInActivity : IAdditionalDataHolder, IParsable { /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. public IDictionary AdditionalData { get; set; } - /// The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted to sign into the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp 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'. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID. + /// The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted (either successfully or unsuccessfully) to sign in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp 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'. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID. public DateTimeOffset? LastNonInteractiveSignInDateTime { get; set; } /// Request identifier of the last non-interactive sign-in performed by this user. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -18,7 +18,7 @@ public class SignInActivity : IAdditionalDataHolder, IParsable { #else public string LastNonInteractiveSignInRequestId { get; set; } #endif - /// The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted to sign into the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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'. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID. + /// The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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'. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID. public DateTimeOffset? LastSignInDateTime { get; set; } /// Request identifier of the last interactive sign-in performed by this user. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/generated/Models/SocialIdentitySource.cs b/src/generated/Models/SocialIdentitySource.cs new file mode 100644 index 0000000000..bfcd70c20b --- /dev/null +++ b/src/generated/Models/SocialIdentitySource.cs @@ -0,0 +1,53 @@ +// +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace ApiSdk.Models { + public class SocialIdentitySource : IdentitySource, IParsable { + /// The displayName property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DisplayName { get; set; } +#nullable restore +#else + public string DisplayName { get; set; } +#endif + /// The socialIdentitySourceType property + public ApiSdk.Models.SocialIdentitySourceType? SocialIdentitySourceType { get; set; } + /// + /// Instantiates a new socialIdentitySource and sets the default values. + /// + public SocialIdentitySource() : base() { + OdataType = "#microsoft.graph.socialIdentitySource"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new SocialIdentitySource CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new SocialIdentitySource(); + } + /// + /// The deserialization information for the current model + /// + public override IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"displayName", n => { DisplayName = n.GetStringValue(); } }, + {"socialIdentitySourceType", n => { SocialIdentitySourceType = n.GetEnumValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public override void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("displayName", DisplayName); + writer.WriteEnumValue("socialIdentitySourceType", SocialIdentitySourceType); + } + } +} diff --git a/src/generated/Models/SocialIdentitySourceType.cs b/src/generated/Models/SocialIdentitySourceType.cs new file mode 100644 index 0000000000..5c44eb14ad --- /dev/null +++ b/src/generated/Models/SocialIdentitySourceType.cs @@ -0,0 +1,11 @@ +// +using System.Runtime.Serialization; +using System; +namespace ApiSdk.Models { + public enum SocialIdentitySourceType { + [EnumMember(Value = "facebook")] + Facebook, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/generated/Models/TeamsAppSettings.cs b/src/generated/Models/TeamsAppSettings.cs index 63ab324c15..a0c0d32c5d 100644 --- a/src/generated/Models/TeamsAppSettings.cs +++ b/src/generated/Models/TeamsAppSettings.cs @@ -8,6 +8,8 @@ namespace ApiSdk.Models { public class TeamsAppSettings : Entity, IParsable { /// Indicates whether users are allowed to request access to the unavailable Teams apps. public bool? AllowUserRequestsForAppAccess { get; set; } + /// Indicates whether resource-specific consent for personal scope in Teams apps is enabled for the tenant. True indicates that Teams apps that are allowed in the tenant and require resource-specific permissions can be installed in the personal scope. False blocks the installation of any Teams app that requires resource-specific permissions in the personal scope. + public bool? IsUserPersonalScopeResourceSpecificConsentEnabled { get; set; } /// /// Creates a new instance of the appropriate class based on discriminator value /// @@ -22,6 +24,7 @@ public class TeamsAppSettings : Entity, IParsable { public override IDictionary> GetFieldDeserializers() { return new Dictionary>(base.GetFieldDeserializers()) { {"allowUserRequestsForAppAccess", n => { AllowUserRequestsForAppAccess = n.GetBoolValue(); } }, + {"isUserPersonalScopeResourceSpecificConsentEnabled", n => { IsUserPersonalScopeResourceSpecificConsentEnabled = n.GetBoolValue(); } }, }; } /// @@ -32,6 +35,7 @@ public override void Serialize(ISerializationWriter writer) { _ = writer ?? throw new ArgumentNullException(nameof(writer)); base.Serialize(writer); writer.WriteBoolValue("allowUserRequestsForAppAccess", AllowUserRequestsForAppAccess); + writer.WriteBoolValue("isUserPersonalScopeResourceSpecificConsentEnabled", IsUserPersonalScopeResourceSpecificConsentEnabled); } } } diff --git a/src/generated/Models/User.cs b/src/generated/Models/User.cs index 2fc8f8ee5c..5f46dd2167 100644 --- a/src/generated/Models/User.cs +++ b/src/generated/Models/User.cs @@ -24,7 +24,7 @@ public class User : DirectoryObject, IParsable { #else public List Activities { get; set; } #endif - /// Sets the age group of the user. Allowed values: null, Minor, NotAdult and Adult. For more information, see legal age group property definitions. Returned only on $select. Supports $filter (eq, ne, not, and in). + /// Sets the age group of the user. Allowed values: null, Minor, NotAdult, and Adult. For more information, see legal age group property definitions. Returned only on $select. Supports $filter (eq, ne, not, and in). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? AgeGroup { get; set; } @@ -48,7 +48,7 @@ public class User : DirectoryObject, IParsable { #else public List AppRoleAssignments { get; set; } #endif - /// The licenses that are assigned to the user, including inherited (group-based) licenses. This property doesn't differentiate directly assigned and inherited licenses. Use the licenseAssignmentStates property to identify the directly assigned and inherited licenses. Not nullable. Returned only on $select. Supports $filter (eq, not, /$count eq 0, /$count ne 0). + /// The licenses that are assigned to the user, including inherited (group-based) licenses. This property doesn't differentiate between directly assigned and inherited licenses. Use the licenseAssignmentStates property to identify the directly assigned and inherited licenses. Not nullable. Returned only on $select. Supports $filter (eq, not, /$count eq 0, /$count ne 0). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? AssignedLicenses { get; set; } @@ -80,9 +80,9 @@ public class User : DirectoryObject, IParsable { #else public ApiSdk.Models.AuthorizationInfo AuthorizationInfo { get; set; } #endif - /// The birthday of the user. 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. Returned only on $select. + /// The birthday of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. Returned only on $select. public DateTimeOffset? Birthday { get; set; } - /// The telephone numbers for the user. NOTE: Although this is a string collection, only one number can be set for this property. Read-only for users synced from on-premises directory. Returned by default. Supports $filter (eq, not, ge, le, startsWith). + /// The telephone numbers for the user. NOTE: Although it is a string collection, only one number can be set for this property. Read-only for users synced from the on-premises directory. Returned by default. Supports $filter (eq, not, ge, le, startsWith). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? BusinessPhones { get; set; } @@ -146,7 +146,7 @@ public class User : DirectoryObject, IParsable { #else public string CompanyName { get; set; } #endif - /// Sets whether consent has been obtained for minors. Allowed values: null, Granted, Denied and NotRequired. Refer to the legal age group property definitions for further information. Returned only on $select. Supports $filter (eq, ne, not, and in). + /// Sets whether consent was obtained for minors. Allowed values: null, Granted, Denied and NotRequired. Refer to the legal age group property definitions for further information. Returned only on $select. Supports $filter (eq, ne, not, and in). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? ConsentProvidedForMinor { get; set; } @@ -178,7 +178,7 @@ public class User : DirectoryObject, IParsable { #else public string Country { get; set; } #endif - /// The date and time the user was created, in ISO 8601 format and in UTC time. The value cannot be modified and is automatically populated when the entity is created. Nullable. For on-premises users, the value represents when they were first created in Microsoft Entra ID. Property is null for some users created before June 2018 and on-premises users that were synced to Microsoft Entra ID before June 2018. Read-only. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in). + /// The date and time the user was created, in ISO 8601 format and UTC. The value cannot be modified and is automatically populated when the entity is created. Nullable. For on-premises users, the value represents when they were first created in Microsoft Entra ID. Property is null for some users created before June 2018 and on-premises users that were synced to Microsoft Entra ID before June 2018. Read-only. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in). public DateTimeOffset? CreatedDateTime { get; set; } /// Directory objects that the user created. Read-only. Nullable. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -196,7 +196,7 @@ public class User : DirectoryObject, IParsable { #else public string CreationType { get; set; } #endif - /// An open complex type that holds the value of a custom security attribute that is assigned to a directory object. Nullable. Returned only on $select. Supports $filter (eq, ne, not, startsWith). Filter value is case sensitive. + /// An open complex type that holds the value of a custom security attribute that is assigned to a directory object. Nullable. Returned only on $select. Supports $filter (eq, ne, not, startsWith). The filter value is case-sensitive. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public CustomSecurityAttributeValue? CustomSecurityAttributes { get; set; } @@ -204,7 +204,7 @@ public class User : DirectoryObject, IParsable { #else public CustomSecurityAttributeValue CustomSecurityAttributes { get; set; } #endif - /// The name for the department in which the user works. Maximum length is 64 characters. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in, and eq on null values). + /// The name of the department in which the user works. Maximum length is 64 characters. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in, and eq on null values). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? Department { get; set; } @@ -230,7 +230,7 @@ public class User : DirectoryObject, IParsable { #else public List DirectReports { get; set; } #endif - /// The name displayed in the address book for the user. This is usually the combination of the user's first name, middle initial and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values), $orderby, and $search. + /// The name displayed in the address book for the user. This is usually the combination of the user's first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values), $orderby, and $search. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? DisplayName { get; set; } @@ -262,7 +262,7 @@ public class User : DirectoryObject, IParsable { #else public EmployeeExperienceUser EmployeeExperience { get; set; } #endif - /// The date and time when the user was hired or will start work in case of a future hire. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in). + /// The date and time when the user was hired or will start work in a future hire. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in). public DateTimeOffset? EmployeeHireDate { get; set; } /// The employee identifier assigned to the user by the organization. The maximum length is 16 characters. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -340,9 +340,9 @@ public class User : DirectoryObject, IParsable { #else public string GivenName { get; set; } #endif - /// The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs. + /// The hire date of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs. public DateTimeOffset? HireDate { get; set; } - /// Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Returned only on $select. Supports $filter (eq) including on null values, only where the signInType is not userPrincipalName. + /// Represents the identities that can be used to sign in to this user account. Microsoft (also known as a local account), organizations, or social identity providers such as Facebook, Google, and Microsoft can provide identity and tie it to a user account. It may contain multiple items with the same signInType value. Returned only on $select. Supports $filter (eq) including on null values, only where the signInType is not userPrincipalName. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? Identities { get; set; } @@ -350,7 +350,7 @@ public class User : DirectoryObject, IParsable { #else public List Identities { get; set; } #endif - /// The instant message voice over IP (VOIP) session initiation protocol (SIP) addresses for the user. Read-only. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith). + /// The instant message voice-over IP (VOIP) session initiation protocol (SIP) addresses for the user. Read-only. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? ImAddresses { get; set; } @@ -400,9 +400,9 @@ public class User : DirectoryObject, IParsable { #else public List JoinedTeams { get; set; } #endif - /// The time when this Microsoft Entra user last changed their password or when their password was created, whichever date the latest action was performed. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned only on $select. + /// The time when this Microsoft Entra user last changed their password or when their password was created, whichever date the latest action was performed. The date and time information uses ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned only on $select. public DateTimeOffset? LastPasswordChangeDateTime { get; set; } - /// Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult and Adult. Refer to the legal age group property definitions for further information. Returned only on $select. + /// Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult, and Adult. Refer to the legal age group property definitions for further information. Returned only on $select. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? LegalAgeGroupClassification { get; set; } @@ -426,7 +426,7 @@ public class User : DirectoryObject, IParsable { #else public List LicenseDetails { get; set; } #endif - /// The SMTP address for the user, for example, jeff@contoso.onmicrosoft.com. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. This property can't contain accent characters. NOTE: We don't recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values). + /// The SMTP address for the user, for example, jeff@contoso.onmicrosoft.com. Changes to this property update the user's proxyAddresses collection to include the value as an SMTP address. This property can't contain accent characters. NOTE: We don't recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? Mail { get; set; } @@ -434,7 +434,7 @@ public class User : DirectoryObject, IParsable { #else public string Mail { get; set; } #endif - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ApiSdk.Models.MailboxSettings? MailboxSettings { get; set; } @@ -498,7 +498,7 @@ public class User : DirectoryObject, IParsable { #else public List Messages { get; set; } #endif - /// The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Maximum length is 64 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) and $search. + /// The primary cellular telephone number for the user. Read-only for users synced from the on-premises directory. Maximum length is 64 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) and $search. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? MobilePhone { get; set; } @@ -506,7 +506,7 @@ public class User : DirectoryObject, IParsable { #else public string MobilePhone { get; set; } #endif - /// The URL for the user's personal site. Returned only on $select. + /// The URL for the user's site. Returned only on $select. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? MySite { get; set; } @@ -538,7 +538,7 @@ public class User : DirectoryObject, IParsable { #else public ApiSdk.Models.Onenote Onenote { get; set; } #endif - /// Information about a meeting, including the URL used to join a meeting, the attendees' list, and the description. + /// Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? OnlineMeetings { get; set; } @@ -562,7 +562,7 @@ public class User : DirectoryObject, IParsable { #else public string OnPremisesDomainName { get; set; } #endif - /// Contains extensionAttributes1-15 for the user. These extension attributes are also known as Exchange custom attributes 1-15. For an onPremisesSyncEnabled user, the source of authority for this set of properties is the on-premises and is read-only. For a cloud-only user (where onPremisesSyncEnabled is false), these properties can be set during creation or update of a user object. For a cloud-only user previously synced from on-premises Active Directory, these properties are read-only in Microsoft Graph but can be fully managed through the Exchange Admin Center or the Exchange Online V2 module in PowerShell. Returned only on $select. Supports $filter (eq, ne, not, in). + /// Contains extensionAttributes1-15 for the user. These extension attributes are also known as Exchange custom attributes 1-15. For an onPremisesSyncEnabled user, the source of authority for this set of properties is the on-premises and is read-only. For a cloud-only user (where onPremisesSyncEnabled is false), these properties can be set during the creation or update of a user object. For a cloud-only user previously synced from on-premises Active Directory, these properties are read-only in Microsoft Graph but can be fully managed through the Exchange Admin Center or the Exchange Online V2 module in PowerShell. Returned only on $select. Supports $filter (eq, ne, not, in). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ApiSdk.Models.OnPremisesExtensionAttributes? OnPremisesExtensionAttributes { get; set; } @@ -578,7 +578,7 @@ public class User : DirectoryObject, IParsable { #else public string OnPremisesImmutableId { get; set; } #endif - /// Indicates the last time at which the object was synced with the on-premises directory; for example: 2013-02-16T03:04:54Z. 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. Read-only. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in). + /// Indicates the last time at which the object was synced with the on-premises directory; for example: 2013-02-16T03:04:54Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in). public DateTimeOffset? OnPremisesLastSyncDateTime { get; set; } /// Errors when using Microsoft synchronization product during provisioning. Returned only on $select. Supports $filter (eq, not, ge, le). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -677,6 +677,14 @@ public class User : DirectoryObject, IParsable { #nullable restore #else public List People { get; set; } +#endif + /// List all resource-specific permission grants of a user. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? PermissionGrants { get; set; } +#nullable restore +#else + public List PermissionGrants { get; set; } #endif /// The user's profile photo. Read-only. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -718,7 +726,7 @@ public class User : DirectoryObject, IParsable { #else public string PreferredDataLocation { get; set; } #endif - /// The preferred language for the user. The preferred language format is based on RFC 4646. The name is a combination of an ISO 639 two-letter lowercase culture code associated with the language, and an ISO 3166 two-letter uppercase subculture code associated with the country or region. Example: 'en-US', or 'es-ES'. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) + /// The preferred language for the user. The preferred language format is based on RFC 4646. The name is a combination of an ISO 639 two-letter lowercase culture code associated with the language and an ISO 3166 two-letter uppercase subculture code associated with the country or region. Example: 'en-US', or 'es-ES'. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? PreferredLanguage { get; set; } @@ -806,7 +814,7 @@ public class User : DirectoryObject, IParsable { #else public string SecurityIdentifier { get; set; } #endif - /// The serviceProvisioningErrors property + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? ServiceProvisioningErrors { get; set; } @@ -832,7 +840,7 @@ public class User : DirectoryObject, IParsable { #else public ApiSdk.Models.SignInActivity SignInActivity { get; set; } #endif - /// Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application needs to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use revokeSignInSessions to reset. Returned only on $select. + /// Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application needs to acquire a new refresh token by requesting the authorized endpoint. Read-only. Use revokeSignInSessions to reset. Returned only on $select. public DateTimeOffset? SignInSessionsValidFromDateTime { get; set; } /// A list for the user to enumerate their skills. Returned only on $select. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -890,7 +898,7 @@ public class User : DirectoryObject, IParsable { #else public List TransitiveMemberOf { get; set; } #endif - /// A two letter country code (ISO standard 3166). Required for users that are assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). + /// A two-letter country code (ISO standard 3166). Required for users that are assigned licenses due to legal requirements to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? UsageLocation { get; set; } @@ -898,7 +906,7 @@ public class User : DirectoryObject, IParsable { #else public string UsageLocation { get; set; } #endif - /// The user principal name (UPN) of the user. The UPN is an Internet-style sign-in name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, ' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. + /// The user principal name (UPN) of the user. The UPN is an Internet-style sign-in name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, ' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? UserPrincipalName { get; set; } @@ -1026,6 +1034,7 @@ public override IDictionary> GetFieldDeserializers() {"passwordProfile", n => { PasswordProfile = n.GetObjectValue(ApiSdk.Models.PasswordProfile.CreateFromDiscriminatorValue); } }, {"pastProjects", n => { PastProjects = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, {"people", n => { People = n.GetCollectionOfObjectValues(Person.CreateFromDiscriminatorValue)?.ToList(); } }, + {"permissionGrants", n => { PermissionGrants = n.GetCollectionOfObjectValues(ResourceSpecificPermissionGrant.CreateFromDiscriminatorValue)?.ToList(); } }, {"photo", n => { Photo = n.GetObjectValue(ProfilePhoto.CreateFromDiscriminatorValue); } }, {"photos", n => { Photos = n.GetCollectionOfObjectValues(ProfilePhoto.CreateFromDiscriminatorValue)?.ToList(); } }, {"planner", n => { Planner = n.GetObjectValue(PlannerUser.CreateFromDiscriminatorValue); } }, @@ -1159,6 +1168,7 @@ public override void Serialize(ISerializationWriter writer) { writer.WriteObjectValue("passwordProfile", PasswordProfile); writer.WriteCollectionOfPrimitiveValues("pastProjects", PastProjects); writer.WriteCollectionOfObjectValues("people", People); + writer.WriteCollectionOfObjectValues("permissionGrants", PermissionGrants); writer.WriteObjectValue("photo", Photo); writer.WriteCollectionOfObjectValues("photos", Photos); writer.WriteObjectValue("planner", Planner); diff --git a/src/generated/Models/VirtualEvent.cs b/src/generated/Models/VirtualEvent.cs index aa0d3c6ac2..393322f980 100644 --- a/src/generated/Models/VirtualEvent.cs +++ b/src/generated/Models/VirtualEvent.cs @@ -6,7 +6,7 @@ using System; namespace ApiSdk.Models { public class VirtualEvent : Entity, IParsable { - /// The createdBy property + /// Identity information for the creator of the virtual event. Inherited from virtualEvent. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public CommunicationsIdentitySet? CreatedBy { get; set; } @@ -14,7 +14,7 @@ public class VirtualEvent : Entity, IParsable { #else public CommunicationsIdentitySet CreatedBy { get; set; } #endif - /// The description property + /// Description of the virtual event. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public ItemBody? Description { get; set; } @@ -22,7 +22,7 @@ public class VirtualEvent : Entity, IParsable { #else public ItemBody Description { get; set; } #endif - /// The displayName property + /// Display name of the virtual event. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? DisplayName { get; set; } @@ -30,7 +30,7 @@ public class VirtualEvent : Entity, IParsable { #else public string DisplayName { get; set; } #endif - /// The endDateTime property + /// End time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public DateTimeTimeZone? EndDateTime { get; set; } @@ -38,7 +38,7 @@ public class VirtualEvent : Entity, IParsable { #else public DateTimeTimeZone EndDateTime { get; set; } #endif - /// The sessions property + /// Sessions for the virtual event. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? Sessions { get; set; } @@ -46,7 +46,7 @@ public class VirtualEvent : Entity, IParsable { #else public List Sessions { get; set; } #endif - /// The startDateTime property + /// Start time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public DateTimeTimeZone? StartDateTime { get; set; } @@ -54,7 +54,7 @@ public class VirtualEvent : Entity, IParsable { #else public DateTimeTimeZone StartDateTime { get; set; } #endif - /// The status property + /// Status of the virtual event. The possible values are: draft, published, canceled, unknownFutureValue. public VirtualEventStatus? Status { get; set; } /// /// Creates a new instance of the appropriate class based on discriminator value diff --git a/src/generated/Models/VirtualEventRegistration.cs b/src/generated/Models/VirtualEventRegistration.cs index e7043ff9d2..2b020f492a 100644 --- a/src/generated/Models/VirtualEventRegistration.cs +++ b/src/generated/Models/VirtualEventRegistration.cs @@ -6,9 +6,9 @@ using System; namespace ApiSdk.Models { public class VirtualEventRegistration : Entity, IParsable { - /// The cancelationDateTime property + /// Date and time when the registrant cancels their registration for the virtual event. Only appears when applicable. 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. public DateTimeOffset? CancelationDateTime { get; set; } - /// The email property + /// Email address of the registrant. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? Email { get; set; } @@ -16,7 +16,7 @@ public class VirtualEventRegistration : Entity, IParsable { #else public string Email { get; set; } #endif - /// The firstName property + /// First name of the registrant. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? FirstName { get; set; } @@ -24,7 +24,7 @@ public class VirtualEventRegistration : Entity, IParsable { #else public string FirstName { get; set; } #endif - /// The lastName property + /// Last name of the registrant. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? LastName { get; set; } @@ -32,9 +32,9 @@ public class VirtualEventRegistration : Entity, IParsable { #else public string LastName { get; set; } #endif - /// The registrationDateTime property + /// Date and time when the registrant registers for the virtual event. 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. public DateTimeOffset? RegistrationDateTime { get; set; } - /// The registrationQuestionAnswers property + /// The registrant's answer to the registration questions. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? RegistrationQuestionAnswers { get; set; } @@ -42,9 +42,9 @@ public class VirtualEventRegistration : Entity, IParsable { #else public List RegistrationQuestionAnswers { get; set; } #endif - /// The status property + /// Registration status of the registrant. Read-only. public VirtualEventAttendeeRegistrationStatus? Status { get; set; } - /// The userId property + /// The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? UserId { get; set; } diff --git a/src/generated/Models/VirtualEventRegistrationQuestionAnswer.cs b/src/generated/Models/VirtualEventRegistrationQuestionAnswer.cs index 2bceae97b9..a847f24416 100644 --- a/src/generated/Models/VirtualEventRegistrationQuestionAnswer.cs +++ b/src/generated/Models/VirtualEventRegistrationQuestionAnswer.cs @@ -8,9 +8,9 @@ namespace ApiSdk.Models { public class VirtualEventRegistrationQuestionAnswer : IAdditionalDataHolder, IParsable { /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. public IDictionary AdditionalData { get; set; } - /// The booleanValue property + /// Boolean answer of the virtual event registration question. Only appears when answerInputType is boolean. public bool? BooleanValue { get; set; } - /// The displayName property + /// Display name of the registration question. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? DisplayName { get; set; } @@ -18,7 +18,7 @@ public class VirtualEventRegistrationQuestionAnswer : IAdditionalDataHolder, IPa #else public string DisplayName { get; set; } #endif - /// The multiChoiceValues property + /// Collection of text answer of the virtual event registration question. Only appears when answerInputType is multiChoice. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? MultiChoiceValues { get; set; } @@ -34,7 +34,7 @@ public class VirtualEventRegistrationQuestionAnswer : IAdditionalDataHolder, IPa #else public string OdataType { get; set; } #endif - /// The questionId property + /// id of the virtual event registration question. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? QuestionId { get; set; } @@ -42,7 +42,7 @@ public class VirtualEventRegistrationQuestionAnswer : IAdditionalDataHolder, IPa #else public string QuestionId { get; set; } #endif - /// The value property + /// Text answer of the virtual event registration question. Appears when answerInputType is text, multilineText or singleChoice. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? Value { get; set; } diff --git a/src/generated/Models/VirtualEventSession.cs b/src/generated/Models/VirtualEventSession.cs index f20f363147..ceae0ba568 100644 --- a/src/generated/Models/VirtualEventSession.cs +++ b/src/generated/Models/VirtualEventSession.cs @@ -6,7 +6,7 @@ using System; namespace ApiSdk.Models { public class VirtualEventSession : OnlineMeetingBase, IParsable { - /// The endDateTime property + /// The virtual event session end time. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public DateTimeTimeZone? EndDateTime { get; set; } @@ -14,7 +14,7 @@ public class VirtualEventSession : OnlineMeetingBase, IParsable { #else public DateTimeTimeZone EndDateTime { get; set; } #endif - /// The startDateTime property + /// The virtual event session start time. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public DateTimeTimeZone? StartDateTime { get; set; } diff --git a/src/generated/Models/VirtualEventWebinar.cs b/src/generated/Models/VirtualEventWebinar.cs index 2b84b282bd..0b4534c06a 100644 --- a/src/generated/Models/VirtualEventWebinar.cs +++ b/src/generated/Models/VirtualEventWebinar.cs @@ -6,9 +6,9 @@ using System; namespace ApiSdk.Models { public class VirtualEventWebinar : VirtualEvent, IParsable { - /// The audience property + /// To whom the webinar is visible. public MeetingAudience? Audience { get; set; } - /// The coOrganizers property + /// Identity information of coorganizers of the webinar. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? CoOrganizers { get; set; } @@ -16,7 +16,7 @@ public class VirtualEventWebinar : VirtualEvent, IParsable { #else public List CoOrganizers { get; set; } #endif - /// The registrations property + /// Registration records of the webinar. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? Registrations { get; set; } diff --git a/src/generated/Organization/Item/OrganizationItemRequestBuilder.cs b/src/generated/Organization/Item/OrganizationItemRequestBuilder.cs index f52179bde7..5b4f3df85e 100644 --- a/src/generated/Organization/Item/OrganizationItemRequestBuilder.cs +++ b/src/generated/Organization/Item/OrganizationItemRequestBuilder.cs @@ -172,12 +172,12 @@ public Command BuildExtensionsNavCommand() { return command; } /// - /// Get the properties and relationships of the currently authenticated organization. Since the organization resource supports extensions, you can also use the GET operation to get custom properties and extension data in an organization instance. - /// Find more info here + /// Read properties and relationships of the organization object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get the properties and relationships of the currently authenticated organization. Since the organization resource supports extensions, you can also use the GET operation to get custom properties and extension data in an organization instance.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/organization-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the organization object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-organization-get?view=graph-rest-1.0"; var organizationIdOption = new Option("--organization-id", description: "The unique identifier of organization") { }; organizationIdOption.IsRequired = true; @@ -361,7 +361,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get the properties and relationships of the currently authenticated organization. Since the organization resource supports extensions, you can also use the GET operation to get custom properties and extension data in an organization instance. + /// Read properties and relationships of the organization object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -395,7 +395,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.Organization b return requestInfo; } /// - /// Get the properties and relationships of the currently authenticated organization. Since the organization resource supports extensions, you can also use the GET operation to get custom properties and extension data in an organization instance. + /// Read properties and relationships of the organization object. /// public class OrganizationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Organization/OrganizationRequestBuilder.cs b/src/generated/Organization/OrganizationRequestBuilder.cs index d81f3fe20a..7c01b8589e 100644 --- a/src/generated/Organization/OrganizationRequestBuilder.cs +++ b/src/generated/Organization/OrganizationRequestBuilder.cs @@ -150,12 +150,12 @@ public Command BuildGetByIdsNavCommand() { return command; } /// - /// List properties and relationships of the organization objects. - /// Find more info here + /// Retrieve a list of organization objects. There's only one organization object in the collection. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the organization objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-organization-list?view=graph-rest-1.0"; + command.Description = "Retrieve a list of organization objects. There's only one organization object in the collection.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -270,7 +270,7 @@ public OrganizationRequestBuilder(Dictionary pathParameters) : b public OrganizationRequestBuilder(string rawUrl) : base("{+baseurl}/organization{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List properties and relationships of the organization objects. + /// Retrieve a list of organization objects. There's only one organization object in the collection. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -304,7 +304,7 @@ public RequestInformation ToPostRequestInformation(ApiSdk.Models.Organization bo return requestInfo; } /// - /// List properties and relationships of the organization objects. + /// Retrieve a list of organization objects. There's only one organization object in the collection. /// public class OrganizationRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Print/Shares/Item/AllowedGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Print/Shares/Item/AllowedGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index e8efc3171f..9cb8a00e73 100644 --- a/src/generated/Print/Shares/Item/AllowedGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Print/Shares/Item/AllowedGroups/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var printerShareIdOption = new Option("--printer-share-id", description: "The unique identifier of printerShare") { }; printerShareIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/print/shares/{printerShare%2Did}/allowedGroups/{group%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Print/Shares/Item/AllowedUsers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Print/Shares/Item/AllowedUsers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs index 9a1f9ef395..a9d4ffd8d4 100644 --- a/src/generated/Print/Shares/Item/AllowedUsers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Print/Shares/Item/AllowedUsers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Print.Shares.Item.AllowedUsers.Item.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var printerShareIdOption = new Option("--printer-share-id", description: "The unique identifier of printerShare") { }; printerShareIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/print/shares/{printerShare%2Did}/allowedUsers/{user%2Did}/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Print/Shares/Item/AllowedUsers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Print/Shares/Item/AllowedUsers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 5ce8c8e25c..af0534e873 100644 --- a/src/generated/Print/Shares/Item/AllowedUsers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Print/Shares/Item/AllowedUsers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var printerShareIdOption = new Option("--printer-share-id", description: "The unique identifier of printerShare") { }; printerShareIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/print/shares/{printerShare%2Did}/allowedUsers/{user%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs index e1b82713f7..5309770fd6 100644 --- a/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Privacy.SubjectRightsRequests.Item.Approvers.Item.MailboxSettin /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -145,7 +145,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/approvers/{user%2Did}/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] @@ -181,7 +181,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 3038035103..b596f42bdb 100644 --- a/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Privacy/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,12 +36,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -153,7 +153,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/approvers/{user%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] @@ -170,7 +170,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs index 4f8e64c7df..416483c40b 100644 --- a/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Privacy.SubjectRightsRequests.Item.Collaborators.Item.MailboxSe /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -145,7 +145,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/collaborators/{user%2Did}/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] @@ -181,7 +181,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 8b6b281289..dc20fdd493 100644 --- a/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Privacy/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,12 +36,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -153,7 +153,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/collaborators/{user%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. [Obsolete("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 on 2022-03-22 and will be removed 2025-03-20")] @@ -170,7 +170,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/UnifiedGroupSources/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/UnifiedGroupSources/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index f47a4eedd7..8761e21dd2 100644 --- a/src/generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/UnifiedGroupSources/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/UnifiedGroupSources/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var ediscoveryCaseIdOption = new Option("--ediscovery-case-id", description: "The unique identifier of ediscoveryCase") { }; ediscoveryCaseIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/custodians/{ediscoveryCustodian%2Did}/unifiedGroupSources/{unifiedGroupSource%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs index ba378b3d90..d414730f59 100644 --- a/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Security.SubjectRightsRequests.Item.Approvers.Item.MailboxSetti /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/approvers/{user%2Did}/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 052618dfeb..549e9fc0e8 100644 --- a/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Security/SubjectRightsRequests/Item/Approvers/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/approvers/{user%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs index c250e4c722..d29e329a23 100644 --- a/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Security.SubjectRightsRequests.Item.Collaborators.Item.MailboxS /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/collaborators/{user%2Did}/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 99aba41a72..d4d46ae2ba 100644 --- a/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Security/SubjectRightsRequests/Item/Collaborators/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var subjectRightsRequestIdOption = new Option("--subject-rights-request-id", description: "The unique identifier of subjectRightsRequest") { }; subjectRightsRequestIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/collaborators/{user%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Shares/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Shares/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 54c756129f..c18edae49f 100644 --- a/src/generated/Shares/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Shares/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Shares.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Shares/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Shares/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 68eed89dc3..34f6b7fca1 100644 --- a/src/generated/Shares/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Shares/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Shares/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Shares/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index b276f99729..de4bf68725 100644 --- a/src/generated/Shares/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Shares/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Shares.Item.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Shares/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Shares/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index fe56618505..8fc022ca1a 100644 --- a/src/generated/Shares/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Shares/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Shares/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Shares/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index fe916708a4..4330fd4994 100644 --- a/src/generated/Shares/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Shares.Item.List.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Shares/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Shares/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 4f9aa6bc71..ceacfbb49a 100644 --- a/src/generated/Shares/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Shares/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Shares/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 46c78b354c..312f6b9ac1 100644 --- a/src/generated/Shares/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Shares.Item.List.Items.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Shares/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Shares/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index e87f9d8544..6907ed51ec 100644 --- a/src/generated/Shares/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index d865152c45..93f74a7f32 100644 --- a/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Shares.Item.List.Items.Item.LastModifiedByUser.MailboxSettings /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 9dc62243ce..58736a10ef 100644 --- a/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Shares/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Shares/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index d231b24c3e..911bd139b3 100644 --- a/src/generated/Shares/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Shares.Item.List.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Shares/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Shares/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 0b7894da3f..3e2db651dd 100644 --- a/src/generated/Shares/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Shares/Item/List/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var sharedDriveItemIdOption = new Option("--shared-drive-item-id", description: "The unique identifier of sharedDriveItem") { }; sharedDriveItemIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/shares/{sharedDriveItem%2Did}/list/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index a944459c11..beb0faa3ba 100644 --- a/src/generated/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Sites/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Sites.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 56f5ec5496..38a0b4b951 100644 --- a/src/generated/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Sites/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index d04b409cca..c5def77af1 100644 --- a/src/generated/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Sites/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Sites.Item.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 8e4d5207e3..aa7bd68e53 100644 --- a/src/generated/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Sites/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 807a6e69d0..9bc846ab77 100644 --- a/src/generated/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Sites.Item.Lists.Item.CreatedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index b0854683e7..039814a0a5 100644 --- a/src/generated/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 54a72f0c6b..686890c045 100644 --- a/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Sites.Item.Lists.Item.Items.Item.CreatedByUser.MailboxSettings /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/createdByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 994ed9d80f..f99af706d6 100644 --- a/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/Items/Item/CreatedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/createdByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 3cd189dca5..a61df7a9c9 100644 --- a/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Sites.Item.Lists.Item.Items.Item.LastModifiedByUser.MailboxSett /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -155,7 +155,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -189,7 +189,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 3f70c65441..54f33d99ce 100644 --- a/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/Items/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -158,7 +158,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -174,7 +174,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs index 681a630551..fa1bdb3a12 100644 --- a/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Sites.Item.Lists.Item.LastModifiedByUser.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -143,7 +143,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/lastModifiedByUser/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -177,7 +177,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 594167fcde..b2c2efe907 100644 --- a/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Sites/Item/Lists/Item/LastModifiedByUser/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var siteIdOption = new Option("--site-id", description: "The unique identifier of site") { }; siteIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/lastModifiedByUser/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs index 19841e90a8..3e2c8f9dee 100644 --- a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs @@ -105,11 +105,11 @@ public Command BuildCreateCommand() { return command; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get attendanceReports from solutions"; + command.Description = "The attendance reports of an online meeting. Read-only."; var virtualEventIdOption = new Option("--virtual-event-id", description: "The unique identifier of virtualEvent") { }; virtualEventIdOption.IsRequired = true; @@ -221,7 +221,7 @@ public AttendanceReportsRequestBuilder(Dictionary pathParameters public AttendanceReportsRequestBuilder(string rawUrl) : base("{+baseurl}/solutions/virtualEvents/events/{virtualEvent%2Did}/sessions/{virtualEventSession%2Did}/attendanceReports{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -255,7 +255,7 @@ public RequestInformation ToPostRequestInformation(MeetingAttendanceReport body, return requestInfo; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public class AttendanceReportsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs index 62ca3eaedf..9e5b049f71 100644 --- a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs @@ -91,11 +91,11 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get attendanceReports from solutions"; + command.Description = "The attendance reports of an online meeting. Read-only."; var virtualEventIdOption = new Option("--virtual-event-id", description: "The unique identifier of virtualEvent") { }; virtualEventIdOption.IsRequired = true; @@ -242,7 +242,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -276,7 +276,7 @@ public RequestInformation ToPatchRequestInformation(MeetingAttendanceReport body return requestInfo; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public class MeetingAttendanceReportItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs index 9e25080ee3..cd657eb7b2 100644 --- a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs @@ -85,11 +85,11 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get sessions from solutions"; + command.Description = "Sessions for the virtual event."; var virtualEventIdOption = new Option("--virtual-event-id", description: "The unique identifier of virtualEvent") { }; virtualEventIdOption.IsRequired = true; @@ -224,7 +224,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get sessions from solutions + /// Sessions for the virtual event. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -258,7 +258,7 @@ public RequestInformation ToPatchRequestInformation(VirtualEventSession body, Ac return requestInfo; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public class VirtualEventSessionItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/SessionsRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/SessionsRequestBuilder.cs index 764a2a74a6..3561ca1a0c 100644 --- a/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/SessionsRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Events/Item/Sessions/SessionsRequestBuilder.cs @@ -99,11 +99,11 @@ public Command BuildCreateCommand() { return command; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get sessions from solutions"; + command.Description = "Sessions for the virtual event."; var virtualEventIdOption = new Option("--virtual-event-id", description: "The unique identifier of virtualEvent") { }; virtualEventIdOption.IsRequired = true; @@ -209,7 +209,7 @@ public SessionsRequestBuilder(Dictionary pathParameters) : base( public SessionsRequestBuilder(string rawUrl) : base("{+baseurl}/solutions/virtualEvents/events/{virtualEvent%2Did}/sessions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -243,7 +243,7 @@ public RequestInformation ToPostRequestInformation(VirtualEventSession body, Act return requestInfo; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public class SessionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/Item/VirtualEventRegistrationItemRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/Item/VirtualEventRegistrationItemRequestBuilder.cs index 9704d6e28e..a3958976d5 100644 --- a/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/Item/VirtualEventRegistrationItemRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/Item/VirtualEventRegistrationItemRequestBuilder.cs @@ -59,11 +59,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get registrations from solutions + /// Get the properties and relationships of a virtualEventRegistration object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get registrations from solutions"; + command.Description = "Get the properties and relationships of a virtualEventRegistration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0"; var virtualEventWebinarIdOption = new Option("--virtual-event-webinar-id", description: "The unique identifier of virtualEventWebinar") { }; virtualEventWebinarIdOption.IsRequired = true; @@ -198,7 +199,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get registrations from solutions + /// Get the properties and relationships of a virtualEventRegistration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -232,7 +233,7 @@ public RequestInformation ToPatchRequestInformation(VirtualEventRegistration bod return requestInfo; } /// - /// Get registrations from solutions + /// Get the properties and relationships of a virtualEventRegistration object. /// public class VirtualEventRegistrationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/RegistrationsRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/RegistrationsRequestBuilder.cs index 5568b83786..fea60fb89b 100644 --- a/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/RegistrationsRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Webinars/Item/Registrations/RegistrationsRequestBuilder.cs @@ -97,11 +97,12 @@ public Command BuildCreateCommand() { return command; } /// - /// Get registrations from solutions + /// Get a list of all registration records of a webinar. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get registrations from solutions"; + command.Description = "Get a list of all registration records of a webinar.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/virtualeventwebinar-list-registrations?view=graph-rest-1.0"; var virtualEventWebinarIdOption = new Option("--virtual-event-webinar-id", description: "The unique identifier of virtualEventWebinar") { }; virtualEventWebinarIdOption.IsRequired = true; @@ -207,7 +208,7 @@ public RegistrationsRequestBuilder(Dictionary pathParameters) : public RegistrationsRequestBuilder(string rawUrl) : base("{+baseurl}/solutions/virtualEvents/webinars/{virtualEventWebinar%2Did}/registrations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get registrations from solutions + /// Get a list of all registration records of a webinar. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -241,7 +242,7 @@ public RequestInformation ToPostRequestInformation(VirtualEventRegistration body return requestInfo; } /// - /// Get registrations from solutions + /// Get a list of all registration records of a webinar. /// public class RegistrationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs index ed13538904..18baf30b22 100644 --- a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs @@ -105,11 +105,11 @@ public Command BuildCreateCommand() { return command; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get attendanceReports from solutions"; + command.Description = "The attendance reports of an online meeting. Read-only."; var virtualEventWebinarIdOption = new Option("--virtual-event-webinar-id", description: "The unique identifier of virtualEventWebinar") { }; virtualEventWebinarIdOption.IsRequired = true; @@ -221,7 +221,7 @@ public AttendanceReportsRequestBuilder(Dictionary pathParameters public AttendanceReportsRequestBuilder(string rawUrl) : base("{+baseurl}/solutions/virtualEvents/webinars/{virtualEventWebinar%2Did}/sessions/{virtualEventSession%2Did}/attendanceReports{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -255,7 +255,7 @@ public RequestInformation ToPostRequestInformation(MeetingAttendanceReport body, return requestInfo; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public class AttendanceReportsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs index af055116f7..8870aa30c9 100644 --- a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs @@ -91,11 +91,11 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get attendanceReports from solutions"; + command.Description = "The attendance reports of an online meeting. Read-only."; var virtualEventWebinarIdOption = new Option("--virtual-event-webinar-id", description: "The unique identifier of virtualEventWebinar") { }; virtualEventWebinarIdOption.IsRequired = true; @@ -242,7 +242,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -276,7 +276,7 @@ public RequestInformation ToPatchRequestInformation(MeetingAttendanceReport body return requestInfo; } /// - /// Get attendanceReports from solutions + /// The attendance reports of an online meeting. Read-only. /// public class MeetingAttendanceReportItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs index bd7f67c0e3..965d7d55bc 100644 --- a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/Item/VirtualEventSessionItemRequestBuilder.cs @@ -85,11 +85,11 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get sessions from solutions"; + command.Description = "Sessions for the virtual event."; var virtualEventWebinarIdOption = new Option("--virtual-event-webinar-id", description: "The unique identifier of virtualEventWebinar") { }; virtualEventWebinarIdOption.IsRequired = true; @@ -224,7 +224,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get sessions from solutions + /// Sessions for the virtual event. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -258,7 +258,7 @@ public RequestInformation ToPatchRequestInformation(VirtualEventSession body, Ac return requestInfo; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public class VirtualEventSessionItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/SessionsRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/SessionsRequestBuilder.cs index c7f6f8210a..c343ae6a93 100644 --- a/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/SessionsRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Webinars/Item/Sessions/SessionsRequestBuilder.cs @@ -99,11 +99,11 @@ public Command BuildCreateCommand() { return command; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get sessions from solutions"; + command.Description = "Sessions for the virtual event."; var virtualEventWebinarIdOption = new Option("--virtual-event-webinar-id", description: "The unique identifier of virtualEventWebinar") { }; virtualEventWebinarIdOption.IsRequired = true; @@ -209,7 +209,7 @@ public SessionsRequestBuilder(Dictionary pathParameters) : base( public SessionsRequestBuilder(string rawUrl) : base("{+baseurl}/solutions/virtualEvents/webinars/{virtualEventWebinar%2Did}/sessions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -243,7 +243,7 @@ public RequestInformation ToPostRequestInformation(VirtualEventSession body, Act return requestInfo; } /// - /// Get sessions from solutions + /// Sessions for the virtual event. /// public class SessionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Solutions/VirtualEvents/Webinars/WebinarsRequestBuilder.cs b/src/generated/Solutions/VirtualEvents/Webinars/WebinarsRequestBuilder.cs index 516fe43517..174a678fe6 100644 --- a/src/generated/Solutions/VirtualEvents/Webinars/WebinarsRequestBuilder.cs +++ b/src/generated/Solutions/VirtualEvents/Webinars/WebinarsRequestBuilder.cs @@ -126,11 +126,12 @@ public Command BuildGetByUserRoleWithRoleRbCommand() { return command; } /// - /// Get webinars from solutions + /// Get the list of all virtualEventWebinar objects created in the tenant. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get webinars from solutions"; + command.Description = "Get the list of all virtualEventWebinar objects created in the tenant.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/virtualeventsroot-list-webinars?view=graph-rest-1.0"; var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -230,7 +231,7 @@ public WebinarsRequestBuilder(Dictionary pathParameters) : base( public WebinarsRequestBuilder(string rawUrl) : base("{+baseurl}/solutions/virtualEvents/webinars{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get webinars from solutions + /// Get the list of all virtualEventWebinar objects created in the tenant. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -264,7 +265,7 @@ public RequestInformation ToPostRequestInformation(VirtualEventWebinar body, Act return requestInfo; } /// - /// Get webinars from solutions + /// Get the list of all virtualEventWebinar objects created in the tenant. /// public class WebinarsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index 5d3694e76c..e3c6eea2d6 100644 --- a/src/generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Teams.Item.Channels.Item.Members.Item { /// public class ConversationMemberItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Delete a conversationMember from a channel. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0"; + command.Description = "Delete a conversationMember from a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0"; var teamIdOption = new Option("--team-id", description: "The unique identifier of team") { }; teamIdOption.IsRequired = true; @@ -129,12 +129,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the role of a conversationMember in a team or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0"; + command.Description = "Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0"; var teamIdOption = new Option("--team-id", description: "The unique identifier of team") { }; teamIdOption.IsRequired = true; @@ -203,7 +203,7 @@ public ConversationMemberItemRequestBuilder(Dictionary pathParam public ConversationMemberItemRequestBuilder(string rawUrl) : base("{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Delete a conversationMember from a channel. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -235,7 +235,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs index 08effd2118..bc2d1d3616 100644 --- a/src/generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -64,12 +64,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0"; + command.Description = "Add a conversationMember to a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0"; var teamIdOption = new Option("--team-id", description: "The unique identifier of team") { }; teamIdOption.IsRequired = true; @@ -253,7 +253,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Teams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Teams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index d93485c6a5..3bcc3677b9 100644 --- a/src/generated/Teams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Teams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var teamIdOption = new Option("--team-id", description: "The unique identifier of team") { }; teamIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/teams/{team%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs index b51bd0ff7b..aa1e609277 100644 --- a/src/generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Teams.Item.PrimaryChannel.Members.Item { /// public class ConversationMemberItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Delete a conversationMember from a channel. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0"; + command.Description = "Delete a conversationMember from a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0"; var teamIdOption = new Option("--team-id", description: "The unique identifier of team") { }; teamIdOption.IsRequired = true; @@ -117,12 +117,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the role of a conversationMember in a team or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0"; + command.Description = "Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0"; var teamIdOption = new Option("--team-id", description: "The unique identifier of team") { }; teamIdOption.IsRequired = true; @@ -185,7 +185,7 @@ public ConversationMemberItemRequestBuilder(Dictionary pathParam public ConversationMemberItemRequestBuilder(string rawUrl) : base("{+baseurl}/teams/{team%2Did}/primaryChannel/members/{conversationMember%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Delete a conversationMember from a channel. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -217,7 +217,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs index ec44e66718..1d8500ce4b 100644 --- a/src/generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs +++ b/src/generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs @@ -64,12 +64,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0"; + command.Description = "Add a conversationMember to a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0"; var teamIdOption = new Option("--team-id", description: "The unique identifier of team") { }; teamIdOption.IsRequired = true; @@ -241,7 +241,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Teams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/generated/Teams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs index 1214b3ccd1..f94a8d03b1 100644 --- a/src/generated/Teams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs +++ b/src/generated/Teams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs @@ -34,6 +34,14 @@ public class SendActivityNotificationPostRequestBody : IAdditionalDataHolder, IP #nullable restore #else public TeamworkNotificationRecipient Recipient { get; set; } +#endif + /// The teamsAppId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TeamsAppId { get; set; } +#nullable restore +#else + public string TeamsAppId { get; set; } #endif /// The templateParameters property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -74,6 +82,7 @@ public virtual IDictionary> GetFieldDeserializers() { {"chainId", n => { ChainId = n.GetLongValue(); } }, {"previewText", n => { PreviewText = n.GetObjectValue(ItemBody.CreateFromDiscriminatorValue); } }, {"recipient", n => { Recipient = n.GetObjectValue(TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } }, + {"teamsAppId", n => { TeamsAppId = n.GetStringValue(); } }, {"templateParameters", n => { TemplateParameters = n.GetCollectionOfObjectValues(ApiSdk.Models.KeyValuePair.CreateFromDiscriminatorValue)?.ToList(); } }, {"topic", n => { Topic = n.GetObjectValue(TeamworkActivityTopic.CreateFromDiscriminatorValue); } }, }; @@ -88,6 +97,7 @@ public virtual void Serialize(ISerializationWriter writer) { writer.WriteLongValue("chainId", ChainId); writer.WriteObjectValue("previewText", PreviewText); writer.WriteObjectValue("recipient", Recipient); + writer.WriteStringValue("teamsAppId", TeamsAppId); writer.WriteCollectionOfObjectValues("templateParameters", TemplateParameters); writer.WriteObjectValue("topic", Topic); writer.WriteAdditionalData(AdditionalData); diff --git a/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index dd0ab72d72..b73a3b1008 100644 --- a/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Teamwork.DeletedTeams.Item.Channels.Item.Members.Item { /// public class ConversationMemberItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Delete a conversationMember from a channel. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0"; + command.Description = "Delete a conversationMember from a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0"; var deletedTeamIdOption = new Option("--deleted-team-id", description: "The unique identifier of deletedTeam") { }; deletedTeamIdOption.IsRequired = true; @@ -129,12 +129,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the role of a conversationMember in a team or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0"; + command.Description = "Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0"; var deletedTeamIdOption = new Option("--deleted-team-id", description: "The unique identifier of deletedTeam") { }; deletedTeamIdOption.IsRequired = true; @@ -203,7 +203,7 @@ public ConversationMemberItemRequestBuilder(Dictionary pathParam public ConversationMemberItemRequestBuilder(string rawUrl) : base("{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Delete a conversationMember from a channel. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -235,7 +235,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs index 8a35a0c8ed..95d4e65753 100644 --- a/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -64,12 +64,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0"; + command.Description = "Add a conversationMember to a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0"; var deletedTeamIdOption = new Option("--deleted-team-id", description: "The unique identifier of deletedTeam") { }; deletedTeamIdOption.IsRequired = true; @@ -253,7 +253,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Teamwork/SendActivityNotificationToRecipients/SendActivityNotificationToRecipientsRequestBuilder.cs b/src/generated/Teamwork/SendActivityNotificationToRecipients/SendActivityNotificationToRecipientsRequestBuilder.cs index 0afdd22566..d2f58cde19 100644 --- a/src/generated/Teamwork/SendActivityNotificationToRecipients/SendActivityNotificationToRecipientsRequestBuilder.cs +++ b/src/generated/Teamwork/SendActivityNotificationToRecipients/SendActivityNotificationToRecipientsRequestBuilder.cs @@ -19,12 +19,12 @@ namespace ApiSdk.Teamwork.SendActivityNotificationToRecipients { /// public class SendActivityNotificationToRecipientsRequestBuilder : BaseCliRequestBuilder { /// - /// Send activity feed notifications to multiple users, in bulk. For more details about sending notifications and the requirements for doing so, seesending Teams activity notifications. + /// Send activity feed notifications to multiple users, in bulk. For more information, see sending Teams activity notifications. /// Find more info here /// public Command BuildPostCommand() { var command = new Command("post"); - command.Description = "Send activity feed notifications to multiple users, in bulk. For more details about sending notifications and the requirements for doing so, seesending Teams activity notifications.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-1.0"; + command.Description = "Send activity feed notifications to multiple users, in bulk. For more information, see sending Teams activity notifications.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; @@ -65,7 +65,7 @@ public SendActivityNotificationToRecipientsRequestBuilder(Dictionary - /// Send activity feed notifications to multiple users, in bulk. For more details about sending notifications and the requirements for doing so, seesending Teams activity notifications. + /// Send activity feed notifications to multiple users, in bulk. For more information, see sending Teams activity notifications. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/CalendarViewRequestBuilder.cs b/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/CalendarViewRequestBuilder.cs index f0d0f5cc59..0b722fbcae 100644 --- a/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/CalendarViewRequestBuilder.cs +++ b/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/CalendarViewRequestBuilder.cs @@ -74,12 +74,12 @@ public Command BuildDeltaNavCommand() { return command; } /// - /// Get the occurrences, exceptions and single instances of events in a calendar view defined by a time range,from a user's default calendar (../me/calendarView) or some other calendar of the user's. + /// The calendar view for the calendar. Navigation property. Read-only. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get the occurrences, exceptions and single instances of events in a calendar view defined by a time range,from a user's default calendar (../me/calendarView) or some other calendar of the user's.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/calendar-list-calendarview?view=graph-rest-1.0"; + command.Description = "The calendar view for the calendar. Navigation property. Read-only.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/calendar-list-calendarview?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -92,6 +92,14 @@ public Command BuildListCommand() { }; calendarIdOption.IsRequired = true; command.AddOption(calendarIdOption); + var startDateTimeOption = new Option("--start-date-time", description: "The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00") { + }; + startDateTimeOption.IsRequired = true; + command.AddOption(startDateTimeOption); + var endDateTimeOption = new Option("--end-date-time", description: "The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00") { + }; + endDateTimeOption.IsRequired = true; + command.AddOption(endDateTimeOption); var topOption = new Option("--top", description: "Show only the first n items") { }; topOption.IsRequired = false; @@ -128,6 +136,8 @@ public Command BuildListCommand() { var userId = invocationContext.ParseResult.GetValueForOption(userIdOption); var calendarGroupId = invocationContext.ParseResult.GetValueForOption(calendarGroupIdOption); var calendarId = invocationContext.ParseResult.GetValueForOption(calendarIdOption); + var startDateTime = invocationContext.ParseResult.GetValueForOption(startDateTimeOption); + var endDateTime = invocationContext.ParseResult.GetValueForOption(endDateTimeOption); var top = invocationContext.ParseResult.GetValueForOption(topOption); var skip = invocationContext.ParseResult.GetValueForOption(skipOption); var filter = invocationContext.ParseResult.GetValueForOption(filterOption); @@ -143,6 +153,8 @@ public Command BuildListCommand() { var cancellationToken = invocationContext.GetCancellationToken(); var reqAdapter = invocationContext.GetRequestAdapter(); var requestInfo = ToGetRequestInformation(q => { + if (!string.IsNullOrEmpty(startDateTime)) q.QueryParameters.StartDateTime = startDateTime; + if (!string.IsNullOrEmpty(endDateTime)) q.QueryParameters.EndDateTime = endDateTime; q.QueryParameters.Top = top; q.QueryParameters.Skip = skip; if (!string.IsNullOrEmpty(filter)) q.QueryParameters.Filter = filter; @@ -175,16 +187,16 @@ public Command BuildListCommand() { /// Instantiates a new CalendarViewRequestBuilder and sets the default values. /// /// Path parameters for the request - public CalendarViewRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView{?%24top,%24skip,%24filter,%24count,%24orderby,%24select}", pathParameters) { + public CalendarViewRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView{?startDateTime*,endDateTime*,%24top,%24skip,%24filter,%24count,%24orderby,%24select}", pathParameters) { } /// /// Instantiates a new CalendarViewRequestBuilder and sets the default values. /// /// The raw URL to use for the request builder. - public CalendarViewRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView{?%24top,%24skip,%24filter,%24count,%24orderby,%24select}", rawUrl) { + public CalendarViewRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView{?startDateTime*,endDateTime*,%24top,%24skip,%24filter,%24count,%24orderby,%24select}", rawUrl) { } /// - /// Get the occurrences, exceptions and single instances of events in a calendar view defined by a time range,from a user's default calendar (../me/calendarView) or some other calendar of the user's. + /// The calendar view for the calendar. Navigation property. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -200,12 +212,22 @@ public RequestInformation ToGetRequestInformation(Action - /// Get the occurrences, exceptions and single instances of events in a calendar view defined by a time range,from a user's default calendar (../me/calendarView) or some other calendar of the user's. + /// The calendar view for the calendar. Navigation property. Read-only. /// public class CalendarViewRequestBuilderGetQueryParameters { /// Include count of items [QueryParameter("%24count")] public bool? Count { get; set; } + /// The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("endDateTime")] + public string? EndDateTime { get; set; } +#nullable restore +#else + [QueryParameter("endDateTime")] + public string EndDateTime { get; set; } +#endif /// Filter items by property values #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable @@ -239,6 +261,16 @@ public class CalendarViewRequestBuilderGetQueryParameters { /// Skip the first n items [QueryParameter("%24skip")] public int? Skip { get; set; } + /// The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00 +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("startDateTime")] + public string? StartDateTime { get; set; } +#nullable restore +#else + [QueryParameter("startDateTime")] + public string StartDateTime { get; set; } +#endif /// Show only the first n items [QueryParameter("%24top")] public int? Top { get; set; } diff --git a/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/EventItemRequestBuilder.cs b/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/EventItemRequestBuilder.cs index d3e080f53c..51a37821f2 100644 --- a/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/EventItemRequestBuilder.cs +++ b/src/generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/EventItemRequestBuilder.cs @@ -193,6 +193,14 @@ public Command BuildGetCommand() { }; eventIdOption.IsRequired = true; command.AddOption(eventIdOption); + var startDateTimeOption = new Option("--start-date-time", description: "The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00") { + }; + startDateTimeOption.IsRequired = true; + command.AddOption(startDateTimeOption); + var endDateTimeOption = new Option("--end-date-time", description: "The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00") { + }; + endDateTimeOption.IsRequired = true; + command.AddOption(endDateTimeOption); var selectOption = new Option("--select", description: "Select properties to be returned") { Arity = ArgumentArity.ZeroOrMore }; @@ -207,6 +215,8 @@ public Command BuildGetCommand() { var calendarGroupId = invocationContext.ParseResult.GetValueForOption(calendarGroupIdOption); var calendarId = invocationContext.ParseResult.GetValueForOption(calendarIdOption); var eventId = invocationContext.ParseResult.GetValueForOption(eventIdOption); + var startDateTime = invocationContext.ParseResult.GetValueForOption(startDateTimeOption); + var endDateTime = invocationContext.ParseResult.GetValueForOption(endDateTimeOption); var select = invocationContext.ParseResult.GetValueForOption(selectOption); var output = invocationContext.ParseResult.GetValueForOption(outputOption); var query = invocationContext.ParseResult.GetValueForOption(queryOption); @@ -215,6 +225,8 @@ public Command BuildGetCommand() { var cancellationToken = invocationContext.GetCancellationToken(); var reqAdapter = invocationContext.GetRequestAdapter(); var requestInfo = ToGetRequestInformation(q => { + if (!string.IsNullOrEmpty(startDateTime)) q.QueryParameters.StartDateTime = startDateTime; + if (!string.IsNullOrEmpty(endDateTime)) q.QueryParameters.EndDateTime = endDateTime; q.QueryParameters.Select = select; }); if (userId is not null) requestInfo.PathParameters.Add("user%2Did", userId); @@ -291,13 +303,13 @@ public Command BuildTentativelyAcceptNavCommand() { /// Instantiates a new EventItemRequestBuilder and sets the default values. /// /// Path parameters for the request - public EventItemRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}{?%24select}", pathParameters) { + public EventItemRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}{?startDateTime*,endDateTime*,%24select}", pathParameters) { } /// /// Instantiates a new EventItemRequestBuilder and sets the default values. /// /// The raw URL to use for the request builder. - public EventItemRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}{?%24select}", rawUrl) { + public EventItemRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}{?startDateTime*,endDateTime*,%24select}", rawUrl) { } /// /// The calendar view for the calendar. Navigation property. Read-only. @@ -319,6 +331,16 @@ public RequestInformation ToGetRequestInformation(Action public class EventItemRequestBuilderGetQueryParameters { + /// The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("endDateTime")] + public string? EndDateTime { get; set; } +#nullable restore +#else + [QueryParameter("endDateTime")] + public string EndDateTime { get; set; } +#endif /// Select properties to be returned #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable @@ -328,6 +350,16 @@ public class EventItemRequestBuilderGetQueryParameters { #else [QueryParameter("%24select")] public string[] Select { get; set; } +#endif + /// The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00 +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("startDateTime")] + public string? StartDateTime { get; set; } +#nullable restore +#else + [QueryParameter("startDateTime")] + public string StartDateTime { get; set; } #endif } } diff --git a/src/generated/Users/Item/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Users/Item/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index 77b50dde3d..c11408a49c 100644 --- a/src/generated/Users/Item/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Users/Item/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -66,12 +66,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Retrieve a conversationMember from a chat or channel. - /// Find more info here + /// Retrieve a conversationMember from a chat. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - 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"; + 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"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -218,7 +218,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve a conversationMember from a chat or channel. + /// Retrieve a conversationMember from a chat. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -252,7 +252,7 @@ public RequestInformation ToPatchRequestInformation(ConversationMember body, Act return requestInfo; } /// - /// Retrieve a conversationMember from a chat or channel. + /// Retrieve a conversationMember from a chat. /// public class ConversationMemberItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Users/Item/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs b/src/generated/Users/Item/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs index eea42994b5..90b7ebbfee 100644 --- a/src/generated/Users/Item/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs +++ b/src/generated/Users/Item/Chats/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs @@ -103,12 +103,12 @@ public Command BuildCreateCommand() { return command; } /// - /// 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 kind of resource-specific access that each app has. + /// 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. /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "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 kind of resource-specific access that each app has.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chat-list-permissiongrants?view=graph-rest-1.0"; + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chat-list-permissiongrants?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -220,7 +220,7 @@ public PermissionGrantsRequestBuilder(Dictionary pathParameters) public PermissionGrantsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/permissionGrants{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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 kind of resource-specific access that each app has. + /// 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. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -254,7 +254,7 @@ public RequestInformation ToPostRequestInformation(ResourceSpecificPermissionGra return requestInfo; } /// - /// 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 kind of resource-specific access that each app has. + /// 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. /// public class PermissionGrantsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Users/Item/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/generated/Users/Item/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs index 0e9e99b9ac..89620e2ab6 100644 --- a/src/generated/Users/Item/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs +++ b/src/generated/Users/Item/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs @@ -34,6 +34,14 @@ public class SendActivityNotificationPostRequestBody : IAdditionalDataHolder, IP #nullable restore #else public TeamworkNotificationRecipient Recipient { get; set; } +#endif + /// The teamsAppId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TeamsAppId { get; set; } +#nullable restore +#else + public string TeamsAppId { get; set; } #endif /// The templateParameters property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -74,6 +82,7 @@ public virtual IDictionary> GetFieldDeserializers() { {"chainId", n => { ChainId = n.GetLongValue(); } }, {"previewText", n => { PreviewText = n.GetObjectValue(ItemBody.CreateFromDiscriminatorValue); } }, {"recipient", n => { Recipient = n.GetObjectValue(TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } }, + {"teamsAppId", n => { TeamsAppId = n.GetStringValue(); } }, {"templateParameters", n => { TemplateParameters = n.GetCollectionOfObjectValues(ApiSdk.Models.KeyValuePair.CreateFromDiscriminatorValue)?.ToList(); } }, {"topic", n => { Topic = n.GetObjectValue(TeamworkActivityTopic.CreateFromDiscriminatorValue); } }, }; @@ -88,6 +97,7 @@ public virtual void Serialize(ISerializationWriter writer) { writer.WriteLongValue("chainId", ChainId); writer.WriteObjectValue("previewText", PreviewText); writer.WriteObjectValue("recipient", Recipient); + writer.WriteStringValue("teamsAppId", TeamsAppId); writer.WriteCollectionOfObjectValues("templateParameters", TemplateParameters); writer.WriteObjectValue("topic", Topic); writer.WriteAdditionalData(AdditionalData); diff --git a/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index c7d2ea6c2a..16ea3746e4 100644 --- a/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Users.Item.JoinedTeams.Item.Channels.Item.Members.Item { /// public class ConversationMemberItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Delete a conversationMember from a channel. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0"; + command.Description = "Delete a conversationMember from a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -141,12 +141,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the role of a conversationMember in a team or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0"; + command.Description = "Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -221,7 +221,7 @@ public ConversationMemberItemRequestBuilder(Dictionary pathParam public ConversationMemberItemRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Delete a conversationMember from a channel. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -253,7 +253,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs index 7ebc7d0a65..80b8753dbc 100644 --- a/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -64,12 +64,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0"; + command.Description = "Add a conversationMember to a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -265,7 +265,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/JoinedTeams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Users/Item/JoinedTeams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index 08eb326958..881ebc3cfd 100644 --- a/src/generated/Users/Item/JoinedTeams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Users/Item/JoinedTeams/Item/Group/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -152,7 +152,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/group/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -168,7 +168,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs index 2f800c761d..37351322c6 100644 --- a/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -20,12 +20,12 @@ namespace ApiSdk.Users.Item.JoinedTeams.Item.PrimaryChannel.Members.Item { /// public class ConversationMemberItemRequestBuilder : BaseCliRequestBuilder { /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Delete a conversationMember from a channel. + /// Find more info here /// public Command BuildDeleteCommand() { var command = new Command("delete"); - command.Description = "Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0"; + command.Description = "Delete a conversationMember from a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -129,12 +129,12 @@ public Command BuildGetCommand() { return command; } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the role of a conversationMember in a team or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0"; + command.Description = "Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -203,7 +203,7 @@ public ConversationMemberItemRequestBuilder(Dictionary pathParam public ConversationMemberItemRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/members/{conversationMember%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Delete a conversationMember from a channel. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -235,7 +235,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs index 52900337ac..821f006c7a 100644 --- a/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs +++ b/src/generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs @@ -64,12 +64,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0"; + command.Description = "Add a conversationMember to a channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -253,7 +253,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/JoinedTeams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/generated/Users/Item/JoinedTeams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs index 30fde2f1e4..56accf8101 100644 --- a/src/generated/Users/Item/JoinedTeams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs +++ b/src/generated/Users/Item/JoinedTeams/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs @@ -34,6 +34,14 @@ public class SendActivityNotificationPostRequestBody : IAdditionalDataHolder, IP #nullable restore #else public TeamworkNotificationRecipient Recipient { get; set; } +#endif + /// The teamsAppId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TeamsAppId { get; set; } +#nullable restore +#else + public string TeamsAppId { get; set; } #endif /// The templateParameters property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -74,6 +82,7 @@ public virtual IDictionary> GetFieldDeserializers() { {"chainId", n => { ChainId = n.GetLongValue(); } }, {"previewText", n => { PreviewText = n.GetObjectValue(ItemBody.CreateFromDiscriminatorValue); } }, {"recipient", n => { Recipient = n.GetObjectValue(TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } }, + {"teamsAppId", n => { TeamsAppId = n.GetStringValue(); } }, {"templateParameters", n => { TemplateParameters = n.GetCollectionOfObjectValues(ApiSdk.Models.KeyValuePair.CreateFromDiscriminatorValue)?.ToList(); } }, {"topic", n => { Topic = n.GetObjectValue(TeamworkActivityTopic.CreateFromDiscriminatorValue); } }, }; @@ -88,6 +97,7 @@ public virtual void Serialize(ISerializationWriter writer) { writer.WriteLongValue("chainId", ChainId); writer.WriteObjectValue("previewText", PreviewText); writer.WriteObjectValue("recipient", Recipient); + writer.WriteStringValue("teamsAppId", TeamsAppId); writer.WriteCollectionOfObjectValues("templateParameters", TemplateParameters); writer.WriteObjectValue("topic", Topic); writer.WriteAdditionalData(AdditionalData); diff --git a/src/generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index dd6cc89e32..33de95d46c 100644 --- a/src/generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -48,12 +48,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// 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. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-post-attachments?view=graph-rest-1.0"; + command.Description = "Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/eventmessage-post-attachments?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -131,12 +131,12 @@ public Command BuildCreateUploadSessionNavCommand() { return command; } /// - /// Retrieve a list of attachment objects attached to a message. - /// Find more info here + /// Retrieve a list of attachment objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of attachment objects attached to a message.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-list-attachments?view=graph-rest-1.0"; + command.Description = "Retrieve a list of attachment objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/eventmessage-list-attachments?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -242,7 +242,7 @@ public AttachmentsRequestBuilder(Dictionary pathParameters) : ba public AttachmentsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messages/{message%2Did}/attachments{?%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Retrieve a list of attachment objects attached to a message. + /// Retrieve a list of attachment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -258,7 +258,7 @@ public RequestInformation ToGetRequestInformation(Action - /// 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. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -276,7 +276,7 @@ public RequestInformation ToPostRequestInformation(Attachment body, Action - /// Retrieve a list of attachment objects attached to a message. + /// Retrieve a list of attachment objects. /// public class AttachmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Users/Item/MailFolders/Item/MailFolderItemRequestBuilder.cs b/src/generated/Users/Item/MailFolders/Item/MailFolderItemRequestBuilder.cs index 36d5cf61c2..5c3ba8c28d 100644 --- a/src/generated/Users/Item/MailFolders/Item/MailFolderItemRequestBuilder.cs +++ b/src/generated/Users/Item/MailFolders/Item/MailFolderItemRequestBuilder.cs @@ -235,12 +235,12 @@ public Command BuildMoveNavCommand() { return command; } /// - /// Update the properties of mailfolder object. - /// Find more info here + /// Update the writable properties of a mailSearchFolder object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of mailfolder object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/mailfolder-update?view=graph-rest-1.0"; + command.Description = "Update the writable properties of a mailSearchFolder object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/mailsearchfolder-update?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -335,7 +335,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of mailfolder object. + /// Update the writable properties of a mailSearchFolder object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index 39181fb5bf..08eec7bc35 100644 --- a/src/generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -48,12 +48,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// 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. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-post-attachments?view=graph-rest-1.0"; + command.Description = "Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/eventmessage-post-attachments?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -125,12 +125,12 @@ public Command BuildCreateUploadSessionNavCommand() { return command; } /// - /// Retrieve a list of attachment objects attached to a message. - /// Find more info here + /// Retrieve a list of attachment objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of attachment objects attached to a message.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-list-attachments?view=graph-rest-1.0"; + command.Description = "Retrieve a list of attachment objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/eventmessage-list-attachments?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -230,7 +230,7 @@ public AttachmentsRequestBuilder(Dictionary pathParameters) : ba public AttachmentsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/messages/{message%2Did}/attachments{?%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Retrieve a list of attachment objects attached to a message. + /// Retrieve a list of attachment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -246,7 +246,7 @@ public RequestInformation ToGetRequestInformation(Action - /// 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. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -264,7 +264,7 @@ public RequestInformation ToPostRequestInformation(Attachment body, Action - /// Retrieve a list of attachment objects attached to a message. + /// Retrieve a list of attachment objects. /// public class AttachmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Users/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs b/src/generated/Users/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs index 794857f50c..ca852b7c3a 100644 --- a/src/generated/Users/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs +++ b/src/generated/Users/Item/MailboxSettings/MailboxSettingsRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Users.Item.MailboxSettings { /// public class MailboxSettingsRequestBuilder : BaseCliRequestBuilder { /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select."; + command.Description = "Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select."; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -131,7 +131,7 @@ public MailboxSettingsRequestBuilder(Dictionary pathParameters) public MailboxSettingsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/mailboxSettings{?%24select,%24expand}", rawUrl) { } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -165,7 +165,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.MailboxSetting return requestInfo; } /// - /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. Returned only on $select. + /// Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. /// public class MailboxSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index f16e0685d6..f3144d8eb1 100644 --- a/src/generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -48,12 +48,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// 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. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-post-attachments?view=graph-rest-1.0"; + command.Description = "Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/eventmessage-post-attachments?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -119,12 +119,12 @@ public Command BuildCreateUploadSessionNavCommand() { return command; } /// - /// Retrieve a list of attachment objects attached to a message. - /// Find more info here + /// Retrieve a list of attachment objects. + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Retrieve a list of attachment objects attached to a message.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-list-attachments?view=graph-rest-1.0"; + command.Description = "Retrieve a list of attachment objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/eventmessage-list-attachments?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -218,7 +218,7 @@ public AttachmentsRequestBuilder(Dictionary pathParameters) : ba public AttachmentsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/messages/{message%2Did}/attachments{?%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Retrieve a list of attachment objects attached to a message. + /// Retrieve a list of attachment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -234,7 +234,7 @@ public RequestInformation ToGetRequestInformation(Action - /// 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. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -252,7 +252,7 @@ public RequestInformation ToPostRequestInformation(Attachment body, Action - /// Retrieve a list of attachment objects attached to a message. + /// Retrieve a list of attachment objects. /// public class AttachmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs b/src/generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs index 47b2df8393..80321d0748 100644 --- a/src/generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs +++ b/src/generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs @@ -215,11 +215,11 @@ public Command BuildForwardNavCommand() { } /// /// The messages in a mailbox or folder. Read-only. Nullable. - /// Find more info here + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "The messages in a mailbox or folder. Read-only. Nullable.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-get?view=graph-rest-1.0"; + command.Description = "The messages in a mailbox or folder. Read-only. Nullable.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/singlevaluelegacyextendedproperty-get?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -292,12 +292,12 @@ public Command BuildMoveNavCommand() { return command; } /// - /// Update the properties of a message object. - /// Find more info here + /// Update the properties of an eventMessage object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "Update the properties of a message object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/message-update?view=graph-rest-1.0"; + command.Description = "Update the properties of an eventMessage object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/eventmessage-update?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -437,7 +437,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a message object. + /// Update the properties of an eventMessage object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/Messages/Item/Value/ContentRequestBuilder.cs b/src/generated/Users/Item/Messages/Item/Value/ContentRequestBuilder.cs index 8e0980d5bd..0948e6db4c 100644 --- a/src/generated/Users/Item/Messages/Item/Value/ContentRequestBuilder.cs +++ b/src/generated/Users/Item/Messages/Item/Value/ContentRequestBuilder.cs @@ -20,11 +20,11 @@ namespace ApiSdk.Users.Item.Messages.Item.Value { public class ContentRequestBuilder : BaseCliRequestBuilder { /// /// Get media content for the navigation property messages from users - /// Find more info here + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get media content for the navigation property messages from users\n\nFind more info here:\n https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"; + command.Description = "Get media content for the navigation property messages from users\n\nFind more info here:\n https://learn.microsoft.com/graph/api/user-list-messages?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; diff --git a/src/generated/Users/Item/Messages/MessagesRequestBuilder.cs b/src/generated/Users/Item/Messages/MessagesRequestBuilder.cs index 076e66414c..a03a12a916 100644 --- a/src/generated/Users/Item/Messages/MessagesRequestBuilder.cs +++ b/src/generated/Users/Item/Messages/MessagesRequestBuilder.cs @@ -128,11 +128,11 @@ public Command BuildDeltaNavCommand() { } /// /// The messages in a mailbox or folder. Read-only. Nullable. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "The messages in a mailbox or folder. Read-only. Nullable.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"; + command.Description = "The messages in a mailbox or folder. Read-only. Nullable.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/user-list-messages?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; diff --git a/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs b/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs index efd100fe79..59bd1a47f1 100644 --- a/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs +++ b/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/AttendanceReportsRequestBuilder.cs @@ -105,11 +105,11 @@ public Command BuildCreateCommand() { return command; } /// - /// Get attendanceReports from users + /// The attendance reports of an online meeting. Read-only. /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "Get attendanceReports from users"; + command.Description = "The attendance reports of an online meeting. Read-only."; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -221,7 +221,7 @@ public AttendanceReportsRequestBuilder(Dictionary pathParameters public AttendanceReportsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/onlineMeetings/{onlineMeeting%2Did}/attendanceReports{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get attendanceReports from users + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -255,7 +255,7 @@ public RequestInformation ToPostRequestInformation(MeetingAttendanceReport body, return requestInfo; } /// - /// Get attendanceReports from users + /// The attendance reports of an online meeting. Read-only. /// public class AttendanceReportsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs b/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs index 5077c09211..826a3b7da2 100644 --- a/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs +++ b/src/generated/Users/Item/OnlineMeetings/Item/AttendanceReports/Item/MeetingAttendanceReportItemRequestBuilder.cs @@ -91,11 +91,11 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get attendanceReports from users + /// The attendance reports of an online meeting. Read-only. /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get attendanceReports from users"; + command.Description = "The attendance reports of an online meeting. Read-only."; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -242,7 +242,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get attendanceReports from users + /// The attendance reports of an online meeting. Read-only. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -276,7 +276,7 @@ public RequestInformation ToPatchRequestInformation(MeetingAttendanceReport body return requestInfo; } /// - /// Get attendanceReports from users + /// The attendance reports of an online meeting. Read-only. /// public class MeetingAttendanceReportItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Users/Item/PermissionGrants/Count/CountRequestBuilder.cs b/src/generated/Users/Item/PermissionGrants/Count/CountRequestBuilder.cs new file mode 100644 index 0000000000..8d30a8cef9 --- /dev/null +++ b/src/generated/Users/Item/PermissionGrants/Count/CountRequestBuilder.cs @@ -0,0 +1,115 @@ +// +using ApiSdk.Models.ODataErrors; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Users.Item.PermissionGrants.Count { + /// + /// Provides operations to count the resources in the collection. + /// + public class CountRequestBuilder : BaseCliRequestBuilder { + /// + /// Get the number of the resource + /// + public Command BuildGetCommand() { + var command = new Command("get"); + command.Description = "Get the number of the resource"; + var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { + }; + userIdOption.IsRequired = true; + command.AddOption(userIdOption); + var searchOption = new Option("--search", description: "Search items by search phrases") { + }; + searchOption.IsRequired = false; + command.AddOption(searchOption); + var filterOption = new Option("--filter", description: "Filter items by property values") { + }; + filterOption.IsRequired = false; + command.AddOption(filterOption); + command.SetHandler(async (invocationContext) => { + var userId = invocationContext.ParseResult.GetValueForOption(userIdOption); + var search = invocationContext.ParseResult.GetValueForOption(searchOption); + var filter = invocationContext.ParseResult.GetValueForOption(filterOption); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + if (!string.IsNullOrEmpty(search)) q.QueryParameters.Search = search; + if (!string.IsNullOrEmpty(filter)) q.QueryParameters.Filter = filter; + }); + if (userId is not null) requestInfo.PathParameters.Add("user%2Did", userId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + var formatter = outputFormatterFactory.GetFormatter(FormatterType.TEXT); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new CountRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public CountRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/users/{user%2Did}/permissionGrants/$count{?%24search,%24filter}", pathParameters) { + } + /// + /// Instantiates a new CountRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public CountRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/permissionGrants/$count{?%24search,%24filter}", rawUrl) { + } + /// + /// Get the number of the resource + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "text/plain;q=0.9"); + return requestInfo; + } + /// + /// Get the number of the resource + /// + public class CountRequestBuilderGetQueryParameters { + /// Filter items by property values +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24filter")] + public string? Filter { get; set; } +#nullable restore +#else + [QueryParameter("%24filter")] + public string Filter { get; set; } +#endif + /// Search items by search phrases +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24search")] + public string? Search { get; set; } +#nullable restore +#else + [QueryParameter("%24search")] + public string Search { get; set; } +#endif + } + } +} diff --git a/src/generated/Users/Item/PermissionGrants/Item/ResourceSpecificPermissionGrantItemRequestBuilder.cs b/src/generated/Users/Item/PermissionGrants/Item/ResourceSpecificPermissionGrantItemRequestBuilder.cs new file mode 100644 index 0000000000..b50d6ac4b4 --- /dev/null +++ b/src/generated/Users/Item/PermissionGrants/Item/ResourceSpecificPermissionGrantItemRequestBuilder.cs @@ -0,0 +1,260 @@ +// +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Users.Item.PermissionGrants.Item { + /// + /// Provides operations to manage the permissionGrants property of the microsoft.graph.user entity. + /// + public class ResourceSpecificPermissionGrantItemRequestBuilder : BaseCliRequestBuilder { + /// + /// Delete navigation property permissionGrants for users + /// + public Command BuildDeleteCommand() { + var command = new Command("delete"); + command.Description = "Delete navigation property permissionGrants for users"; + var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { + }; + userIdOption.IsRequired = true; + command.AddOption(userIdOption); + var resourceSpecificPermissionGrantIdOption = new Option("--resource-specific-permission-grant-id", description: "The unique identifier of resourceSpecificPermissionGrant") { + }; + resourceSpecificPermissionGrantIdOption.IsRequired = true; + command.AddOption(resourceSpecificPermissionGrantIdOption); + var ifMatchOption = new Option("--if-match", description: "ETag") { + Arity = ArgumentArity.ZeroOrMore + }; + ifMatchOption.IsRequired = false; + command.AddOption(ifMatchOption); + command.SetHandler(async (invocationContext) => { + var userId = invocationContext.ParseResult.GetValueForOption(userIdOption); + var resourceSpecificPermissionGrantId = invocationContext.ParseResult.GetValueForOption(resourceSpecificPermissionGrantIdOption); + var ifMatch = invocationContext.ParseResult.GetValueForOption(ifMatchOption); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToDeleteRequestInformation(q => { + }); + if (userId is not null) requestInfo.PathParameters.Add("user%2Did", userId); + if (resourceSpecificPermissionGrantId is not null) requestInfo.PathParameters.Add("resourceSpecificPermissionGrant%2Did", resourceSpecificPermissionGrantId); + if (ifMatch is not null) requestInfo.Headers.Add("If-Match", ifMatch); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + await reqAdapter.SendNoContentAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken); + Console.WriteLine("Success"); + }); + return command; + } + /// + /// List all resource-specific permission grants of a user. + /// + public Command BuildGetCommand() { + var command = new Command("get"); + command.Description = "List all resource-specific permission grants of a user."; + var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { + }; + userIdOption.IsRequired = true; + command.AddOption(userIdOption); + var resourceSpecificPermissionGrantIdOption = new Option("--resource-specific-permission-grant-id", description: "The unique identifier of resourceSpecificPermissionGrant") { + }; + resourceSpecificPermissionGrantIdOption.IsRequired = true; + command.AddOption(resourceSpecificPermissionGrantIdOption); + var selectOption = new Option("--select", description: "Select properties to be returned") { + Arity = ArgumentArity.ZeroOrMore + }; + selectOption.IsRequired = false; + command.AddOption(selectOption); + var expandOption = new Option("--expand", description: "Expand related entities") { + Arity = ArgumentArity.ZeroOrMore + }; + expandOption.IsRequired = false; + command.AddOption(expandOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var userId = invocationContext.ParseResult.GetValueForOption(userIdOption); + var resourceSpecificPermissionGrantId = invocationContext.ParseResult.GetValueForOption(resourceSpecificPermissionGrantIdOption); + var select = invocationContext.ParseResult.GetValueForOption(selectOption); + var expand = invocationContext.ParseResult.GetValueForOption(expandOption); + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + q.QueryParameters.Select = select; + q.QueryParameters.Expand = expand; + }); + if (userId is not null) requestInfo.PathParameters.Add("user%2Did", userId); + if (resourceSpecificPermissionGrantId is not null) requestInfo.PathParameters.Add("resourceSpecificPermissionGrant%2Did", resourceSpecificPermissionGrantId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Update the navigation property permissionGrants in users + /// + public Command BuildPatchCommand() { + var command = new Command("patch"); + command.Description = "Update the navigation property permissionGrants in users"; + var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { + }; + userIdOption.IsRequired = true; + command.AddOption(userIdOption); + var resourceSpecificPermissionGrantIdOption = new Option("--resource-specific-permission-grant-id", description: "The unique identifier of resourceSpecificPermissionGrant") { + }; + resourceSpecificPermissionGrantIdOption.IsRequired = true; + command.AddOption(resourceSpecificPermissionGrantIdOption); + var bodyOption = new Option("--body", description: "The request body") { + }; + bodyOption.IsRequired = true; + command.AddOption(bodyOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var userId = invocationContext.ParseResult.GetValueForOption(userIdOption); + var resourceSpecificPermissionGrantId = invocationContext.ParseResult.GetValueForOption(resourceSpecificPermissionGrantIdOption); + var body = invocationContext.ParseResult.GetValueForOption(bodyOption) ?? string.Empty; + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + using var stream = new MemoryStream(Encoding.UTF8.GetBytes(body)); + var parseNode = ParseNodeFactoryRegistry.DefaultInstance.GetRootParseNode("application/json", stream); + var model = parseNode.GetObjectValue(ResourceSpecificPermissionGrant.CreateFromDiscriminatorValue); + if (model is null) { + Console.Error.WriteLine("No model data to send."); + return; + } + var requestInfo = ToPatchRequestInformation(model, q => { + }); + if (userId is not null) requestInfo.PathParameters.Add("user%2Did", userId); + if (resourceSpecificPermissionGrantId is not null) requestInfo.PathParameters.Add("resourceSpecificPermissionGrant%2Did", resourceSpecificPermissionGrantId); + requestInfo.SetContentFromParsable(reqAdapter, "application/json", model); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new ResourceSpecificPermissionGrantItemRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public ResourceSpecificPermissionGrantItemRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/users/{user%2Did}/permissionGrants/{resourceSpecificPermissionGrant%2Did}{?%24select,%24expand}", pathParameters) { + } + /// + /// Instantiates a new ResourceSpecificPermissionGrantItemRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public ResourceSpecificPermissionGrantItemRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/permissionGrants/{resourceSpecificPermissionGrant%2Did}{?%24select,%24expand}", rawUrl) { + } + /// + /// Delete navigation property permissionGrants for users + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToDeleteRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToDeleteRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.DELETE, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// List all resource-specific permission grants of a user. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// Update the navigation property permissionGrants in users + /// + /// The request body + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToPatchRequestInformation(ResourceSpecificPermissionGrant body, Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToPatchRequestInformation(ResourceSpecificPermissionGrant body, Action> requestConfiguration = default) { +#endif + _ = body ?? throw new ArgumentNullException(nameof(body)); + var requestInfo = new RequestInformation(Method.PATCH, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// List all resource-specific permission grants of a user. + /// + public class ResourceSpecificPermissionGrantItemRequestBuilderGetQueryParameters { + /// Expand related entities +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24expand")] + public string[]? Expand { get; set; } +#nullable restore +#else + [QueryParameter("%24expand")] + public string[] Expand { get; set; } +#endif + /// Select properties to be returned +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24select")] + public string[]? Select { get; set; } +#nullable restore +#else + [QueryParameter("%24select")] + public string[] Select { get; set; } +#endif + } + } +} diff --git a/src/generated/Users/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs b/src/generated/Users/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs new file mode 100644 index 0000000000..ed3cf36c7a --- /dev/null +++ b/src/generated/Users/Item/PermissionGrants/PermissionGrantsRequestBuilder.cs @@ -0,0 +1,309 @@ +// +using ApiSdk.Models.ODataErrors; +using ApiSdk.Models; +using ApiSdk.Users.Item.PermissionGrants.Count; +using ApiSdk.Users.Item.PermissionGrants.Item; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Cli.Commons.Extensions; +using Microsoft.Kiota.Cli.Commons.IO; +using Microsoft.Kiota.Cli.Commons; +using System.Collections.Generic; +using System.CommandLine; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace ApiSdk.Users.Item.PermissionGrants { + /// + /// Provides operations to manage the permissionGrants property of the microsoft.graph.user entity. + /// + public class PermissionGrantsRequestBuilder : BaseCliRequestBuilder { + /// + /// Provides operations to manage the permissionGrants property of the microsoft.graph.user entity. + /// + public Tuple, List> BuildCommand() { + var executables = new List(); + var builder = new ResourceSpecificPermissionGrantItemRequestBuilder(PathParameters); + executables.Add(builder.BuildDeleteCommand()); + executables.Add(builder.BuildGetCommand()); + executables.Add(builder.BuildPatchCommand()); + return new(executables, new(0)); + } + /// + /// Provides operations to count the resources in the collection. + /// + public Command BuildCountNavCommand() { + var command = new Command("count"); + command.Description = "Provides operations to count the resources in the collection."; + var builder = new CountRequestBuilder(PathParameters); + var execCommands = new List(); + execCommands.Add(builder.BuildGetCommand()); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + return command; + } + /// + /// Create new navigation property to permissionGrants for users + /// + public Command BuildCreateCommand() { + var command = new Command("create"); + command.Description = "Create new navigation property to permissionGrants for users"; + var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { + }; + userIdOption.IsRequired = true; + command.AddOption(userIdOption); + var bodyOption = new Option("--body", description: "The request body") { + }; + bodyOption.IsRequired = true; + command.AddOption(bodyOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + command.SetHandler(async (invocationContext) => { + var userId = invocationContext.ParseResult.GetValueForOption(userIdOption); + var body = invocationContext.ParseResult.GetValueForOption(bodyOption) ?? string.Empty; + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + using var stream = new MemoryStream(Encoding.UTF8.GetBytes(body)); + var parseNode = ParseNodeFactoryRegistry.DefaultInstance.GetRootParseNode("application/json", stream); + var model = parseNode.GetObjectValue(ResourceSpecificPermissionGrant.CreateFromDiscriminatorValue); + if (model is null) { + Console.Error.WriteLine("No model data to send."); + return; + } + var requestInfo = ToPostRequestInformation(model, q => { + }); + if (userId is not null) requestInfo.PathParameters.Add("user%2Did", userId); + requestInfo.SetContentFromParsable(reqAdapter, "application/json", model); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var response = await reqAdapter.SendPrimitiveAsync(requestInfo, errorMapping: errorMapping, cancellationToken: cancellationToken) ?? Stream.Null; + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + var formatter = outputFormatterFactory.GetFormatter(output); + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// 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. + /// Find more info here + /// + public Command BuildListCommand() { + var command = new Command("list"); + command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/user-list-permissiongrants?view=graph-rest-1.0"; + var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { + }; + userIdOption.IsRequired = true; + command.AddOption(userIdOption); + var topOption = new Option("--top", description: "Show only the first n items") { + }; + topOption.IsRequired = false; + command.AddOption(topOption); + var skipOption = new Option("--skip", description: "Skip the first n items") { + }; + skipOption.IsRequired = false; + command.AddOption(skipOption); + var searchOption = new Option("--search", description: "Search items by search phrases") { + }; + searchOption.IsRequired = false; + command.AddOption(searchOption); + var filterOption = new Option("--filter", description: "Filter items by property values") { + }; + filterOption.IsRequired = false; + command.AddOption(filterOption); + var countOption = new Option("--count", description: "Include count of items") { + }; + countOption.IsRequired = false; + command.AddOption(countOption); + var orderbyOption = new Option("--orderby", description: "Order items by property values") { + Arity = ArgumentArity.ZeroOrMore + }; + orderbyOption.IsRequired = false; + command.AddOption(orderbyOption); + var selectOption = new Option("--select", description: "Select properties to be returned") { + Arity = ArgumentArity.ZeroOrMore + }; + selectOption.IsRequired = false; + command.AddOption(selectOption); + var expandOption = new Option("--expand", description: "Expand related entities") { + Arity = ArgumentArity.ZeroOrMore + }; + expandOption.IsRequired = false; + command.AddOption(expandOption); + var outputOption = new Option("--output", () => FormatterType.JSON); + command.AddOption(outputOption); + var queryOption = new Option("--query"); + command.AddOption(queryOption); + var allOption = new Option("--all"); + command.AddOption(allOption); + command.SetHandler(async (invocationContext) => { + var userId = invocationContext.ParseResult.GetValueForOption(userIdOption); + var top = invocationContext.ParseResult.GetValueForOption(topOption); + var skip = invocationContext.ParseResult.GetValueForOption(skipOption); + var search = invocationContext.ParseResult.GetValueForOption(searchOption); + var filter = invocationContext.ParseResult.GetValueForOption(filterOption); + var count = invocationContext.ParseResult.GetValueForOption(countOption); + var orderby = invocationContext.ParseResult.GetValueForOption(orderbyOption); + var select = invocationContext.ParseResult.GetValueForOption(selectOption); + var expand = invocationContext.ParseResult.GetValueForOption(expandOption); + var output = invocationContext.ParseResult.GetValueForOption(outputOption); + var query = invocationContext.ParseResult.GetValueForOption(queryOption); + var all = invocationContext.ParseResult.GetValueForOption(allOption); + IOutputFilter outputFilter = invocationContext.BindingContext.GetService(typeof(IOutputFilter)) as IOutputFilter ?? throw new ArgumentNullException("outputFilter"); + IOutputFormatterFactory outputFormatterFactory = invocationContext.BindingContext.GetService(typeof(IOutputFormatterFactory)) as IOutputFormatterFactory ?? throw new ArgumentNullException("outputFormatterFactory"); + IPagingService pagingService = invocationContext.BindingContext.GetService(typeof(IPagingService)) as IPagingService ?? throw new ArgumentNullException("pagingService"); + var cancellationToken = invocationContext.GetCancellationToken(); + var reqAdapter = invocationContext.GetRequestAdapter(); + var requestInfo = ToGetRequestInformation(q => { + q.QueryParameters.Top = top; + q.QueryParameters.Skip = skip; + if (!string.IsNullOrEmpty(search)) q.QueryParameters.Search = search; + if (!string.IsNullOrEmpty(filter)) q.QueryParameters.Filter = filter; + q.QueryParameters.Count = count; + q.QueryParameters.Orderby = orderby; + q.QueryParameters.Select = select; + q.QueryParameters.Expand = expand; + }); + if (userId is not null) requestInfo.PathParameters.Add("user%2Did", userId); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var pagingData = new PageLinkData(requestInfo, null, itemName: "value", nextLinkName: "@odata.nextLink"); + var pageResponse = await pagingService.GetPagedDataAsync((info, token) => reqAdapter.SendNoContentAsync(info, cancellationToken: token), pagingData, all, cancellationToken); + var response = pageResponse?.Response; + IOutputFormatter? formatter = null; + if (pageResponse?.StatusCode >= 200 && pageResponse?.StatusCode < 300) { + formatter = outputFormatterFactory.GetFormatter(output); + response = (response != Stream.Null) ? await outputFilter.FilterOutputAsync(response, query, cancellationToken) : response; + } else { + formatter = outputFormatterFactory.GetFormatter(FormatterType.TEXT); + } + await formatter.WriteOutputAsync(response, cancellationToken); + }); + return command; + } + /// + /// Instantiates a new PermissionGrantsRequestBuilder and sets the default values. + /// + /// Path parameters for the request + public PermissionGrantsRequestBuilder(Dictionary pathParameters) : base("{+baseurl}/users/{user%2Did}/permissionGrants{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", pathParameters) { + } + /// + /// Instantiates a new PermissionGrantsRequestBuilder and sets the default values. + /// + /// The raw URL to use for the request builder. + public PermissionGrantsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/permissionGrants{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", 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. + /// + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToGetRequestInformation(Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default) { +#endif + var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// Create new navigation property to permissionGrants for users + /// + /// The request body + /// Configuration for the request such as headers, query parameters, and middleware options. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public RequestInformation ToPostRequestInformation(ResourceSpecificPermissionGrant body, Action>? requestConfiguration = default) { +#nullable restore +#else + public RequestInformation ToPostRequestInformation(ResourceSpecificPermissionGrant body, Action> requestConfiguration = default) { +#endif + _ = body ?? throw new ArgumentNullException(nameof(body)); + var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// 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. + /// + public class PermissionGrantsRequestBuilderGetQueryParameters { + /// Include count of items + [QueryParameter("%24count")] + public bool? Count { get; set; } + /// Expand related entities +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24expand")] + public string[]? Expand { get; set; } +#nullable restore +#else + [QueryParameter("%24expand")] + public string[] Expand { get; set; } +#endif + /// Filter items by property values +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24filter")] + public string? Filter { get; set; } +#nullable restore +#else + [QueryParameter("%24filter")] + public string Filter { get; set; } +#endif + /// Order items by property values +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24orderby")] + public string[]? Orderby { get; set; } +#nullable restore +#else + [QueryParameter("%24orderby")] + public string[] Orderby { get; set; } +#endif + /// Search items by search phrases +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24search")] + public string? Search { get; set; } +#nullable restore +#else + [QueryParameter("%24search")] + public string Search { get; set; } +#endif + /// Select properties to be returned +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + [QueryParameter("%24select")] + public string[]? Select { get; set; } +#nullable restore +#else + [QueryParameter("%24select")] + public string[] Select { get; set; } +#endif + /// Skip the first n items + [QueryParameter("%24skip")] + public int? Skip { get; set; } + /// Show only the first n items + [QueryParameter("%24top")] + public int? Top { get; set; } + } + } +} diff --git a/src/generated/Users/Item/Presence/PresenceRequestBuilder.cs b/src/generated/Users/Item/Presence/PresenceRequestBuilder.cs index 7cfbb2eef8..2944789044 100644 --- a/src/generated/Users/Item/Presence/PresenceRequestBuilder.cs +++ b/src/generated/Users/Item/Presence/PresenceRequestBuilder.cs @@ -88,12 +88,12 @@ public Command BuildDeleteCommand() { return command; } /// - /// Get a user's presence information. - /// Find more info here + /// Set a presence status message for a user. An optional expiration date and time can be supplied. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get a user's presence information.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0"; + command.Description = "Set a presence status message for a user. An optional expiration date and time can be supplied.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -261,7 +261,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get a user's presence information. + /// Set a presence status message for a user. An optional expiration date and time can be supplied. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -295,7 +295,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.Presence body, return requestInfo; } /// - /// Get a user's presence information. + /// Set a presence status message for a user. An optional expiration date and time can be supplied. /// public class PresenceRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Users/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs b/src/generated/Users/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs index 3f4fc9330a..9a03d84cee 100644 --- a/src/generated/Users/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs +++ b/src/generated/Users/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs @@ -19,11 +19,12 @@ namespace ApiSdk.Users.Item.RetryServiceProvisioning { /// public class RetryServiceProvisioningRequestBuilder : BaseCliRequestBuilder { /// - /// Invoke action retryServiceProvisioning + /// Retry the user service provisioning. + /// Find more info here /// public Command BuildPostCommand() { var command = new Command("post"); - command.Description = "Invoke action retryServiceProvisioning"; + command.Description = "Retry the user service provisioning.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -57,7 +58,7 @@ public RetryServiceProvisioningRequestBuilder(Dictionary pathPar public RetryServiceProvisioningRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/retryServiceProvisioning", rawUrl) { } /// - /// Invoke action retryServiceProvisioning + /// Retry the user service provisioning. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/generated/Users/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs b/src/generated/Users/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs index a88d8a5fe6..40489deca3 100644 --- a/src/generated/Users/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs +++ b/src/generated/Users/Item/ServiceProvisioningErrors/ServiceProvisioningErrorsRequestBuilder.cs @@ -36,11 +36,11 @@ public Command BuildCountNavCommand() { return command; } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Get serviceProvisioningErrors property value"; + command.Description = "Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance)."; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -146,7 +146,7 @@ public ServiceProvisioningErrorsRequestBuilder(Dictionary pathPa public ServiceProvisioningErrorsRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/serviceProvisioningErrors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +162,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get serviceProvisioningErrors property value + /// Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). /// public class ServiceProvisioningErrorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationPostRequestBody.cs index 5193bc2eff..49ab043555 100644 --- a/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationPostRequestBody.cs +++ b/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationPostRequestBody.cs @@ -26,6 +26,14 @@ public class SendActivityNotificationPostRequestBody : IAdditionalDataHolder, IP #nullable restore #else public ItemBody PreviewText { get; set; } +#endif + /// The teamsAppId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TeamsAppId { get; set; } +#nullable restore +#else + public string TeamsAppId { get; set; } #endif /// The templateParameters property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -65,6 +73,7 @@ public virtual IDictionary> GetFieldDeserializers() { {"activityType", n => { ActivityType = n.GetStringValue(); } }, {"chainId", n => { ChainId = n.GetLongValue(); } }, {"previewText", n => { PreviewText = n.GetObjectValue(ItemBody.CreateFromDiscriminatorValue); } }, + {"teamsAppId", n => { TeamsAppId = n.GetStringValue(); } }, {"templateParameters", n => { TemplateParameters = n.GetCollectionOfObjectValues(ApiSdk.Models.KeyValuePair.CreateFromDiscriminatorValue)?.ToList(); } }, {"topic", n => { Topic = n.GetObjectValue(TeamworkActivityTopic.CreateFromDiscriminatorValue); } }, }; @@ -78,6 +87,7 @@ public virtual void Serialize(ISerializationWriter writer) { writer.WriteStringValue("activityType", ActivityType); writer.WriteLongValue("chainId", ChainId); writer.WriteObjectValue("previewText", PreviewText); + writer.WriteStringValue("teamsAppId", TeamsAppId); writer.WriteCollectionOfObjectValues("templateParameters", TemplateParameters); writer.WriteObjectValue("topic", Topic); writer.WriteAdditionalData(AdditionalData); diff --git a/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationRequestBuilder.cs b/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationRequestBuilder.cs index 0137a4cfaa..cd15def2a3 100644 --- a/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationRequestBuilder.cs +++ b/src/generated/Users/Item/Teamwork/SendActivityNotification/SendActivityNotificationRequestBuilder.cs @@ -19,12 +19,12 @@ namespace ApiSdk.Users.Item.Teamwork.SendActivityNotification { /// public class SendActivityNotificationRequestBuilder : BaseCliRequestBuilder { /// - /// Send an activity feed notification to a user. For more details about sending notifications and the requirements for doing so, see sending Teams activity notifications. + /// Send an activity feed notification to a user. For more information, see sending Teams activity notifications. /// Find more info here /// public Command BuildPostCommand() { var command = new Command("post"); - command.Description = "Send an activity feed notification to a user. For more details about sending notifications and the requirements for doing so, see sending Teams activity notifications.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-1.0"; + command.Description = "Send an activity feed notification to a user. For more information, see sending Teams activity notifications.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -71,7 +71,7 @@ public SendActivityNotificationRequestBuilder(Dictionary pathPar public SendActivityNotificationRequestBuilder(string rawUrl) : base("{+baseurl}/users/{user%2Did}/teamwork/sendActivityNotification", rawUrl) { } /// - /// Send an activity feed notification to a user. For more details about sending notifications and the requirements for doing so, see sending Teams activity notifications. + /// Send an activity feed notification to a user. For more information, see sending Teams activity notifications. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/Users/Item/UserItemRequestBuilder.cs b/src/generated/Users/Item/UserItemRequestBuilder.cs index 9ed0ee979b..b6a0cefd6d 100644 --- a/src/generated/Users/Item/UserItemRequestBuilder.cs +++ b/src/generated/Users/Item/UserItemRequestBuilder.cs @@ -53,6 +53,7 @@ using ApiSdk.Users.Item.OwnedDevices; using ApiSdk.Users.Item.OwnedObjects; using ApiSdk.Users.Item.People; +using ApiSdk.Users.Item.PermissionGrants; using ApiSdk.Users.Item.Photo; using ApiSdk.Users.Item.Photos; using ApiSdk.Users.Item.Planner; @@ -745,12 +746,12 @@ public Command BuildFollowedSitesNavCommand() { return command; } /// - /// Retrieve the properties and relationships of user object. - /// Find more info here + /// Read properties and relationships of the user object. + /// Find more info here /// public Command BuildGetCommand() { var command = new Command("get"); - command.Description = "Retrieve the properties and relationships of user object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/user-get?view=graph-rest-1.0"; + command.Description = "Read properties and relationships of the user object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -1306,12 +1307,12 @@ public Command BuildOwnedObjectsNavCommand() { return command; } /// - /// 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. - /// Find more info here + /// Update the properties of a user object. + /// Find more info here /// public Command BuildPatchCommand() { var command = new Command("patch"); - command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/user-update?view=graph-rest-1.0"; + command.Description = "Update the properties of a user object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-user-update?view=graph-rest-1.0"; var userIdOption = new Option("--user-id", description: "The unique identifier of user. Use 'me' for the currently signed in user.") { }; userIdOption.IsRequired = true; @@ -1380,6 +1381,31 @@ public Command BuildPeopleNavCommand() { return command; } /// + /// Provides operations to manage the permissionGrants property of the microsoft.graph.user entity. + /// + public Command BuildPermissionGrantsNavCommand() { + var command = new Command("permission-grants"); + command.Description = "Provides operations to manage the permissionGrants property of the microsoft.graph.user entity."; + var builder = new PermissionGrantsRequestBuilder(PathParameters); + var execCommands = new List(); + var nonExecCommands = new List(); + nonExecCommands.Add(builder.BuildCountNavCommand()); + execCommands.Add(builder.BuildCreateCommand()); + execCommands.Add(builder.BuildListCommand()); + var cmds = builder.BuildCommand(); + execCommands.AddRange(cmds.Item1); + nonExecCommands.AddRange(cmds.Item2); + foreach (var cmd in execCommands) + { + command.AddCommand(cmd); + } + foreach (var cmd in nonExecCommands.OrderBy(static c => c.Name, StringComparer.Ordinal)) + { + command.AddCommand(cmd); + } + return command; + } + /// /// Provides operations to manage the photo property of the microsoft.graph.user entity. /// public Command BuildPhotoNavCommand() { @@ -1811,7 +1837,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of user object. + /// Read properties and relationships of the user object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -1827,7 +1853,7 @@ public RequestInformation ToGetRequestInformation(Action - /// 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. + /// Update the properties of a user object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -1845,7 +1871,7 @@ public RequestInformation ToPatchRequestInformation(ApiSdk.Models.User body, Act return requestInfo; } /// - /// Retrieve the properties and relationships of user object. + /// Read properties and relationships of the user object. /// public class UserItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/generated/Users/UsersRequestBuilder.cs b/src/generated/Users/UsersRequestBuilder.cs index d1dfa26a91..4a896ba80d 100644 --- a/src/generated/Users/UsersRequestBuilder.cs +++ b/src/generated/Users/UsersRequestBuilder.cs @@ -87,6 +87,7 @@ public Tuple, List> BuildCommand() { commands.Add(builder.BuildOwnedObjectsNavCommand()); executables.Add(builder.BuildPatchCommand()); commands.Add(builder.BuildPeopleNavCommand()); + commands.Add(builder.BuildPermissionGrantsNavCommand()); commands.Add(builder.BuildPhotoNavCommand()); commands.Add(builder.BuildPhotosNavCommand()); commands.Add(builder.BuildPlannerNavCommand()); @@ -125,12 +126,12 @@ public Command BuildCountNavCommand() { return command; } /// - /// 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. - /// Find more info here + /// Create a new user object. + /// Find more info here /// public Command BuildCreateCommand() { var command = new Command("create"); - command.Description = "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.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/user-post-users?view=graph-rest-1.0"; + command.Description = "Create a new user object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-user-create?view=graph-rest-1.0"; var bodyOption = new Option("--body", description: "The request body") { }; bodyOption.IsRequired = true; @@ -215,11 +216,11 @@ public Command BuildGetByIdsNavCommand() { } /// /// List properties and relationships of the user objects. - /// Find more info here + /// Find more info here /// public Command BuildListCommand() { var command = new Command("list"); - command.Description = "List properties and relationships of the user objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-onboarding-user-list?view=graph-rest-1.0"; + command.Description = "List properties and relationships of the user objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-user-list?view=graph-rest-1.0"; var consistencyLevelOption = new Option("--consistency-level", description: "Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries") { Arity = ArgumentArity.ZeroOrMore }; @@ -351,7 +352,7 @@ public RequestInformation ToGetRequestInformation(Action - /// 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. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/generated/kiota-lock.json b/src/generated/kiota-lock.json index 33a068c1f5..afe48eb624 100644 --- a/src/generated/kiota-lock.json +++ b/src/generated/kiota-lock.json @@ -1,8 +1,8 @@ { - "descriptionHash": "1A2EC9B85AF656A207E9D1A367742B384CFF56F7A0A6F76C104205ADB7ECF6E57BF9BFE9830127B3E9E44CCCB7A5C18F45B048A0477048FC3EB6C372AACAA288", + "descriptionHash": "03B9E09A741A76AAFEBA29F6D228D8A89F212F29898DFD5C399502964D5960400BB9306E2310EFE70D87BE5B6B8267C59623C0EE0B097C0D8CBFA62907EB8ECF", "descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml", "lockFileVersion": "1.0.0", - "kiotaVersion": "1.10.0", + "kiotaVersion": "1.11.0", "clientClassName": "GraphClient", "clientNamespaceName": "ApiSdk", "language": "CLI",