From 3999726e899cc4fd5422bec7dcd6757dbc558298 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 27 Nov 2024 14:39:43 +0000 Subject: [PATCH] feat(generation): update request builders and models Update generated files with build 172211 --- .../ConversationMemberItemRequestBuilder.cs | 8 +- .../Item/Messages/MessagesRequestBuilder.cs | 6 +- .../Invite/InviteRequestBuilder.cs | 6 +- .../DeviceAppManagementRequestBuilder.cs | 2 +- .../TargetApps/TargetAppsRequestBuilder.cs | 2 +- .../ManagedAppPoliciesRequestBuilder.cs | 8 +- .../TargetApps/TargetAppsRequestBuilder.cs | 2 +- .../TargetApps/TargetAppsRequestBuilder.cs | 2 +- ...anagedAppRegistrationItemRequestBuilder.cs | 8 +- .../ManagedAppRegistrationsRequestBuilder.cs | 8 +- .../ManagedAppStatusesRequestBuilder.cs | 8 +- .../Assignments/AssignmentsRequestBuilder.cs | 6 +- ...anagedEBookAssignmentItemRequestBuilder.cs | 6 +- .../Item/ManagedEBookItemRequestBuilder.cs | 8 +- .../ManagedEBooksRequestBuilder.cs | 8 +- ...obileAppConfigurationItemRequestBuilder.cs | 8 +- .../MobileAppConfigurationsRequestBuilder.cs | 8 +- .../Item/MobileAppItemRequestBuilder.cs | 20 +- .../MobileApps/MobileAppsRequestBuilder.cs | 14 +- .../DeviceCompliancePoliciesRequestBuilder.cs | 14 +- ...eviceCompliancePolicyItemRequestBuilder.cs | 20 +- .../DeviceConfigurationsRequestBuilder.cs | 14 +- .../DeviceConfigurationItemRequestBuilder.cs | 20 +- ...eEnrollmentConfigurationsRequestBuilder.cs | 14 +- ...rollmentConfigurationItemRequestBuilder.cs | 12 +- .../DeviceManagementRequestBuilder.cs | 4 +- .../Item/RoleDefinitionItemRequestBuilder.cs | 14 +- .../RoleDefinitionsRequestBuilder.cs | 14 +- .../Workbook/Tables/Add/AddRequestBuilder.cs | 6 +- .../Item/Tables/Add/AddRequestBuilder.cs | 6 +- .../Generated/Groups/GroupsRequestBuilder.cs | 6 +- .../ConversationsRequestBuilder.cs | 6 +- .../Item/ConversationItemRequestBuilder.cs | 10 +- .../ConversationThreadItemRequestBuilder.cs | 2 +- .../Threads/Item/Posts/PostsRequestBuilder.cs | 8 +- .../Item/NamedLocationItemRequestBuilder.cs | 12 +- .../Item/AccessPackageItemRequestBuilder.cs | 8 +- .../Item/AgreementItemRequestBuilder.cs | 8 +- .../Item/MailFolderItemRequestBuilder.cs | 6 +- .../Me/Messages/MessagesRequestBuilder.cs | 6 +- .../Models/AppManagementRestrictionState.cs | 24 ++ .../ConditionalAccessAuthenticationFlows.cs | 89 ++++++ .../Models/ConditionalAccessConditionSet.cs | 18 ++ .../ConditionalAccessTransferMethods.cs | 29 ++ .../Generated/Models/Entity.cs | 2 + .../Models/KeyCredentialConfiguration.cs | 8 + .../Models/PasswordCredentialConfiguration.cs | 8 + .../Security/DeploymentAccessKeyType.cs | 99 +++++++ .../Models/Security/DeploymentStatus.cs | 52 ++++ .../Security/EvidenceRemediationStatus.cs | 24 ++ .../Models/Security/IdentityContainer.cs | 18 ++ .../Models/Security/NetworkAdapter.cs | 72 +++++ .../Generated/Models/Security/Sensor.cs | 176 ++++++++++++ .../Security/SensorCollectionResponse.cs | 64 +++++ .../Security/SensorDeploymentPackage.cs | 117 ++++++++ .../Models/Security/SensorHealthStatus.cs | 32 +++ .../Models/Security/SensorSettings.cs | 143 ++++++++++ .../Generated/Models/Security/SensorType.cs | 36 +++ .../Item/OrganizationItemRequestBuilder.cs | 8 +- .../OrganizationRequestBuilder.cs | 8 +- .../IdentitySynchronizationRequestBuilder.cs | 6 +- ...oftGraphSecurityApplyHoldRequestBuilder.cs | 4 +- .../Identities/IdentitiesRequestBuilder.cs | 6 + .../Sensors/Count/CountRequestBuilder.cs | 124 +++++++++ .../HealthIssues/Count/CountRequestBuilder.cs | 124 +++++++++ .../HealthIssuesRequestBuilder.cs | 183 +++++++++++++ .../Item/HealthIssueItemRequestBuilder.cs | 125 +++++++++ .../Sensors/Item/SensorItemRequestBuilder.cs | 238 ++++++++++++++++ ...ityGetDeploymentAccessKeyRequestBuilder.cs | 98 +++++++ ...tyGetDeploymentPackageUriRequestBuilder.cs | 98 +++++++ ...nerateDeploymentAccessKeyRequestBuilder.cs | 98 +++++++ .../Sensors/SensorsRequestBuilder.cs | 257 ++++++++++++++++++ .../VirtualEventTownhallItemRequestBuilder.cs | 10 +- .../Townhalls/TownhallsRequestBuilder.cs | 6 +- .../VirtualEventWebinarItemRequestBuilder.cs | 10 +- .../Item/Members/MembersRequestBuilder.cs | 6 +- .../Item/Replies/RepliesRequestBuilder.cs | 6 +- .../Item/Messages/MessagesRequestBuilder.cs | 6 +- .../EmailMethodsRequestBuilder.cs | 4 +- ...lAuthenticationMethodItemRequestBuilder.cs | 4 +- ...rAuthenticationMethodItemRequestBuilder.cs | 4 +- ...eAuthenticationMethodItemRequestBuilder.cs | 4 +- .../Item/Presence/PresenceRequestBuilder.cs | 8 +- .../Users/Item/UserItemRequestBuilder.cs | 16 +- .../Generated/Users/UsersRequestBuilder.cs | 10 +- ...sersWithUserPrincipalNameRequestBuilder.cs | 16 +- .../Generated/kiota-dom-export.txt | 210 ++++++++++++++ src/Microsoft.Graph/Generated/kiota-lock.json | 2 +- 88 files changed, 2815 insertions(+), 243 deletions(-) create mode 100644 src/Microsoft.Graph/Generated/Models/AppManagementRestrictionState.cs create mode 100644 src/Microsoft.Graph/Generated/Models/ConditionalAccessAuthenticationFlows.cs create mode 100644 src/Microsoft.Graph/Generated/Models/ConditionalAccessTransferMethods.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/DeploymentAccessKeyType.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/DeploymentStatus.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/NetworkAdapter.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/Sensor.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/SensorCollectionResponse.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/SensorDeploymentPackage.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/SensorHealthStatus.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/SensorSettings.cs create mode 100644 src/Microsoft.Graph/Generated/Models/Security/SensorType.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/Count/CountRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Count/CountRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/HealthIssuesRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Item/HealthIssueItemRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/SensorItemRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentAccessKey/MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentPackageUri/MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityRegenerateDeploymentAccessKey/MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder.cs create mode 100644 src/Microsoft.Graph/Generated/Security/Identities/Sensors/SensorsRequestBuilder.cs diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index 4824f280115..17b1930b884 100644 --- a/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -58,8 +58,8 @@ public async Task DeleteAsync(Action - /// Retrieve a conversationMember from a chat or channel. - /// Find more info here + /// Retrieve a conversationMember from a chat. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -126,7 +126,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve a conversationMember from a chat or channel. + /// Retrieve a conversationMember from a chat. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -184,7 +184,7 @@ public partial class ConversationMemberItemRequestBuilderDeleteRequestConfigurat { } /// - /// Retrieve a conversationMember from a chat or channel. + /// Retrieve a conversationMember from a chat. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ConversationMemberItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs index c3696c46462..3019f21f44b 100644 --- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs @@ -84,8 +84,8 @@ public MessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. - /// Find more info here + /// Send a new chatMessage in the specified channel or a chat. + /// Find more info here /// /// A /// The request body @@ -129,7 +129,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + /// Send a new chatMessage in the specified channel or a chat. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs index f097afb10cf..0ca899a8e4c 100644 --- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs @@ -35,8 +35,8 @@ public InviteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas { } /// - /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. - /// Find more info here + /// Invite participants to the active call. For more information about how to handle operations, see commsOperation. + /// Find more info here /// /// A /// The request body @@ -61,7 +61,7 @@ public InviteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.InviteParticipantsOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + /// Invite participants to the active call. For more information about how to handle operations, see commsOperation. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs index 55d94e711f0..986b929bccc 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs @@ -150,7 +150,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA } /// /// Update the properties of a deviceAppManagement object. - /// Find more info here + /// Find more info here /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index 455d78b36e3..5c5d3b67748 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -35,7 +35,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Not yet documented - /// Find more info here + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs index c925a09da79..f8c1e3db894 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs @@ -54,8 +54,8 @@ public ManagedAppPoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAd { } /// - /// List properties and relationships of the managedAppProtection objects. - /// Find more info here + /// List properties and relationships of the windowsInformationProtection objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -103,7 +103,7 @@ public ManagedAppPoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAd return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedAppPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the managedAppProtection objects. + /// List properties and relationships of the windowsInformationProtection objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -153,7 +153,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceAppManagement.ManagedAppPolicies.ManagedAppPoliciesRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the managedAppProtection objects. + /// List properties and relationships of the windowsInformationProtection objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ManagedAppPoliciesRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index 109d93af945..f5abb3f982b 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -35,7 +35,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Not yet documented - /// Find more info here + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index 8d3989240fb..e71e0944982 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -35,7 +35,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Not yet documented - /// Find more info here + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs index e61314f6134..3ca3fc016b7 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs @@ -75,8 +75,8 @@ public async Task DeleteAsync(Action - /// Read properties and relationships of the androidManagedAppRegistration object. - /// Find more info here + /// Read properties and relationships of the iosManagedAppRegistration object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -143,7 +143,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the androidManagedAppRegistration object. + /// Read properties and relationships of the iosManagedAppRegistration object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -201,7 +201,7 @@ public partial class ManagedAppRegistrationItemRequestBuilderDeleteRequestConfig { } /// - /// Read properties and relationships of the androidManagedAppRegistration object. + /// Read properties and relationships of the iosManagedAppRegistration object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ManagedAppRegistrationItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs index ddc4c6e32de..47ba73e2516 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs @@ -60,8 +60,8 @@ public ManagedAppRegistrationsRequestBuilder(string rawUrl, IRequestAdapter requ { } /// - /// List properties and relationships of the iosManagedAppRegistration objects. - /// Find more info here + /// List properties and relationships of the managedAppRegistration objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -110,7 +110,7 @@ public ManagedAppRegistrationsRequestBuilder(string rawUrl, IRequestAdapter requ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedAppRegistration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the iosManagedAppRegistration objects. + /// List properties and relationships of the managedAppRegistration objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -160,7 +160,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceAppManagement.ManagedAppRegistrations.ManagedAppRegistrationsRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the iosManagedAppRegistration objects. + /// List properties and relationships of the managedAppRegistration objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ManagedAppRegistrationsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs index 373b86368d7..c6e88a5f1d5 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs @@ -54,8 +54,8 @@ public ManagedAppStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAd { } /// - /// List properties and relationships of the managedAppStatus objects. - /// Find more info here + /// List properties and relationships of the managedAppStatusRaw objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -103,7 +103,7 @@ public ManagedAppStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAd return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedAppStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the managedAppStatus objects. + /// List properties and relationships of the managedAppStatusRaw objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -153,7 +153,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceAppManagement.ManagedAppStatuses.ManagedAppStatusesRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the managedAppStatus objects. + /// List properties and relationships of the managedAppStatusRaw objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ManagedAppStatusesRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs index f16e11a0cdf..7ae5da68b13 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs @@ -78,8 +78,8 @@ public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedEBookAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new managedEBookAssignment object. - /// Find more info here + /// Create a new iosVppEBookAssignment object. + /// Find more info here /// /// A /// The request body @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new managedEBookAssignment object. + /// Create a new iosVppEBookAssignment object. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs index 0c3d787dcb0..c863bb99558 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs @@ -82,8 +82,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a iosVppEBookAssignment object. - /// Find more info here + /// Update the properties of a managedEBookAssignment object. + /// Find more info here /// /// A /// The request body @@ -146,7 +146,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a iosVppEBookAssignment object. + /// Update the properties of a managedEBookAssignment object. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs index 2613cba923e..1f4081eaee1 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs @@ -88,8 +88,8 @@ public async Task DeleteAsync(Action - /// Read properties and relationships of the managedEBook object. - /// Find more info here + /// Read properties and relationships of the iosVppEBook object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -157,7 +157,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the managedEBook object. + /// Read properties and relationships of the iosVppEBook object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -215,7 +215,7 @@ public partial class ManagedEBookItemRequestBuilderDeleteRequestConfiguration : { } /// - /// Read properties and relationships of the managedEBook object. + /// Read properties and relationships of the iosVppEBook object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ManagedEBookItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs index e93b6ff31d0..bbc1c18d815 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs @@ -54,8 +54,8 @@ public ManagedEBooksRequestBuilder(string rawUrl, IRequestAdapter requestAdapter { } /// - /// List properties and relationships of the iosVppEBook objects. - /// Find more info here + /// List properties and relationships of the managedEBook objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -104,7 +104,7 @@ public ManagedEBooksRequestBuilder(string rawUrl, IRequestAdapter requestAdapter return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedEBook.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the iosVppEBook objects. + /// List properties and relationships of the managedEBook objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceAppManagement.ManagedEBooks.ManagedEBooksRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the iosVppEBook objects. + /// List properties and relationships of the managedEBook objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ManagedEBooksRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs index 82bb6bccc65..e1062f6f1d2 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs @@ -94,8 +94,8 @@ public async Task DeleteAsync(Action - /// Read properties and relationships of the iosMobileAppConfiguration object. - /// Find more info here + /// Read properties and relationships of the managedDeviceMobileAppConfiguration object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -163,7 +163,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the iosMobileAppConfiguration object. + /// Read properties and relationships of the managedDeviceMobileAppConfiguration object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -221,7 +221,7 @@ public partial class ManagedDeviceMobileAppConfigurationItemRequestBuilderDelete { } /// - /// Read properties and relationships of the iosMobileAppConfiguration object. + /// Read properties and relationships of the managedDeviceMobileAppConfiguration object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs index 1ba9b0ffa86..b4abbbe9e48 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs @@ -54,8 +54,8 @@ public MobileAppConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requ { } /// - /// List properties and relationships of the iosMobileAppConfiguration objects. - /// Find more info here + /// List properties and relationships of the managedDeviceMobileAppConfiguration objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -104,7 +104,7 @@ public MobileAppConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedDeviceMobileAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the iosMobileAppConfiguration objects. + /// List properties and relationships of the managedDeviceMobileAppConfiguration objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceAppManagement.MobileAppConfigurations.MobileAppConfigurationsRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the iosMobileAppConfiguration objects. + /// List properties and relationships of the managedDeviceMobileAppConfiguration objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class MobileAppConfigurationsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs index 774211aa226..716ac2c152b 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs @@ -149,8 +149,8 @@ public MobileAppItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter { } /// - /// Deletes a windowsUniversalAppX. - /// Find more info here + /// Deletes a windowsMobileMSI. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -172,8 +172,8 @@ public async Task DeleteAsync(Action - /// Read properties and relationships of the managedAndroidLobApp object. - /// Find more info here + /// Read properties and relationships of the macOSOfficeSuiteApp object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -196,8 +196,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a windowsMicrosoftEdgeApp object. - /// Find more info here + /// Update the properties of a windowsWebApp object. + /// Find more info here /// /// A /// The request body @@ -222,7 +222,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Deletes a windowsUniversalAppX. + /// Deletes a windowsMobileMSI. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -241,7 +241,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the managedAndroidLobApp object. + /// Read properties and relationships of the macOSOfficeSuiteApp object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -260,7 +260,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a windowsMicrosoftEdgeApp object. + /// Update the properties of a windowsWebApp object. /// /// A /// The request body @@ -299,7 +299,7 @@ public partial class MobileAppItemRequestBuilderDeleteRequestConfiguration : Req { } /// - /// Read properties and relationships of the managedAndroidLobApp object. + /// Read properties and relationships of the macOSOfficeSuiteApp object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class MobileAppItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs index 89c74e89422..57c7965bf96 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs @@ -150,8 +150,8 @@ public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : { } /// - /// List properties and relationships of the iosiPadOSWebClip objects. - /// Find more info here + /// List properties and relationships of the androidStoreApp objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -174,8 +174,8 @@ public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.MobileAppCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new windowsMobileMSI object. - /// Find more info here + /// Create a new iosStoreApp object. + /// Find more info here /// /// A /// The request body @@ -200,7 +200,7 @@ public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the iosiPadOSWebClip objects. + /// List properties and relationships of the androidStoreApp objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -219,7 +219,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new windowsMobileMSI object. + /// Create a new iosStoreApp object. /// /// A /// The request body @@ -250,7 +250,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceAppManagement.MobileApps.MobileAppsRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the iosiPadOSWebClip objects. + /// List properties and relationships of the androidStoreApp objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class MobileAppsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs index 6aa3233eeac..97fcdb896c6 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs @@ -54,8 +54,8 @@ public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter req { } /// - /// List properties and relationships of the macOSCompliancePolicy objects. - /// Find more info here + /// List properties and relationships of the windows81CompliancePolicy objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -78,8 +78,8 @@ public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter req return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new androidWorkProfileCompliancePolicy object. - /// Find more info here + /// Create a new windows81CompliancePolicy object. + /// Find more info here /// /// A /// The request body @@ -104,7 +104,7 @@ public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter req return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the macOSCompliancePolicy objects. + /// List properties and relationships of the windows81CompliancePolicy objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new androidWorkProfileCompliancePolicy object. + /// Create a new windows81CompliancePolicy object. /// /// A /// The request body @@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceManagement.DeviceCompliancePolicies.DeviceCompliancePoliciesRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the macOSCompliancePolicy objects. + /// List properties and relationships of the windows81CompliancePolicy objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class DeviceCompliancePoliciesRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs index b606045f968..8215b59fb5f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs @@ -89,8 +89,8 @@ public DeviceCompliancePolicyItemRequestBuilder(string rawUrl, IRequestAdapter r { } /// - /// Deletes a windowsPhone81CompliancePolicy. - /// Find more info here + /// Deletes a androidCompliancePolicy. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -112,8 +112,8 @@ public async Task DeleteAsync(Action - /// Read properties and relationships of the windowsPhone81CompliancePolicy object. - /// Find more info here + /// Read properties and relationships of the windows10CompliancePolicy object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -136,8 +136,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a iosCompliancePolicy object. - /// Find more info here + /// Update the properties of a windowsPhone81CompliancePolicy object. + /// Find more info here /// /// A /// The request body @@ -162,7 +162,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Deletes a windowsPhone81CompliancePolicy. + /// Deletes a androidCompliancePolicy. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +181,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the windowsPhone81CompliancePolicy object. + /// Read properties and relationships of the windows10CompliancePolicy object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -200,7 +200,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a iosCompliancePolicy object. + /// Update the properties of a windowsPhone81CompliancePolicy object. /// /// A /// The request body @@ -239,7 +239,7 @@ public partial class DeviceCompliancePolicyItemRequestBuilderDeleteRequestConfig { } /// - /// Read properties and relationships of the windowsPhone81CompliancePolicy object. + /// Read properties and relationships of the windows10CompliancePolicy object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class DeviceCompliancePolicyItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs index 1f0e1ef6906..9ec227d708c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs @@ -54,8 +54,8 @@ public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter request { } /// - /// List properties and relationships of the windows10GeneralConfiguration objects. - /// Find more info here + /// List properties and relationships of the androidGeneralDeviceConfiguration objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -78,8 +78,8 @@ public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter request return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new iosCustomConfiguration object. - /// Find more info here + /// Create a new windows10EnterpriseModernAppManagementConfiguration object. + /// Find more info here /// /// A /// The request body @@ -104,7 +104,7 @@ public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter request return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the windows10GeneralConfiguration objects. + /// List properties and relationships of the androidGeneralDeviceConfiguration objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new iosCustomConfiguration object. + /// Create a new windows10EnterpriseModernAppManagementConfiguration object. /// /// A /// The request body @@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceManagement.DeviceConfigurations.DeviceConfigurationsRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the windows10GeneralConfiguration objects. + /// List properties and relationships of the androidGeneralDeviceConfiguration objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class DeviceConfigurationsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs index f198e71991c..1cb40ac3529 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs @@ -78,8 +78,8 @@ public DeviceConfigurationItemRequestBuilder(string rawUrl, IRequestAdapter requ { } /// - /// Deletes a iosUpdateConfiguration. - /// Find more info here + /// Deletes a windows10SecureAssessmentConfiguration. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -101,8 +101,8 @@ public async Task DeleteAsync(Action - /// Read properties and relationships of the sharedPCConfiguration object. - /// Find more info here + /// Read properties and relationships of the iosCertificateProfile object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -135,8 +135,8 @@ public async Task DeleteAsync(Action - /// Update the properties of a macOSGeneralDeviceConfiguration object. - /// Find more info here + /// Update the properties of a windows10SecureAssessmentConfiguration object. + /// Find more info here /// /// A /// The request body @@ -161,7 +161,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Deletes a iosUpdateConfiguration. + /// Deletes a windows10SecureAssessmentConfiguration. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -180,7 +180,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the sharedPCConfiguration object. + /// Read properties and relationships of the iosCertificateProfile object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -199,7 +199,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a macOSGeneralDeviceConfiguration object. + /// Update the properties of a windows10SecureAssessmentConfiguration object. /// /// A /// The request body @@ -238,7 +238,7 @@ public partial class DeviceConfigurationItemRequestBuilderDeleteRequestConfigura { } /// - /// Read properties and relationships of the sharedPCConfiguration object. + /// Read properties and relationships of the iosCertificateProfile object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class DeviceConfigurationItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs index 713c0e93b90..0cd5cb811f1 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs @@ -54,8 +54,8 @@ public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapt { } /// - /// List properties and relationships of the deviceEnrollmentConfiguration objects. - /// Find more info here + /// List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -78,8 +78,8 @@ public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapt return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object. - /// Find more info here + /// Create a new deviceEnrollmentLimitConfiguration object. + /// Find more info here /// /// A /// The request body @@ -104,7 +104,7 @@ public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapt return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the deviceEnrollmentConfiguration objects. + /// List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object. + /// Create a new deviceEnrollmentLimitConfiguration object. /// /// A /// The request body @@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceManagement.DeviceEnrollmentConfigurations.DeviceEnrollmentConfigurationsRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the deviceEnrollmentConfiguration objects. + /// List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class DeviceEnrollmentConfigurationsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs index 4296864b362..1bdc70b13ec 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs @@ -53,8 +53,8 @@ public DeviceEnrollmentConfigurationItemRequestBuilder(string rawUrl, IRequestAd { } /// - /// Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. - /// Find more info here + /// Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -100,8 +100,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object. - /// Find more info here + /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. + /// Find more info here /// /// A /// The request body @@ -126,7 +126,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. + /// Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -164,7 +164,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object. + /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs index a1ba553a23a..a5e57a7d05f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs @@ -392,7 +392,7 @@ public DeviceManagementRequestBuilder(string rawUrl, IRequestAdapter requestAdap } /// /// Read properties and relationships of the deviceManagement object. - /// Find more info here + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -426,7 +426,7 @@ public DeviceManagementRequestBuilder(string rawUrl, IRequestAdapter requestAdap } /// /// Update the properties of a deviceManagement object. - /// Find more info here + /// Find more info here /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs index 51097566aef..3f7aaf0dd54 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs @@ -64,8 +64,8 @@ public async Task DeleteAsync(Action - /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. - /// Find more info here + /// Read properties and relationships of the roleDefinition object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -88,8 +88,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a deviceAndAppManagementRoleDefinition object. - /// Find more info here + /// Update the properties of a roleDefinition object. + /// Find more info here /// /// A /// The request body @@ -133,7 +133,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + /// Read properties and relationships of the roleDefinition object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -152,7 +152,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a deviceAndAppManagementRoleDefinition object. + /// Update the properties of a roleDefinition object. /// /// A /// The request body @@ -191,7 +191,7 @@ public partial class RoleDefinitionItemRequestBuilderDeleteRequestConfiguration { } /// - /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + /// Read properties and relationships of the roleDefinition object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class RoleDefinitionItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs index 023fba9d470..81b5b82b360 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs @@ -54,8 +54,8 @@ public RoleDefinitionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapt { } /// - /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects. - /// Find more info here + /// List properties and relationships of the roleDefinition objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -78,8 +78,8 @@ public RoleDefinitionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapt return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.RoleDefinitionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new deviceAndAppManagementRoleDefinition object. - /// Find more info here + /// Create a new roleDefinition object. + /// Find more info here /// /// A /// The request body @@ -104,7 +104,7 @@ public RoleDefinitionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapt return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + /// List properties and relationships of the roleDefinition objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new deviceAndAppManagementRoleDefinition object. + /// Create a new roleDefinition object. /// /// A /// The request body @@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.DeviceManagement.RoleDefinitions.RoleDefinitionsRequestBuilder(rawUrl, RequestAdapter); } /// - /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + /// List properties and relationships of the roleDefinition objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class RoleDefinitionsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Add/AddRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Add/AddRequestBuilder.cs index d51dadd226a..09d12d9f590 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Add/AddRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Add/AddRequestBuilder.cs @@ -35,8 +35,8 @@ public AddRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(r { } /// - /// Use this API to create a new Table. - /// Find more info here + /// Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + /// Find more info here /// /// A /// The request body @@ -61,7 +61,7 @@ public AddRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(r return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.WorkbookTable.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Use this API to create a new Table. + /// Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Add/AddRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Add/AddRequestBuilder.cs index 60d32fbdd66..c0061f3d851 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Add/AddRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Add/AddRequestBuilder.cs @@ -35,8 +35,8 @@ public AddRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(r { } /// - /// Use this API to create a new Table. - /// Find more info here + /// Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + /// Find more info here /// /// A /// The request body @@ -61,7 +61,7 @@ public AddRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(r return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.WorkbookTable.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Use this API to create a new Table. + /// Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Groups/GroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/GroupsRequestBuilder.cs index 01d4665b01e..1b72f910f6b 100644 --- a/src/Microsoft.Graph/Generated/Groups/GroupsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/GroupsRequestBuilder.cs @@ -102,8 +102,8 @@ public GroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.GroupCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new group as specified in the request body. You can create the following types of groups: This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. - /// Find more info here + /// Create a new group object if it doesn't exist, or update the properties of an existing group object.You can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see the Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. + /// Find more info here /// /// A /// The request body @@ -147,7 +147,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new group as specified in the request body. You can create the following types of groups: This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. + /// Create a new group object if it doesn't exist, or update the properties of an existing group object.You can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see the Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs index 1ef4baf386d..3d0ba1f2ac2 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs @@ -78,8 +78,8 @@ public ConversationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ConversationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// 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 + /// Use reply thread or reply post to further post to that conversation. + /// Find more info here /// /// A /// The request body @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action - /// 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. + /// Use reply thread or reply post to further post to that conversation. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs index 71774d8fdb9..e65d4c4c07a 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs @@ -42,7 +42,7 @@ public ConversationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdap } /// /// Delete conversation. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -64,8 +64,8 @@ public async Task DeleteAsync(Action - /// Retrieve the properties and relationships of conversation object. - /// Find more info here + /// The group's conversations. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -107,7 +107,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of conversation object. + /// The group's conversations. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -143,7 +143,7 @@ public partial class ConversationItemRequestBuilderDeleteRequestConfiguration : { } /// - /// Retrieve the properties and relationships of conversation object. + /// The group's conversations. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class ConversationItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs index 1fbdcab07c0..0c4e4a358aa 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs @@ -48,7 +48,7 @@ public ConversationThreadItemRequestBuilder(string rawUrl, IRequestAdapter reque } /// /// Delete conversationThread. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs index ee06d8bf9d1..74c419b5efd 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs @@ -54,8 +54,8 @@ public PostsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base { } /// - /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation. - /// Find more info here + /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -78,7 +78,7 @@ public PostsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.PostCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation. + /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -106,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation. + /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class PostsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs index 4db44a22ec3..fc5a4ec2579 100644 --- a/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs @@ -35,8 +35,8 @@ public NamedLocationItemRequestBuilder(string rawUrl, IRequestAdapter requestAda { } /// - /// Delete a countryNamedLocation object. - /// Find more info here + /// Delete an ipNamedLocation object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -82,8 +82,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.NamedLocation.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a countryNamedLocation object. - /// Find more info here + /// Update the properties of an ipNamedLocation object. + /// Find more info here /// /// A /// The request body @@ -108,7 +108,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.NamedLocation.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Delete a countryNamedLocation object. + /// Delete an ipNamedLocation object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -146,7 +146,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a countryNamedLocation object. + /// Update the properties of an ipNamedLocation object. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs index a83372be3ae..947869285ba 100644 --- a/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs @@ -100,8 +100,8 @@ public async Task DeleteAsync(Action - /// 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 /// /// A /// Cancellation token to use when cancelling requests @@ -169,7 +169,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. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -227,7 +227,7 @@ public partial class AccessPackageItemRequestBuilderDeleteRequestConfiguration : { } /// - /// 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. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class AccessPackageItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs index e583dd92780..d71dc4fd232 100644 --- a/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs @@ -76,8 +76,8 @@ public async Task DeleteAsync(Action - /// 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 /// /// A /// Cancellation token to use when cancelling requests @@ -145,7 +145,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. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -203,7 +203,7 @@ public partial class AgreementItemRequestBuilderDeleteRequestConfiguration : Req { } /// - /// 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. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class AgreementItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs index 7112652a04f..0b1930b8c2c 100644 --- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs @@ -112,8 +112,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.MailFolder.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of mailfolder object. - /// Find more info here + /// Update the writable properties of a mailSearchFolder object. + /// Find more info here /// /// A /// The request body @@ -176,7 +176,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of mailfolder object. + /// Update the writable properties of a mailSearchFolder object. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Me/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Messages/MessagesRequestBuilder.cs index a754b1125dd..0cc565adb32 100644 --- a/src/Microsoft.Graph/Generated/Me/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Messages/MessagesRequestBuilder.cs @@ -84,8 +84,8 @@ public MessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.MessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// 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 + /// Create a draft of a new message in either JSON or MIME format. When using JSON format, you can:- Include an attachment to the message.- Update the draft later to add content to the body or change other message properties. When using MIME format:- Provide the applicable Internet message headers and the MIME content, all encoded in base64 format in the request body.- /* Add any attachments and S/MIME properties to the MIME content. By default, this operation saves the draft in the Drafts folder. Send the draft message in a subsequent operation. Alternatively, send a new message in a single operation, or create a draft to forward, reply and reply-all to an existing message. + /// Find more info here /// /// A /// The request body @@ -129,7 +129,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + /// Create a draft of a new message in either JSON or MIME format. When using JSON format, you can:- Include an attachment to the message.- Update the draft later to add content to the body or change other message properties. When using MIME format:- Provide the applicable Internet message headers and the MIME content, all encoded in base64 format in the request body.- /* Add any attachments and S/MIME properties to the MIME content. By default, this operation saves the draft in the Drafts folder. Send the draft message in a subsequent operation. Alternatively, send a new message in a single operation, or create a draft to forward, reply and reply-all to an existing message. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Models/AppManagementRestrictionState.cs b/src/Microsoft.Graph/Generated/Models/AppManagementRestrictionState.cs new file mode 100644 index 00000000000..8f37a084a81 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/AppManagementRestrictionState.cs @@ -0,0 +1,24 @@ +// +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public enum AppManagementRestrictionState + #pragma warning restore CS1591 + { + [EnumMember(Value = "enabled")] + #pragma warning disable CS1591 + Enabled, + #pragma warning restore CS1591 + [EnumMember(Value = "disabled")] + #pragma warning disable CS1591 + Disabled, + #pragma warning restore CS1591 + [EnumMember(Value = "unknownFutureValue")] + #pragma warning disable CS1591 + UnknownFutureValue, + #pragma warning restore CS1591 + } +} diff --git a/src/Microsoft.Graph/Generated/Models/ConditionalAccessAuthenticationFlows.cs b/src/Microsoft.Graph/Generated/Models/ConditionalAccessAuthenticationFlows.cs new file mode 100644 index 00000000000..7ba098d74f6 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/ConditionalAccessAuthenticationFlows.cs @@ -0,0 +1,89 @@ +// +#pragma warning disable CS0618 +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions.Store; +using System.Collections.Generic; +using System.IO; +using System; +namespace Microsoft.Graph.Models +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public partial class ConditionalAccessAuthenticationFlows : IAdditionalDataHolder, IBackedModel, IParsable + #pragma warning restore CS1591 + { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData + { + get { return BackingStore.Get>("AdditionalData") ?? new Dictionary(); } + set { BackingStore.Set("AdditionalData", value); } + } + /// Stores model information. + public IBackingStore BackingStore { get; private set; } + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#nullable restore +#else + public string OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#endif + /// The transferMethods property + public global::Microsoft.Graph.Models.ConditionalAccessTransferMethods? TransferMethods + { + get { return BackingStore?.Get("transferMethods"); } + set { BackingStore?.Set("transferMethods", value); } + } + /// + /// Instantiates a new and sets the default values. + /// + public ConditionalAccessAuthenticationFlows() + { + BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// A + /// The parse node to use to read the discriminator value and create the object + public static global::Microsoft.Graph.Models.ConditionalAccessAuthenticationFlows CreateFromDiscriminatorValue(IParseNode parseNode) + { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new global::Microsoft.Graph.Models.ConditionalAccessAuthenticationFlows(); + } + /// + /// The deserialization information for the current model + /// + /// A IDictionary<string, Action<IParseNode>> + public virtual IDictionary> GetFieldDeserializers() + { + return new Dictionary> + { + { "@odata.type", n => { OdataType = n.GetStringValue(); } }, + { "transferMethods", n => { TransferMethods = n.GetEnumValue(); } }, + }; + } + /// + /// 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.WriteEnumValue("transferMethods", TransferMethods); + writer.WriteAdditionalData(AdditionalData); + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Models/ConditionalAccessConditionSet.cs b/src/Microsoft.Graph/Generated/Models/ConditionalAccessConditionSet.cs index 277b43a3e46..48260a1af96 100644 --- a/src/Microsoft.Graph/Generated/Models/ConditionalAccessConditionSet.cs +++ b/src/Microsoft.Graph/Generated/Models/ConditionalAccessConditionSet.cs @@ -34,6 +34,22 @@ public IDictionary AdditionalData get { return BackingStore?.Get("applications"); } set { BackingStore?.Set("applications", value); } } +#endif + /// The authenticationFlows property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public global::Microsoft.Graph.Models.ConditionalAccessAuthenticationFlows? AuthenticationFlows + { + get { return BackingStore?.Get("authenticationFlows"); } + set { BackingStore?.Set("authenticationFlows", value); } + } +#nullable restore +#else + public global::Microsoft.Graph.Models.ConditionalAccessAuthenticationFlows AuthenticationFlows + { + get { return BackingStore?.Get("authenticationFlows"); } + set { BackingStore?.Set("authenticationFlows", value); } + } #endif /// Stores model information. public IBackingStore BackingStore { get; private set; } @@ -230,6 +246,7 @@ public virtual IDictionary> GetFieldDeserializers() return new Dictionary> { { "applications", n => { Applications = n.GetObjectValue(global::Microsoft.Graph.Models.ConditionalAccessApplications.CreateFromDiscriminatorValue); } }, + { "authenticationFlows", n => { AuthenticationFlows = n.GetObjectValue(global::Microsoft.Graph.Models.ConditionalAccessAuthenticationFlows.CreateFromDiscriminatorValue); } }, { "clientAppTypes", n => { ClientAppTypes = n.GetCollectionOfEnumValues()?.AsList(); } }, { "clientApplications", n => { ClientApplications = n.GetObjectValue(global::Microsoft.Graph.Models.ConditionalAccessClientApplications.CreateFromDiscriminatorValue); } }, { "devices", n => { Devices = n.GetObjectValue(global::Microsoft.Graph.Models.ConditionalAccessDevices.CreateFromDiscriminatorValue); } }, @@ -251,6 +268,7 @@ public virtual void Serialize(ISerializationWriter writer) { _ = writer ?? throw new ArgumentNullException(nameof(writer)); writer.WriteObjectValue("applications", Applications); + writer.WriteObjectValue("authenticationFlows", AuthenticationFlows); writer.WriteObjectValue("clientApplications", ClientApplications); writer.WriteCollectionOfEnumValues("clientAppTypes", ClientAppTypes); writer.WriteObjectValue("devices", Devices); diff --git a/src/Microsoft.Graph/Generated/Models/ConditionalAccessTransferMethods.cs b/src/Microsoft.Graph/Generated/Models/ConditionalAccessTransferMethods.cs new file mode 100644 index 00000000000..774608e8cc8 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/ConditionalAccessTransferMethods.cs @@ -0,0 +1,29 @@ +// +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + [Flags] + #pragma warning disable CS1591 + public enum ConditionalAccessTransferMethods + #pragma warning restore CS1591 + { + [EnumMember(Value = "none")] + #pragma warning disable CS1591 + None = 1, + #pragma warning restore CS1591 + [EnumMember(Value = "deviceCodeFlow")] + #pragma warning disable CS1591 + DeviceCodeFlow = 2, + #pragma warning restore CS1591 + [EnumMember(Value = "authenticationTransfer")] + #pragma warning disable CS1591 + AuthenticationTransfer = 4, + #pragma warning restore CS1591 + [EnumMember(Value = "unknownFutureValue")] + #pragma warning disable CS1591 + UnknownFutureValue = 8, + #pragma warning restore CS1591 + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Entity.cs b/src/Microsoft.Graph/Generated/Models/Entity.cs index df8491d9338..3d149a0c78e 100644 --- a/src/Microsoft.Graph/Generated/Models/Entity.cs +++ b/src/Microsoft.Graph/Generated/Models/Entity.cs @@ -746,11 +746,13 @@ public Entity() "#microsoft.graph.security.intelligenceProfileIndicator" => new global::Microsoft.Graph.Models.Security.IntelligenceProfileIndicator(), "#microsoft.graph.security.ipAddress" => new global::Microsoft.Graph.Models.Security.IpAddress(), "#microsoft.graph.security.labelsRoot" => new global::Microsoft.Graph.Models.Security.LabelsRoot(), + "#microsoft.graph.security.networkAdapter" => new global::Microsoft.Graph.Models.Security.NetworkAdapter(), "#microsoft.graph.security.passiveDnsRecord" => new global::Microsoft.Graph.Models.Security.PassiveDnsRecord(), "#microsoft.graph.security.retentionEvent" => new global::Microsoft.Graph.Models.Security.RetentionEvent(), "#microsoft.graph.security.retentionEventType" => new global::Microsoft.Graph.Models.Security.RetentionEventType(), "#microsoft.graph.security.retentionLabel" => new global::Microsoft.Graph.Models.Security.RetentionLabel(), "#microsoft.graph.security.search" => new global::Microsoft.Graph.Models.Security.Search(), + "#microsoft.graph.security.sensor" => new global::Microsoft.Graph.Models.Security.Sensor(), "#microsoft.graph.security.siteSource" => new global::Microsoft.Graph.Models.Security.SiteSource(), "#microsoft.graph.security.sslCertificate" => new global::Microsoft.Graph.Models.Security.SslCertificate(), "#microsoft.graph.security.subcategoryTemplate" => new global::Microsoft.Graph.Models.Security.SubcategoryTemplate(), diff --git a/src/Microsoft.Graph/Generated/Models/KeyCredentialConfiguration.cs b/src/Microsoft.Graph/Generated/Models/KeyCredentialConfiguration.cs index 6bf20497c4c..7669b4fd6b8 100644 --- a/src/Microsoft.Graph/Generated/Models/KeyCredentialConfiguration.cs +++ b/src/Microsoft.Graph/Generated/Models/KeyCredentialConfiguration.cs @@ -55,6 +55,12 @@ public DateTimeOffset? RestrictForAppsCreatedAfterDateTime get { return BackingStore?.Get("restrictionType"); } set { BackingStore?.Set("restrictionType", value); } } + /// The state property + public global::Microsoft.Graph.Models.AppManagementRestrictionState? State + { + get { return BackingStore?.Get("state"); } + set { BackingStore?.Set("state", value); } + } /// /// Instantiates a new and sets the default values. /// @@ -85,6 +91,7 @@ public virtual IDictionary> GetFieldDeserializers() { "@odata.type", n => { OdataType = n.GetStringValue(); } }, { "restrictForAppsCreatedAfterDateTime", n => { RestrictForAppsCreatedAfterDateTime = n.GetDateTimeOffsetValue(); } }, { "restrictionType", n => { RestrictionType = n.GetEnumValue(); } }, + { "state", n => { State = n.GetEnumValue(); } }, }; } /// @@ -98,6 +105,7 @@ public virtual void Serialize(ISerializationWriter writer) writer.WriteStringValue("@odata.type", OdataType); writer.WriteDateTimeOffsetValue("restrictForAppsCreatedAfterDateTime", RestrictForAppsCreatedAfterDateTime); writer.WriteEnumValue("restrictionType", RestrictionType); + writer.WriteEnumValue("state", State); writer.WriteAdditionalData(AdditionalData); } } diff --git a/src/Microsoft.Graph/Generated/Models/PasswordCredentialConfiguration.cs b/src/Microsoft.Graph/Generated/Models/PasswordCredentialConfiguration.cs index beee6830bf0..3baf719d4c8 100644 --- a/src/Microsoft.Graph/Generated/Models/PasswordCredentialConfiguration.cs +++ b/src/Microsoft.Graph/Generated/Models/PasswordCredentialConfiguration.cs @@ -55,6 +55,12 @@ public DateTimeOffset? RestrictForAppsCreatedAfterDateTime get { return BackingStore?.Get("restrictionType"); } set { BackingStore?.Set("restrictionType", value); } } + /// The state property + public global::Microsoft.Graph.Models.AppManagementRestrictionState? State + { + get { return BackingStore?.Get("state"); } + set { BackingStore?.Set("state", value); } + } /// /// Instantiates a new and sets the default values. /// @@ -85,6 +91,7 @@ public virtual IDictionary> GetFieldDeserializers() { "@odata.type", n => { OdataType = n.GetStringValue(); } }, { "restrictForAppsCreatedAfterDateTime", n => { RestrictForAppsCreatedAfterDateTime = n.GetDateTimeOffsetValue(); } }, { "restrictionType", n => { RestrictionType = n.GetEnumValue(); } }, + { "state", n => { State = n.GetEnumValue(); } }, }; } /// @@ -98,6 +105,7 @@ public virtual void Serialize(ISerializationWriter writer) writer.WriteStringValue("@odata.type", OdataType); writer.WriteDateTimeOffsetValue("restrictForAppsCreatedAfterDateTime", RestrictForAppsCreatedAfterDateTime); writer.WriteEnumValue("restrictionType", RestrictionType); + writer.WriteEnumValue("state", State); writer.WriteAdditionalData(AdditionalData); } } diff --git a/src/Microsoft.Graph/Generated/Models/Security/DeploymentAccessKeyType.cs b/src/Microsoft.Graph/Generated/Models/Security/DeploymentAccessKeyType.cs new file mode 100644 index 00000000000..4ed486ea5a1 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/DeploymentAccessKeyType.cs @@ -0,0 +1,99 @@ +// +#pragma warning disable CS0618 +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions.Store; +using System.Collections.Generic; +using System.IO; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public partial class DeploymentAccessKeyType : IAdditionalDataHolder, IBackedModel, IParsable + #pragma warning restore CS1591 + { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData + { + get { return BackingStore.Get>("AdditionalData") ?? new Dictionary(); } + set { BackingStore.Set("AdditionalData", value); } + } + /// Stores model information. + public IBackingStore BackingStore { get; private set; } + /// The deployment access key. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DeploymentAccessKey + { + get { return BackingStore?.Get("deploymentAccessKey"); } + set { BackingStore?.Set("deploymentAccessKey", value); } + } +#nullable restore +#else + public string DeploymentAccessKey + { + get { return BackingStore?.Get("deploymentAccessKey"); } + set { BackingStore?.Set("deploymentAccessKey", value); } + } +#endif + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#nullable restore +#else + public string OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#endif + /// + /// Instantiates a new and sets the default values. + /// + public DeploymentAccessKeyType() + { + BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// A + /// The parse node to use to read the discriminator value and create the object + public static global::Microsoft.Graph.Models.Security.DeploymentAccessKeyType CreateFromDiscriminatorValue(IParseNode parseNode) + { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new global::Microsoft.Graph.Models.Security.DeploymentAccessKeyType(); + } + /// + /// The deserialization information for the current model + /// + /// A IDictionary<string, Action<IParseNode>> + public virtual IDictionary> GetFieldDeserializers() + { + return new Dictionary> + { + { "deploymentAccessKey", n => { DeploymentAccessKey = n.GetStringValue(); } }, + { "@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("deploymentAccessKey", DeploymentAccessKey); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteAdditionalData(AdditionalData); + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Models/Security/DeploymentStatus.cs b/src/Microsoft.Graph/Generated/Models/Security/DeploymentStatus.cs new file mode 100644 index 00000000000..1e2b1c69294 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/DeploymentStatus.cs @@ -0,0 +1,52 @@ +// +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public enum DeploymentStatus + #pragma warning restore CS1591 + { + [EnumMember(Value = "upToDate")] + #pragma warning disable CS1591 + UpToDate, + #pragma warning restore CS1591 + [EnumMember(Value = "outdated")] + #pragma warning disable CS1591 + Outdated, + #pragma warning restore CS1591 + [EnumMember(Value = "updating")] + #pragma warning disable CS1591 + Updating, + #pragma warning restore CS1591 + [EnumMember(Value = "updateFailed")] + #pragma warning disable CS1591 + UpdateFailed, + #pragma warning restore CS1591 + [EnumMember(Value = "notConfigured")] + #pragma warning disable CS1591 + NotConfigured, + #pragma warning restore CS1591 + [EnumMember(Value = "unreachable")] + #pragma warning disable CS1591 + Unreachable, + #pragma warning restore CS1591 + [EnumMember(Value = "disconnected")] + #pragma warning disable CS1591 + Disconnected, + #pragma warning restore CS1591 + [EnumMember(Value = "startFailure")] + #pragma warning disable CS1591 + StartFailure, + #pragma warning restore CS1591 + [EnumMember(Value = "syncing")] + #pragma warning disable CS1591 + Syncing, + #pragma warning restore CS1591 + [EnumMember(Value = "unknownFutureValue")] + #pragma warning disable CS1591 + UnknownFutureValue, + #pragma warning restore CS1591 + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/EvidenceRemediationStatus.cs b/src/Microsoft.Graph/Generated/Models/Security/EvidenceRemediationStatus.cs index 141a02bd363..7c3ed3787fe 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/EvidenceRemediationStatus.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/EvidenceRemediationStatus.cs @@ -32,5 +32,29 @@ public enum EvidenceRemediationStatus #pragma warning disable CS1591 UnknownFutureValue, #pragma warning restore CS1591 + [EnumMember(Value = "active")] + #pragma warning disable CS1591 + Active, + #pragma warning restore CS1591 + [EnumMember(Value = "pendingApproval")] + #pragma warning disable CS1591 + PendingApproval, + #pragma warning restore CS1591 + [EnumMember(Value = "declined")] + #pragma warning disable CS1591 + Declined, + #pragma warning restore CS1591 + [EnumMember(Value = "unremediated")] + #pragma warning disable CS1591 + Unremediated, + #pragma warning restore CS1591 + [EnumMember(Value = "running")] + #pragma warning disable CS1591 + Running, + #pragma warning restore CS1591 + [EnumMember(Value = "partiallyRemediated")] + #pragma warning disable CS1591 + PartiallyRemediated, + #pragma warning restore CS1591 } } diff --git a/src/Microsoft.Graph/Generated/Models/Security/IdentityContainer.cs b/src/Microsoft.Graph/Generated/Models/Security/IdentityContainer.cs index 90737469486..0268d2ca6ba 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/IdentityContainer.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/IdentityContainer.cs @@ -27,6 +27,22 @@ public partial class IdentityContainer : global::Microsoft.Graph.Models.Entity, get { return BackingStore?.Get>("healthIssues"); } set { BackingStore?.Set("healthIssues", value); } } +#endif + /// Represents a customer's Microsoft Defender for Identity sensors. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Sensors + { + get { return BackingStore?.Get?>("sensors"); } + set { BackingStore?.Set("sensors", value); } + } +#nullable restore +#else + public List Sensors + { + get { return BackingStore?.Get>("sensors"); } + set { BackingStore?.Set("sensors", value); } + } #endif /// /// Creates a new instance of the appropriate class based on discriminator value @@ -47,6 +63,7 @@ public override IDictionary> GetFieldDeserializers() return new Dictionary>(base.GetFieldDeserializers()) { { "healthIssues", n => { HealthIssues = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.Security.HealthIssue.CreateFromDiscriminatorValue)?.AsList(); } }, + { "sensors", n => { Sensors = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.Security.Sensor.CreateFromDiscriminatorValue)?.AsList(); } }, }; } /// @@ -58,6 +75,7 @@ public override void Serialize(ISerializationWriter writer) _ = writer ?? throw new ArgumentNullException(nameof(writer)); base.Serialize(writer); writer.WriteCollectionOfObjectValues("healthIssues", HealthIssues); + writer.WriteCollectionOfObjectValues("sensors", Sensors); } } } diff --git a/src/Microsoft.Graph/Generated/Models/Security/NetworkAdapter.cs b/src/Microsoft.Graph/Generated/Models/Security/NetworkAdapter.cs new file mode 100644 index 00000000000..4e91fac8362 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/NetworkAdapter.cs @@ -0,0 +1,72 @@ +// +#pragma warning disable CS0618 +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public partial class NetworkAdapter : global::Microsoft.Graph.Models.Entity, IParsable + #pragma warning restore CS1591 + { + /// Indicates whether the network adapter is selected for capturing and analyzing network traffic. + public bool? IsEnabled + { + get { return BackingStore?.Get("isEnabled"); } + set { BackingStore?.Set("isEnabled", value); } + } + /// The name of the network adapter. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name + { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name + { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// A + /// The parse node to use to read the discriminator value and create the object + public static new global::Microsoft.Graph.Models.Security.NetworkAdapter CreateFromDiscriminatorValue(IParseNode parseNode) + { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new global::Microsoft.Graph.Models.Security.NetworkAdapter(); + } + /// + /// The deserialization information for the current model + /// + /// A IDictionary<string, Action<IParseNode>> + public override IDictionary> GetFieldDeserializers() + { + return new Dictionary>(base.GetFieldDeserializers()) + { + { "isEnabled", n => { IsEnabled = n.GetBoolValue(); } }, + { "name", n => { Name = 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.WriteBoolValue("isEnabled", IsEnabled); + writer.WriteStringValue("name", Name); + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Models/Security/Sensor.cs b/src/Microsoft.Graph/Generated/Models/Security/Sensor.cs new file mode 100644 index 00000000000..bc143226fa6 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/Sensor.cs @@ -0,0 +1,176 @@ +// +#pragma warning disable CS0618 +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public partial class Sensor : global::Microsoft.Graph.Models.Entity, IParsable + #pragma warning restore CS1591 + { + /// The date and time when the sensor was generated. The Timestamp 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. + public DateTimeOffset? CreatedDateTime + { + get { return BackingStore?.Get("createdDateTime"); } + set { BackingStore?.Set("createdDateTime", value); } + } + /// The deploymentStatus property + public global::Microsoft.Graph.Models.Security.DeploymentStatus? DeploymentStatus + { + get { return BackingStore?.Get("deploymentStatus"); } + set { BackingStore?.Set("deploymentStatus", value); } + } + /// The display name of the sensor. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DisplayName + { + get { return BackingStore?.Get("displayName"); } + set { BackingStore?.Set("displayName", value); } + } +#nullable restore +#else + public string DisplayName + { + get { return BackingStore?.Get("displayName"); } + set { BackingStore?.Set("displayName", value); } + } +#endif + /// The fully qualified domain name of the sensor. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DomainName + { + get { return BackingStore?.Get("domainName"); } + set { BackingStore?.Set("domainName", value); } + } +#nullable restore +#else + public string DomainName + { + get { return BackingStore?.Get("domainName"); } + set { BackingStore?.Set("domainName", value); } + } +#endif + /// Represents potential issues within a customer's Microsoft Defender for Identity configuration that Microsoft Defender for Identity identified related to the sensor. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? HealthIssues + { + get { return BackingStore?.Get?>("healthIssues"); } + set { BackingStore?.Set("healthIssues", value); } + } +#nullable restore +#else + public List HealthIssues + { + get { return BackingStore?.Get>("healthIssues"); } + set { BackingStore?.Set("healthIssues", value); } + } +#endif + /// The healthStatus property + public global::Microsoft.Graph.Models.Security.SensorHealthStatus? HealthStatus + { + get { return BackingStore?.Get("healthStatus"); } + set { BackingStore?.Set("healthStatus", value); } + } + /// This field displays the count of health issues related to this sensor. + public long? OpenHealthIssuesCount + { + get { return BackingStore?.Get("openHealthIssuesCount"); } + set { BackingStore?.Set("openHealthIssuesCount", value); } + } + /// The sensorType property + public global::Microsoft.Graph.Models.Security.SensorType? SensorType + { + get { return BackingStore?.Get("sensorType"); } + set { BackingStore?.Set("sensorType", value); } + } + /// The settings property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public global::Microsoft.Graph.Models.Security.SensorSettings? Settings + { + get { return BackingStore?.Get("settings"); } + set { BackingStore?.Set("settings", value); } + } +#nullable restore +#else + public global::Microsoft.Graph.Models.Security.SensorSettings Settings + { + get { return BackingStore?.Get("settings"); } + set { BackingStore?.Set("settings", value); } + } +#endif + /// The version of the sensor. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Version + { + get { return BackingStore?.Get("version"); } + set { BackingStore?.Set("version", value); } + } +#nullable restore +#else + public string Version + { + get { return BackingStore?.Get("version"); } + set { BackingStore?.Set("version", value); } + } +#endif + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// A + /// The parse node to use to read the discriminator value and create the object + public static new global::Microsoft.Graph.Models.Security.Sensor CreateFromDiscriminatorValue(IParseNode parseNode) + { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new global::Microsoft.Graph.Models.Security.Sensor(); + } + /// + /// The deserialization information for the current model + /// + /// A IDictionary<string, Action<IParseNode>> + public override IDictionary> GetFieldDeserializers() + { + return new Dictionary>(base.GetFieldDeserializers()) + { + { "createdDateTime", n => { CreatedDateTime = n.GetDateTimeOffsetValue(); } }, + { "deploymentStatus", n => { DeploymentStatus = n.GetEnumValue(); } }, + { "displayName", n => { DisplayName = n.GetStringValue(); } }, + { "domainName", n => { DomainName = n.GetStringValue(); } }, + { "healthIssues", n => { HealthIssues = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.Security.HealthIssue.CreateFromDiscriminatorValue)?.AsList(); } }, + { "healthStatus", n => { HealthStatus = n.GetEnumValue(); } }, + { "openHealthIssuesCount", n => { OpenHealthIssuesCount = n.GetLongValue(); } }, + { "sensorType", n => { SensorType = n.GetEnumValue(); } }, + { "settings", n => { Settings = n.GetObjectValue(global::Microsoft.Graph.Models.Security.SensorSettings.CreateFromDiscriminatorValue); } }, + { "version", n => { Version = 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.WriteDateTimeOffsetValue("createdDateTime", CreatedDateTime); + writer.WriteEnumValue("deploymentStatus", DeploymentStatus); + writer.WriteStringValue("displayName", DisplayName); + writer.WriteStringValue("domainName", DomainName); + writer.WriteCollectionOfObjectValues("healthIssues", HealthIssues); + writer.WriteEnumValue("healthStatus", HealthStatus); + writer.WriteLongValue("openHealthIssuesCount", OpenHealthIssuesCount); + writer.WriteEnumValue("sensorType", SensorType); + writer.WriteObjectValue("settings", Settings); + writer.WriteStringValue("version", Version); + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Models/Security/SensorCollectionResponse.cs b/src/Microsoft.Graph/Generated/Models/Security/SensorCollectionResponse.cs new file mode 100644 index 00000000000..d4813ef072f --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/SensorCollectionResponse.cs @@ -0,0 +1,64 @@ +// +#pragma warning disable CS0618 +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public partial class SensorCollectionResponse : global::Microsoft.Graph.Models.BaseCollectionPaginationCountResponse, IParsable + #pragma warning restore CS1591 + { + /// The value property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Value + { + get { return BackingStore?.Get?>("value"); } + set { BackingStore?.Set("value", value); } + } +#nullable restore +#else + public List Value + { + get { return BackingStore?.Get>("value"); } + set { BackingStore?.Set("value", value); } + } +#endif + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// A + /// The parse node to use to read the discriminator value and create the object + public static new global::Microsoft.Graph.Models.Security.SensorCollectionResponse CreateFromDiscriminatorValue(IParseNode parseNode) + { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new global::Microsoft.Graph.Models.Security.SensorCollectionResponse(); + } + /// + /// The deserialization information for the current model + /// + /// A IDictionary<string, Action<IParseNode>> + public override IDictionary> GetFieldDeserializers() + { + return new Dictionary>(base.GetFieldDeserializers()) + { + { "value", n => { Value = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.Security.Sensor.CreateFromDiscriminatorValue)?.AsList(); } }, + }; + } + /// + /// 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); + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Models/Security/SensorDeploymentPackage.cs b/src/Microsoft.Graph/Generated/Models/Security/SensorDeploymentPackage.cs new file mode 100644 index 00000000000..f280cf26065 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/SensorDeploymentPackage.cs @@ -0,0 +1,117 @@ +// +#pragma warning disable CS0618 +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions.Store; +using System.Collections.Generic; +using System.IO; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public partial class SensorDeploymentPackage : IAdditionalDataHolder, IBackedModel, IParsable + #pragma warning restore CS1591 + { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData + { + get { return BackingStore.Get>("AdditionalData") ?? new Dictionary(); } + set { BackingStore.Set("AdditionalData", value); } + } + /// Stores model information. + public IBackingStore BackingStore { get; private set; } + /// URL to download the sensor deployment package. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? DownloadUrl + { + get { return BackingStore?.Get("downloadUrl"); } + set { BackingStore?.Set("downloadUrl", value); } + } +#nullable restore +#else + public string DownloadUrl + { + get { return BackingStore?.Get("downloadUrl"); } + set { BackingStore?.Set("downloadUrl", value); } + } +#endif + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#nullable restore +#else + public string OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#endif + /// Version of the sensor. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Version + { + get { return BackingStore?.Get("version"); } + set { BackingStore?.Set("version", value); } + } +#nullable restore +#else + public string Version + { + get { return BackingStore?.Get("version"); } + set { BackingStore?.Set("version", value); } + } +#endif + /// + /// Instantiates a new and sets the default values. + /// + public SensorDeploymentPackage() + { + BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// A + /// The parse node to use to read the discriminator value and create the object + public static global::Microsoft.Graph.Models.Security.SensorDeploymentPackage CreateFromDiscriminatorValue(IParseNode parseNode) + { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new global::Microsoft.Graph.Models.Security.SensorDeploymentPackage(); + } + /// + /// The deserialization information for the current model + /// + /// A IDictionary<string, Action<IParseNode>> + public virtual IDictionary> GetFieldDeserializers() + { + return new Dictionary> + { + { "downloadUrl", n => { DownloadUrl = n.GetStringValue(); } }, + { "@odata.type", n => { OdataType = n.GetStringValue(); } }, + { "version", n => { Version = 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("downloadUrl", DownloadUrl); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteStringValue("version", Version); + writer.WriteAdditionalData(AdditionalData); + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Models/Security/SensorHealthStatus.cs b/src/Microsoft.Graph/Generated/Models/Security/SensorHealthStatus.cs new file mode 100644 index 00000000000..09ba3af97f8 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/SensorHealthStatus.cs @@ -0,0 +1,32 @@ +// +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public enum SensorHealthStatus + #pragma warning restore CS1591 + { + [EnumMember(Value = "healthy")] + #pragma warning disable CS1591 + Healthy, + #pragma warning restore CS1591 + [EnumMember(Value = "notHealthyLow")] + #pragma warning disable CS1591 + NotHealthyLow, + #pragma warning restore CS1591 + [EnumMember(Value = "notHealthyMedium")] + #pragma warning disable CS1591 + NotHealthyMedium, + #pragma warning restore CS1591 + [EnumMember(Value = "notHealthyHigh")] + #pragma warning disable CS1591 + NotHealthyHigh, + #pragma warning restore CS1591 + [EnumMember(Value = "unknownFutureValue")] + #pragma warning disable CS1591 + UnknownFutureValue, + #pragma warning restore CS1591 + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/SensorSettings.cs b/src/Microsoft.Graph/Generated/Models/Security/SensorSettings.cs new file mode 100644 index 00000000000..b405d59ff26 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/SensorSettings.cs @@ -0,0 +1,143 @@ +// +#pragma warning disable CS0618 +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions.Store; +using System.Collections.Generic; +using System.IO; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public partial class SensorSettings : IAdditionalDataHolder, IBackedModel, IParsable + #pragma warning restore CS1591 + { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData + { + get { return BackingStore.Get>("AdditionalData") ?? new Dictionary(); } + set { BackingStore.Set("AdditionalData", value); } + } + /// Stores model information. + public IBackingStore BackingStore { get; private set; } + /// Description of the sensor. +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Description + { + get { return BackingStore?.Get("description"); } + set { BackingStore?.Set("description", value); } + } +#nullable restore +#else + public string Description + { + get { return BackingStore?.Get("description"); } + set { BackingStore?.Set("description", value); } + } +#endif + /// DNS names for the domain controller +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? DomainControllerDnsNames + { + get { return BackingStore?.Get?>("domainControllerDnsNames"); } + set { BackingStore?.Set("domainControllerDnsNames", value); } + } +#nullable restore +#else + public List DomainControllerDnsNames + { + get { return BackingStore?.Get>("domainControllerDnsNames"); } + set { BackingStore?.Set("domainControllerDnsNames", value); } + } +#endif + /// Indicates whether to delay updates for the sensor. + public bool? IsDelayedDeploymentEnabled + { + get { return BackingStore?.Get("isDelayedDeploymentEnabled"); } + set { BackingStore?.Set("isDelayedDeploymentEnabled", value); } + } + /// The networkAdapters property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? NetworkAdapters + { + get { return BackingStore?.Get?>("networkAdapters"); } + set { BackingStore?.Set("networkAdapters", value); } + } +#nullable restore +#else + public List NetworkAdapters + { + get { return BackingStore?.Get>("networkAdapters"); } + set { BackingStore?.Set("networkAdapters", value); } + } +#endif + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#nullable restore +#else + public string OdataType + { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#endif + /// + /// Instantiates a new and sets the default values. + /// + public SensorSettings() + { + BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// A + /// The parse node to use to read the discriminator value and create the object + public static global::Microsoft.Graph.Models.Security.SensorSettings CreateFromDiscriminatorValue(IParseNode parseNode) + { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new global::Microsoft.Graph.Models.Security.SensorSettings(); + } + /// + /// The deserialization information for the current model + /// + /// A IDictionary<string, Action<IParseNode>> + public virtual IDictionary> GetFieldDeserializers() + { + return new Dictionary> + { + { "description", n => { Description = n.GetStringValue(); } }, + { "domainControllerDnsNames", n => { DomainControllerDnsNames = n.GetCollectionOfPrimitiveValues()?.AsList(); } }, + { "isDelayedDeploymentEnabled", n => { IsDelayedDeploymentEnabled = n.GetBoolValue(); } }, + { "networkAdapters", n => { NetworkAdapters = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.Security.NetworkAdapter.CreateFromDiscriminatorValue)?.AsList(); } }, + { "@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("description", Description); + writer.WriteCollectionOfPrimitiveValues("domainControllerDnsNames", DomainControllerDnsNames); + writer.WriteBoolValue("isDelayedDeploymentEnabled", IsDelayedDeploymentEnabled); + writer.WriteCollectionOfObjectValues("networkAdapters", NetworkAdapters); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteAdditionalData(AdditionalData); + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Models/Security/SensorType.cs b/src/Microsoft.Graph/Generated/Models/Security/SensorType.cs new file mode 100644 index 00000000000..21ed801e994 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/SensorType.cs @@ -0,0 +1,36 @@ +// +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models.Security +{ + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + #pragma warning disable CS1591 + public enum SensorType + #pragma warning restore CS1591 + { + [EnumMember(Value = "adConnectIntegrated")] + #pragma warning disable CS1591 + AdConnectIntegrated, + #pragma warning restore CS1591 + [EnumMember(Value = "adcsIntegrated")] + #pragma warning disable CS1591 + AdcsIntegrated, + #pragma warning restore CS1591 + [EnumMember(Value = "adfsIntegrated")] + #pragma warning disable CS1591 + AdfsIntegrated, + #pragma warning restore CS1591 + [EnumMember(Value = "domainControllerIntegrated")] + #pragma warning disable CS1591 + DomainControllerIntegrated, + #pragma warning restore CS1591 + [EnumMember(Value = "domainControllerStandalone")] + #pragma warning disable CS1591 + DomainControllerStandalone, + #pragma warning restore CS1591 + [EnumMember(Value = "unknownFutureValue")] + #pragma warning disable CS1591 + UnknownFutureValue, + #pragma warning restore CS1591 + } +} diff --git a/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs index 181da8e8a7d..876f3745780 100644 --- a/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs @@ -111,8 +111,8 @@ public async Task DeleteAsync(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. - /// Find more info here + /// Read properties and relationships of the organization object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -180,7 +180,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. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -238,7 +238,7 @@ public partial class OrganizationItemRequestBuilderDeleteRequestConfiguration : { } /// - /// 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. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class OrganizationItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Organization/OrganizationRequestBuilder.cs b/src/Microsoft.Graph/Generated/Organization/OrganizationRequestBuilder.cs index cc8a37c53f4..f902904958c 100644 --- a/src/Microsoft.Graph/Generated/Organization/OrganizationRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Organization/OrganizationRequestBuilder.cs @@ -78,8 +78,8 @@ public OrganizationRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) { } /// - /// Retrieve a list of organization objects. There's only one organization object in the collection. - /// Find more info here + /// List properties and relationships of the organization objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -127,7 +127,7 @@ public OrganizationRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Organization.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Retrieve a list of organization objects. There's only one organization object in the collection. + /// List properties and relationships of the organization objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -177,7 +177,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.Organization.OrganizationRequestBuilder(rawUrl, RequestAdapter); } /// - /// Retrieve a list of organization objects. There's only one organization object in the collection. + /// List properties and relationships of the organization objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class OrganizationRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs b/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs index 2c95bdf9416..c6983af56ed 100644 --- a/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs @@ -82,8 +82,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.CrossTenantIdentitySyncPolicyPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the user synchronization policy of a partner-specific configuration. - /// Find more info here + /// Create a cross-tenant user synchronization policy for a partner-specific configuration. + /// Find more info here /// /// A /// The request body @@ -146,7 +146,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the user synchronization policy of a partner-specific configuration. + /// Create a cross-tenant user synchronization policy for a partner-specific configuration. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/MicrosoftGraphSecurityApplyHold/MicrosoftGraphSecurityApplyHoldRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/MicrosoftGraphSecurityApplyHold/MicrosoftGraphSecurityApplyHoldRequestBuilder.cs index 162cf67fe40..2acdfc836a2 100644 --- a/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/MicrosoftGraphSecurityApplyHold/MicrosoftGraphSecurityApplyHoldRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/Custodians/Item/MicrosoftGraphSecurityApplyHold/MicrosoftGraphSecurityApplyHoldRequestBuilder.cs @@ -34,7 +34,7 @@ public MicrosoftGraphSecurityApplyHoldRequestBuilder(string rawUrl, IRequestAdap { } /// - /// Start the process of applying hold on eDiscovery custodians. After the operation is created, you can get the status by retrieving the Location parameter from the response headers. The location provides a URL that will return an eDiscoveryHoldOperation object. + /// Start the process of applying hold on eDiscovery custodians. After the operation is created, you can use Get ediscoveryCustodian to retrieve the status of an ediscoveryCustodian. /// Find more info here /// /// Cancellation token to use when cancelling requests @@ -57,7 +57,7 @@ public async Task PostAsync(Action> await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Start the process of applying hold on eDiscovery custodians. After the operation is created, you can get the status by retrieving the Location parameter from the response headers. The location provides a URL that will return an eDiscoveryHoldOperation object. + /// Start the process of applying hold on eDiscovery custodians. After the operation is created, you can use Get ediscoveryCustodian to retrieve the status of an ediscoveryCustodian. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Security/Identities/IdentitiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/IdentitiesRequestBuilder.cs index e6cbeef5af4..f857e3a8e9d 100644 --- a/src/Microsoft.Graph/Generated/Security/Identities/IdentitiesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Security/Identities/IdentitiesRequestBuilder.cs @@ -3,6 +3,7 @@ using Microsoft.Graph.Models.ODataErrors; using Microsoft.Graph.Models.Security; using Microsoft.Graph.Security.Identities.HealthIssues; +using Microsoft.Graph.Security.Identities.Sensors; using Microsoft.Kiota.Abstractions.Extensions; using Microsoft.Kiota.Abstractions.Serialization; using Microsoft.Kiota.Abstractions; @@ -24,6 +25,11 @@ public partial class IdentitiesRequestBuilder : BaseRequestBuilder { get => new global::Microsoft.Graph.Security.Identities.HealthIssues.HealthIssuesRequestBuilder(PathParameters, RequestAdapter); } + /// Provides operations to manage the sensors property of the microsoft.graph.security.identityContainer entity. + public global::Microsoft.Graph.Security.Identities.Sensors.SensorsRequestBuilder Sensors + { + get => new global::Microsoft.Graph.Security.Identities.Sensors.SensorsRequestBuilder(PathParameters, RequestAdapter); + } /// /// Instantiates a new and sets the default values. /// diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Count/CountRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Count/CountRequestBuilder.cs new file mode 100644 index 00000000000..bb30ed875fe --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Count/CountRequestBuilder.cs @@ -0,0 +1,124 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.Count +{ + /// + /// Provides operations to count the resources in the collection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class CountRequestBuilder : BaseRequestBuilder + { + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public CountRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/$count{?%24filter,%24search}", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/$count{?%24filter,%24search}", rawUrl) + { + } + /// + /// Get the number of the resource + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Get the number of the resource + /// + /// A + /// 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; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Get the number of the resource + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial 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 + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class CountRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Count/CountRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Count/CountRequestBuilder.cs new file mode 100644 index 00000000000..1c00a0e95a6 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Count/CountRequestBuilder.cs @@ -0,0 +1,124 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count +{ + /// + /// Provides operations to count the resources in the collection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class CountRequestBuilder : BaseRequestBuilder + { + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public CountRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}/healthIssues/$count{?%24filter,%24search}", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}/healthIssues/$count{?%24filter,%24search}", rawUrl) + { + } + /// + /// Get the number of the resource + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Get the number of the resource + /// + /// A + /// 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; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Get the number of the resource + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial 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 + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class CountRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/HealthIssuesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/HealthIssuesRequestBuilder.cs new file mode 100644 index 00000000000..bc7c14f5e24 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/HealthIssuesRequestBuilder.cs @@ -0,0 +1,183 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Graph.Models.Security; +using Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count; +using Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues +{ + /// + /// Provides operations to manage the healthIssues property of the microsoft.graph.security.sensor entity. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class HealthIssuesRequestBuilder : BaseRequestBuilder + { + /// Provides operations to count the resources in the collection. + public global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder Count + { + get => new global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder(PathParameters, RequestAdapter); + } + /// Provides operations to manage the healthIssues property of the microsoft.graph.security.sensor entity. + /// The unique identifier of healthIssue + /// A + public global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder this[string position] + { + get + { + var urlTplParams = new Dictionary(PathParameters); + urlTplParams.Add("healthIssue%2Did", position); + return new global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder(urlTplParams, RequestAdapter); + } + } + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public HealthIssuesRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}/healthIssues{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public HealthIssuesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}/healthIssues{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl) + { + } + /// + /// Represents potential issues within a customer's Microsoft Defender for Identity configuration that Microsoft Defender for Identity identified related to the sensor. + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.HealthIssueCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Represents potential issues within a customer's Microsoft Defender for Identity configuration that Microsoft Defender for Identity identified related to the sensor. + /// + /// A + /// 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; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.HealthIssuesRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.HealthIssuesRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Represents potential issues within a customer's Microsoft Defender for Identity configuration that Microsoft Defender for Identity identified related to the sensor. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class HealthIssuesRequestBuilderGetQueryParameters + { + /// 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; } + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class HealthIssuesRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Item/HealthIssueItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Item/HealthIssueItemRequestBuilder.cs new file mode 100644 index 00000000000..f611eabf90d --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/HealthIssues/Item/HealthIssueItemRequestBuilder.cs @@ -0,0 +1,125 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Graph.Models.Security; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item +{ + /// + /// Provides operations to manage the healthIssues property of the microsoft.graph.security.sensor entity. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class HealthIssueItemRequestBuilder : BaseRequestBuilder + { + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public HealthIssueItemRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}/healthIssues/{healthIssue%2Did}{?%24expand,%24select}", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public HealthIssueItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}/healthIssues/{healthIssue%2Did}{?%24expand,%24select}", rawUrl) + { + } + /// + /// Represents potential issues within a customer's Microsoft Defender for Identity configuration that Microsoft Defender for Identity identified related to the sensor. + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.HealthIssue.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Represents potential issues within a customer's Microsoft Defender for Identity configuration that Microsoft Defender for Identity identified related to the sensor. + /// + /// A + /// 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; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Represents potential issues within a customer's Microsoft Defender for Identity configuration that Microsoft Defender for Identity identified related to the sensor. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class HealthIssueItemRequestBuilderGetQueryParameters + { + /// 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 + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class HealthIssueItemRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/SensorItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/SensorItemRequestBuilder.cs new file mode 100644 index 00000000000..d64778acac6 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/Item/SensorItemRequestBuilder.cs @@ -0,0 +1,238 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Graph.Models.Security; +using Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.Item +{ + /// + /// Provides operations to manage the sensors property of the microsoft.graph.security.identityContainer entity. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorItemRequestBuilder : BaseRequestBuilder + { + /// Provides operations to manage the healthIssues property of the microsoft.graph.security.sensor entity. + public global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.HealthIssuesRequestBuilder HealthIssues + { + get => new global::Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.HealthIssuesRequestBuilder(PathParameters, RequestAdapter); + } + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public SensorItemRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}{?%24expand,%24select}", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public SensorItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/{sensor%2Did}{?%24expand,%24select}", rawUrl) + { + } + /// + /// Delete a sensor object. + /// Find more info here + /// + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task DeleteAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task DeleteAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToDeleteRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Read the properties and relationships of a sensor object. + /// Find more info here + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.Sensor.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Update the properties of a sensor object. + /// Find more info here + /// + /// A + /// The request body + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task PatchAsync(global::Microsoft.Graph.Models.Security.Sensor body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task PatchAsync(global::Microsoft.Graph.Models.Security.Sensor body, Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + _ = body ?? throw new ArgumentNullException(nameof(body)); + var requestInfo = ToPatchRequestInformation(body, requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.Sensor.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Delete a sensor object. + /// + /// A + /// 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; + } + /// + /// Read the properties and relationships of a sensor object. + /// + /// A + /// 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 properties of a sensor object. + /// + /// A + /// 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(global::Microsoft.Graph.Models.Security.Sensor body, Action>? requestConfiguration = default) + { +#nullable restore +#else + public RequestInformation ToPatchRequestInformation(global::Microsoft.Graph.Models.Security.Sensor 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"); + requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body); + return requestInfo; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorItemRequestBuilderDeleteRequestConfiguration : RequestConfiguration + { + } + /// + /// Read the properties and relationships of a sensor object. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorItemRequestBuilderGetQueryParameters + { + /// 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 + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorItemRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorItemRequestBuilderPatchRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentAccessKey/MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentAccessKey/MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder.cs new file mode 100644 index 00000000000..0a20eda1092 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentAccessKey/MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder.cs @@ -0,0 +1,98 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Graph.Models.Security; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey +{ + /// + /// Provides operations to call the getDeploymentAccessKey method. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder : BaseRequestBuilder + { + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/microsoft.graph.security.getDeploymentAccessKey()", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/microsoft.graph.security.getDeploymentAccessKey()", rawUrl) + { + } + /// + /// Get the deployment access key for Microsoft Defender for Identity that is required to install sensors associated with the workspace. + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.DeploymentAccessKeyType.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Get the deployment access key for Microsoft Defender for Identity that is required to install sensors associated with the workspace. + /// + /// A + /// 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; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentPackageUri/MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentPackageUri/MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder.cs new file mode 100644 index 00000000000..f4e23dd565c --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityGetDeploymentPackageUri/MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder.cs @@ -0,0 +1,98 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Graph.Models.Security; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri +{ + /// + /// Provides operations to call the getDeploymentPackageUri method. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder : BaseRequestBuilder + { + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/microsoft.graph.security.getDeploymentPackageUri()", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/microsoft.graph.security.getDeploymentPackageUri()", rawUrl) + { + } + /// + /// Get the sensor deployment package URL and version. You can use this URL to download the installer to install the sensor on a server. + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.SensorDeploymentPackage.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Get the sensor deployment package URL and version. You can use this URL to download the installer to install the sensor on a server. + /// + /// A + /// 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; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityRegenerateDeploymentAccessKey/MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityRegenerateDeploymentAccessKey/MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder.cs new file mode 100644 index 00000000000..c3ff325883d --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/MicrosoftGraphSecurityRegenerateDeploymentAccessKey/MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder.cs @@ -0,0 +1,98 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Graph.Models.Security; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey +{ + /// + /// Provides operations to call the regenerateDeploymentAccessKey method. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder : BaseRequestBuilder + { + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/microsoft.graph.security.regenerateDeploymentAccessKey", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors/microsoft.graph.security.regenerateDeploymentAccessKey", rawUrl) + { + } + /// + /// Generate a new deployment access key that can be used to install a sensor associated with the workspace. + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task PostAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task PostAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToPostRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.DeploymentAccessKeyType.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Generate a new deployment access key that can be used to install a sensor associated with the workspace. + /// + /// A + /// 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(Action>? requestConfiguration = default) + { +#nullable restore +#else + public RequestInformation ToPostRequestInformation(Action> requestConfiguration = default) + { +#endif + var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters); + requestInfo.Configure(requestConfiguration); + requestInfo.Headers.TryAdd("Accept", "application/json"); + return requestInfo; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilderPostRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Security/Identities/Sensors/SensorsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/SensorsRequestBuilder.cs new file mode 100644 index 00000000000..29b781d2de9 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Security/Identities/Sensors/SensorsRequestBuilder.cs @@ -0,0 +1,257 @@ +// +#pragma warning disable CS0618 +using Microsoft.Graph.Models.ODataErrors; +using Microsoft.Graph.Models.Security; +using Microsoft.Graph.Security.Identities.Sensors.Count; +using Microsoft.Graph.Security.Identities.Sensors.Item; +using Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey; +using Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri; +using Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey; +using Microsoft.Kiota.Abstractions.Extensions; +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using System.Threading; +using System; +namespace Microsoft.Graph.Security.Identities.Sensors +{ + /// + /// Provides operations to manage the sensors property of the microsoft.graph.security.identityContainer entity. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorsRequestBuilder : BaseRequestBuilder + { + /// Provides operations to count the resources in the collection. + public global::Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder Count + { + get => new global::Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder(PathParameters, RequestAdapter); + } + /// Provides operations to call the getDeploymentAccessKey method. + public global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder MicrosoftGraphSecurityGetDeploymentAccessKey + { + get => new global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder(PathParameters, RequestAdapter); + } + /// Provides operations to call the getDeploymentPackageUri method. + public global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder MicrosoftGraphSecurityGetDeploymentPackageUri + { + get => new global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder(PathParameters, RequestAdapter); + } + /// Provides operations to call the regenerateDeploymentAccessKey method. + public global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder MicrosoftGraphSecurityRegenerateDeploymentAccessKey + { + get => new global::Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder(PathParameters, RequestAdapter); + } + /// Provides operations to manage the sensors property of the microsoft.graph.security.identityContainer entity. + /// The unique identifier of sensor + /// A + public global::Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder this[string position] + { + get + { + var urlTplParams = new Dictionary(PathParameters); + urlTplParams.Add("sensor%2Did", position); + return new global::Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder(urlTplParams, RequestAdapter); + } + } + /// + /// Instantiates a new and sets the default values. + /// + /// Path parameters for the request + /// The request adapter to use to execute the requests. + public SensorsRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters) + { + } + /// + /// Instantiates a new and sets the default values. + /// + /// The raw URL to use for the request builder. + /// The request adapter to use to execute the requests. + public SensorsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/identities/sensors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl) + { + } + /// + /// Get a list of sensor objects and their properties. + /// Find more info here + /// + /// A + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + var requestInfo = ToGetRequestInformation(requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.SensorCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Create new navigation property to sensors for security + /// + /// A + /// The request body + /// Cancellation token to use when cancelling requests + /// Configuration for the request such as headers, query parameters, and middleware options. + /// When receiving a 4XX or 5XX status code +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public async Task PostAsync(global::Microsoft.Graph.Models.Security.Sensor body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default) + { +#nullable restore +#else + public async Task PostAsync(global::Microsoft.Graph.Models.Security.Sensor body, Action> requestConfiguration = default, CancellationToken cancellationToken = default) + { +#endif + _ = body ?? throw new ArgumentNullException(nameof(body)); + var requestInfo = ToPostRequestInformation(body, requestConfiguration); + var errorMapping = new Dictionary> + { + { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue }, + }; + return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Security.Sensor.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); + } + /// + /// Get a list of sensor objects and their properties. + /// + /// A + /// 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 sensors for security + /// + /// A + /// 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(global::Microsoft.Graph.Models.Security.Sensor body, Action>? requestConfiguration = default) + { +#nullable restore +#else + public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Models.Security.Sensor 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"); + requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body); + return requestInfo; + } + /// + /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. + /// + /// A + /// The raw URL to use for the request builder. + public global::Microsoft.Graph.Security.Identities.Sensors.SensorsRequestBuilder WithUrl(string rawUrl) + { + return new global::Microsoft.Graph.Security.Identities.Sensors.SensorsRequestBuilder(rawUrl, RequestAdapter); + } + /// + /// Get a list of sensor objects and their properties. + /// + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorsRequestBuilderGetQueryParameters + { + /// 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; } + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorsRequestBuilderGetRequestConfiguration : RequestConfiguration + { + } + /// + /// Configuration for the request such as headers, query parameters, and middleware options. + /// + [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")] + [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] + public partial class SensorsRequestBuilderPostRequestConfiguration : RequestConfiguration + { + } + } +} +#pragma warning restore CS0618 diff --git a/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/Item/VirtualEventTownhallItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/Item/VirtualEventTownhallItemRequestBuilder.cs index 5800cc864cd..bf95aa9d89b 100644 --- a/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/Item/VirtualEventTownhallItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/Item/VirtualEventTownhallItemRequestBuilder.cs @@ -69,7 +69,7 @@ public async Task DeleteAsync(Action - /// Read the properties and relationships of a virtualEventTownhall object. + /// Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. /// Find more info here /// /// A @@ -93,7 +93,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.VirtualEventTownhall.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a virtualEventTownhall object. + /// Update the properties of a virtualEventTownhall object. Only the Organizer and Co-organizer can make changes to a townhall event. /// Find more info here /// /// A @@ -138,7 +138,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read the properties and relationships of a virtualEventTownhall object. + /// Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -157,7 +157,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a virtualEventTownhall object. + /// Update the properties of a virtualEventTownhall object. Only the Organizer and Co-organizer can make changes to a townhall event. /// /// A /// The request body @@ -196,7 +196,7 @@ public partial class VirtualEventTownhallItemRequestBuilderDeleteRequestConfigur { } /// - /// Read the properties and relationships of a virtualEventTownhall object. + /// Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class VirtualEventTownhallItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/TownhallsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/TownhallsRequestBuilder.cs index 85f94d5304f..c322d232743 100644 --- a/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/TownhallsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Townhalls/TownhallsRequestBuilder.cs @@ -54,7 +54,7 @@ public TownhallsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : { } /// - /// Read the properties and relationships of a virtualEventTownhall object. + /// Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. /// /// A /// Cancellation token to use when cancelling requests @@ -103,7 +103,7 @@ public TownhallsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.VirtualEventTownhall.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Read the properties and relationships of a virtualEventTownhall object. + /// Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -153,7 +153,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.Solutions.VirtualEvents.Townhalls.TownhallsRequestBuilder(rawUrl, RequestAdapter); } /// - /// Read the properties and relationships of a virtualEventTownhall object. + /// Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class TownhallsRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Webinars/Item/VirtualEventWebinarItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Webinars/Item/VirtualEventWebinarItemRequestBuilder.cs index 8ac1a34fc37..33c2ceeeca3 100644 --- a/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Webinars/Item/VirtualEventWebinarItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Solutions/VirtualEvents/Webinars/Item/VirtualEventWebinarItemRequestBuilder.cs @@ -83,7 +83,7 @@ public async Task DeleteAsync(Action - /// Read the properties and relationships of a virtualEventWebinar object. + /// Read the properties and relationships of a virtualEventWebinar object. All roles can get the details of a webinar event. /// Find more info here /// /// A @@ -107,7 +107,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.VirtualEventWebinar.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update the properties of a virtualEventWebinar object. + /// Update the properties of a virtualEventWebinar object. Only the Organizer and Co-organizer can make changes to a webinar event. /// Find more info here /// /// A @@ -172,7 +172,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Read the properties and relationships of a virtualEventWebinar object. + /// Read the properties and relationships of a virtualEventWebinar object. All roles can get the details of a webinar event. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -191,7 +191,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a virtualEventWebinar object. + /// Update the properties of a virtualEventWebinar object. Only the Organizer and Co-organizer can make changes to a webinar event. /// /// A /// The request body @@ -230,7 +230,7 @@ public partial class VirtualEventWebinarItemRequestBuilderDeleteRequestConfigura { } /// - /// Read the properties and relationships of a virtualEventWebinar object. + /// Read the properties and relationships of a virtualEventWebinar object. All roles can get the details of a webinar event. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class VirtualEventWebinarItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs index 649b8e42f91..60c6d1ad90c 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -84,8 +84,8 @@ public MembersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// 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 /// /// A /// The request body @@ -129,7 +129,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. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index 8cfa4d643f9..412850ccbe4 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -84,8 +84,8 @@ public RepliesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Create a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Send a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// A /// The request body @@ -129,7 +129,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new reply to a chatMessage in a specified channel. + /// Send a new reply to a chatMessage in a specified channel. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs index fb4aaa14aec..50dcc9bd6e4 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs @@ -84,8 +84,8 @@ public MessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Send a new chatMessage in the specified channel. - /// Find more info here + /// Send a new chatMessage in the specified channel or a chat. + /// Find more info here /// /// A /// The request body @@ -129,7 +129,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel. + /// Send a new chatMessage in the specified channel or a chat. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/EmailMethodsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/EmailMethodsRequestBuilder.cs index 0217c5c1142..f5c6be25613 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/EmailMethodsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/EmailMethodsRequestBuilder.cs @@ -77,7 +77,7 @@ public EmailMethodsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.EmailAuthenticationMethodCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. + /// Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. Self-service operations aren't supported. /// Find more info here /// /// A @@ -122,7 +122,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. + /// Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. Self-service operations aren't supported. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/Item/EmailAuthenticationMethodItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/Item/EmailAuthenticationMethodItemRequestBuilder.cs index 8bd7f5119a6..7db892de8b3 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/Item/EmailAuthenticationMethodItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Authentication/EmailMethods/Item/EmailAuthenticationMethodItemRequestBuilder.cs @@ -81,7 +81,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.EmailAuthenticationMethod.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update a user's email address represented by an emailAuthenticationMethod object. + /// Update a user's email address represented by an emailAuthenticationMethod object. Self-service operations aren't supported. /// Find more info here /// /// A @@ -145,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update a user's email address represented by an emailAuthenticationMethod object. + /// Update a user's email address represented by an emailAuthenticationMethod object. Self-service operations aren't supported. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Users/Item/Authentication/MicrosoftAuthenticatorMethods/Item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Authentication/MicrosoftAuthenticatorMethods/Item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.cs index 7cebb63a5b3..0d65efc5704 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Authentication/MicrosoftAuthenticatorMethods/Item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Authentication/MicrosoftAuthenticatorMethods/Item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.cs @@ -41,7 +41,7 @@ public MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder(string rawUr { } /// - /// Deletes a microsoftAuthenticatorAuthenticationMethod object. + /// Delete a microsoftAuthenticatorAuthenticationMethod object. /// Find more info here /// /// Cancellation token to use when cancelling requests @@ -88,7 +88,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.MicrosoftAuthenticatorAuthenticationMethod.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Deletes a microsoftAuthenticatorAuthenticationMethod object. + /// Delete a microsoftAuthenticatorAuthenticationMethod object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Authentication/PhoneMethods/Item/PhoneAuthenticationMethodItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Authentication/PhoneMethods/Item/PhoneAuthenticationMethodItemRequestBuilder.cs index 079219d7c9a..5b27d87c293 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Authentication/PhoneMethods/Item/PhoneAuthenticationMethodItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Authentication/PhoneMethods/Item/PhoneAuthenticationMethodItemRequestBuilder.cs @@ -92,7 +92,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.PhoneAuthenticationMethod.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. + /// Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. Self-service operations aren't supported. /// Find more info here /// /// A @@ -156,7 +156,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. + /// Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. Self-service operations aren't supported. /// /// A /// The request body diff --git a/src/Microsoft.Graph/Generated/Users/Item/Presence/PresenceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Presence/PresenceRequestBuilder.cs index bc25f2f806a..50bfa4b8f23 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Presence/PresenceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Presence/PresenceRequestBuilder.cs @@ -87,8 +87,8 @@ public async Task DeleteAsync(Action - /// Set a presence status message for a user. An optional expiration date and time can be supplied. - /// Find more info here + /// Get a user's presence information. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -155,7 +155,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Set a presence status message for a user. An optional expiration date and time can be supplied. + /// Get a user's presence information. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -213,7 +213,7 @@ public partial class PresenceRequestBuilderDeleteRequestConfiguration : RequestC { } /// - /// Set a presence status message for a user. An optional expiration date and time can be supplied. + /// Get a user's presence information. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class PresenceRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs index 2180f436b16..13cca02c5b8 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs @@ -481,8 +481,8 @@ public UserItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b { } /// - /// Delete a user object. When deleted, user resources, including their mailbox and license assignments, are moved to a temporary container and if the user is restored within 30 days, these objects are restored to them. The user is also restored to any groups they were a member of. After 30 days and if not restored, the user object is permanently deleted and their assigned resources freed. To manage the deleted user object, see deletedItems. - /// Find more info here + /// Deletes a user. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -516,8 +516,8 @@ public async Task DeleteAsync(Action - /// Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. - /// Find more info here + /// Read properties and relationships of the user object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -541,7 +541,7 @@ public async Task DeleteAsync(Action /// Update the properties of a user object. - /// Find more info here + /// Find more info here /// /// A /// The request body @@ -578,7 +578,7 @@ public async Task DeleteAsync(Action - /// Delete a user object. When deleted, user resources, including their mailbox and license assignments, are moved to a temporary container and if the user is restored within 30 days, these objects are restored to them. The user is also restored to any groups they were a member of. After 30 days and if not restored, the user object is permanently deleted and their assigned resources freed. To manage the deleted user object, see deletedItems. + /// Deletes a user. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -597,7 +597,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. + /// Read properties and relationships of the user object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -655,7 +655,7 @@ public partial class UserItemRequestBuilderDeleteRequestConfiguration : RequestC { } /// - /// Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. + /// Read properties and relationships of the user object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class UserItemRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs index cfcba19ed69..8af54378d72 100644 --- a/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs @@ -78,8 +78,8 @@ public UsersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base { } /// - /// Retrieve a list of user objects. - /// Find more info here + /// List properties and relationships of the user objects. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -103,7 +103,7 @@ public UsersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base } /// /// Create a new user object. - /// Find more info here + /// Find more info here /// /// A /// The request body @@ -128,7 +128,7 @@ public UsersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.User.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Retrieve a list of user objects. + /// List properties and relationships of the user objects. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -178,7 +178,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model return new global::Microsoft.Graph.Users.UsersRequestBuilder(rawUrl, RequestAdapter); } /// - /// Retrieve a list of user objects. + /// List properties and relationships of the user objects. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class UsersRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/UsersWithUserPrincipalName/UsersWithUserPrincipalNameRequestBuilder.cs b/src/Microsoft.Graph/Generated/UsersWithUserPrincipalName/UsersWithUserPrincipalNameRequestBuilder.cs index 874ca565c95..d8bea617aaa 100644 --- a/src/Microsoft.Graph/Generated/UsersWithUserPrincipalName/UsersWithUserPrincipalNameRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/UsersWithUserPrincipalName/UsersWithUserPrincipalNameRequestBuilder.cs @@ -37,8 +37,8 @@ public UsersWithUserPrincipalNameRequestBuilder(string rawUrl, IRequestAdapter r { } /// - /// Delete a user object. When deleted, user resources, including their mailbox and license assignments, are moved to a temporary container and if the user is restored within 30 days, these objects are restored to them. The user is also restored to any groups they were a member of. After 30 days and if not restored, the user object is permanently deleted and their assigned resources freed. To manage the deleted user object, see deletedItems. - /// Find more info here + /// Deletes a user. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -60,8 +60,8 @@ public async Task DeleteAsync(Action - /// Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. - /// Find more info here + /// Read properties and relationships of the user object. + /// Find more info here /// /// A /// Cancellation token to use when cancelling requests @@ -85,7 +85,7 @@ public async Task DeleteAsync(Action /// Update the properties of a user object. - /// Find more info here + /// Find more info here /// /// A /// The request body @@ -110,7 +110,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.User.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false); } /// - /// Delete a user object. When deleted, user resources, including their mailbox and license assignments, are moved to a temporary container and if the user is restored within 30 days, these objects are restored to them. The user is also restored to any groups they were a member of. After 30 days and if not restored, the user object is permanently deleted and their assigned resources freed. To manage the deleted user object, see deletedItems. + /// Deletes a user. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -129,7 +129,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. + /// Read properties and relationships of the user object. /// /// A /// Configuration for the request such as headers, query parameters, and middleware options. @@ -187,7 +187,7 @@ public partial class UsersWithUserPrincipalNameRequestBuilderDeleteRequestConfig { } /// - /// Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. + /// Read properties and relationships of the user object. /// [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] public partial class UsersWithUserPrincipalNameRequestBuilderGetQueryParameters diff --git a/src/Microsoft.Graph/Generated/kiota-dom-export.txt b/src/Microsoft.Graph/Generated/kiota-dom-export.txt index 8e191795061..0b774e26f30 100644 --- a/src/Microsoft.Graph/Generated/kiota-dom-export.txt +++ b/src/Microsoft.Graph/Generated/kiota-dom-export.txt @@ -95553,6 +95553,9 @@ Microsoft.Graph.Models.appManagementPolicyCollectionResponse::|public|GetFieldDe Microsoft.Graph.Models.appManagementPolicyCollectionResponse::|public|Serialize(writer:ISerializationWriter):void Microsoft.Graph.Models.appManagementPolicyCollectionResponse::|public|Value:List Microsoft.Graph.Models.appManagementPolicyCollectionResponse::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.AppManagementPolicyCollectionResponse +Microsoft.Graph.Models.appManagementRestrictionState::0000-enabled +Microsoft.Graph.Models.appManagementRestrictionState::0001-disabled +Microsoft.Graph.Models.appManagementRestrictionState::0002-unknownFutureValue Microsoft.Graph.Models.appManagementServicePrincipalConfiguration-->global.Microsoft.Graph.Models.AppManagementConfiguration Microsoft.Graph.Models.appManagementServicePrincipalConfiguration::|public|constructor():void Microsoft.Graph.Models.appManagementServicePrincipalConfiguration::|public|GetFieldDeserializers():IDictionary> @@ -99600,6 +99603,15 @@ Microsoft.Graph.Models.conditionalAccessApplications::|public|OdataType:string Microsoft.Graph.Models.conditionalAccessApplications::|public|Serialize(writer:ISerializationWriter):void Microsoft.Graph.Models.conditionalAccessApplications::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.ConditionalAccessApplications Microsoft.Graph.Models.conditionalAccessApplications~~>IAdditionalDataHolder; IBackedModel; IParsable +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|public|AdditionalData:IDictionary +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|public|BackingStore:IBackingStore +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|public|constructor():void +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|public|GetFieldDeserializers():IDictionary> +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|public|OdataType:string +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|public|TransferMethods:global.Microsoft.Graph.Models.ConditionalAccessTransferMethods? +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.ConditionalAccessAuthenticationFlows +Microsoft.Graph.Models.conditionalAccessAuthenticationFlows~~>IAdditionalDataHolder; IBackedModel; IParsable Microsoft.Graph.Models.conditionalAccessClientApp::0000-all Microsoft.Graph.Models.conditionalAccessClientApp::0001-browser Microsoft.Graph.Models.conditionalAccessClientApp::0002-mobileAppsAndDesktopClients @@ -99620,6 +99632,7 @@ Microsoft.Graph.Models.conditionalAccessClientApplications::|static|public|Creat Microsoft.Graph.Models.conditionalAccessClientApplications~~>IAdditionalDataHolder; IBackedModel; IParsable Microsoft.Graph.Models.conditionalAccessConditionSet::|public|AdditionalData:IDictionary Microsoft.Graph.Models.conditionalAccessConditionSet::|public|Applications:global.Microsoft.Graph.Models.ConditionalAccessApplications +Microsoft.Graph.Models.conditionalAccessConditionSet::|public|AuthenticationFlows:global.Microsoft.Graph.Models.ConditionalAccessAuthenticationFlows Microsoft.Graph.Models.conditionalAccessConditionSet::|public|BackingStore:IBackingStore Microsoft.Graph.Models.conditionalAccessConditionSet::|public|ClientApplications:global.Microsoft.Graph.Models.ConditionalAccessClientApplications Microsoft.Graph.Models.conditionalAccessConditionSet::|public|ClientAppTypes:List @@ -99829,6 +99842,10 @@ Microsoft.Graph.Models.conditionalAccessTemplateCollectionResponse::|public|GetF Microsoft.Graph.Models.conditionalAccessTemplateCollectionResponse::|public|Serialize(writer:ISerializationWriter):void Microsoft.Graph.Models.conditionalAccessTemplateCollectionResponse::|public|Value:List Microsoft.Graph.Models.conditionalAccessTemplateCollectionResponse::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.ConditionalAccessTemplateCollectionResponse +Microsoft.Graph.Models.conditionalAccessTransferMethods::0000-none +Microsoft.Graph.Models.conditionalAccessTransferMethods::0001-deviceCodeFlow +Microsoft.Graph.Models.conditionalAccessTransferMethods::0002-authenticationTransfer +Microsoft.Graph.Models.conditionalAccessTransferMethods::0003-unknownFutureValue Microsoft.Graph.Models.conditionalAccessUsers::|public|AdditionalData:IDictionary Microsoft.Graph.Models.conditionalAccessUsers::|public|BackingStore:IBackingStore Microsoft.Graph.Models.conditionalAccessUsers::|public|constructor():void @@ -106359,6 +106376,7 @@ Microsoft.Graph.Models.keyCredentialConfiguration::|public|OdataType:string Microsoft.Graph.Models.keyCredentialConfiguration::|public|RestrictForAppsCreatedAfterDateTime:DateTimeOffset? Microsoft.Graph.Models.keyCredentialConfiguration::|public|RestrictionType:global.Microsoft.Graph.Models.AppKeyCredentialRestrictionType? Microsoft.Graph.Models.keyCredentialConfiguration::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.keyCredentialConfiguration::|public|State:global.Microsoft.Graph.Models.AppManagementRestrictionState? Microsoft.Graph.Models.keyCredentialConfiguration::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.KeyCredentialConfiguration Microsoft.Graph.Models.keyCredentialConfiguration~~>IAdditionalDataHolder; IBackedModel; IParsable Microsoft.Graph.Models.keyCredential~~>IAdditionalDataHolder; IBackedModel; IParsable @@ -110053,6 +110071,7 @@ Microsoft.Graph.Models.passwordCredentialConfiguration::|public|OdataType:string Microsoft.Graph.Models.passwordCredentialConfiguration::|public|RestrictForAppsCreatedAfterDateTime:DateTimeOffset? Microsoft.Graph.Models.passwordCredentialConfiguration::|public|RestrictionType:global.Microsoft.Graph.Models.AppCredentialRestrictionType? Microsoft.Graph.Models.passwordCredentialConfiguration::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.passwordCredentialConfiguration::|public|State:global.Microsoft.Graph.Models.AppManagementRestrictionState? Microsoft.Graph.Models.passwordCredentialConfiguration::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.PasswordCredentialConfiguration Microsoft.Graph.Models.passwordCredentialConfiguration~~>IAdditionalDataHolder; IBackedModel; IParsable Microsoft.Graph.Models.passwordCredential~~>IAdditionalDataHolder; IBackedModel; IParsable @@ -114975,6 +114994,25 @@ Microsoft.Graph.Models.Security.departmentTemplateCollectionResponse::|public|Ge Microsoft.Graph.Models.Security.departmentTemplateCollectionResponse::|public|Serialize(writer:ISerializationWriter):void Microsoft.Graph.Models.Security.departmentTemplateCollectionResponse::|public|Value:List Microsoft.Graph.Models.Security.departmentTemplateCollectionResponse::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.DepartmentTemplateCollectionResponse +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|public|AdditionalData:IDictionary +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|public|BackingStore:IBackingStore +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|public|constructor():void +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|public|DeploymentAccessKey:string +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|public|GetFieldDeserializers():IDictionary> +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|public|OdataType:string +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.Security.deploymentAccessKeyType::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.DeploymentAccessKeyType +Microsoft.Graph.Models.Security.deploymentAccessKeyType~~>IAdditionalDataHolder; IBackedModel; IParsable +Microsoft.Graph.Models.Security.deploymentStatus::0000-upToDate +Microsoft.Graph.Models.Security.deploymentStatus::0001-outdated +Microsoft.Graph.Models.Security.deploymentStatus::0002-updating +Microsoft.Graph.Models.Security.deploymentStatus::0003-updateFailed +Microsoft.Graph.Models.Security.deploymentStatus::0004-notConfigured +Microsoft.Graph.Models.Security.deploymentStatus::0005-unreachable +Microsoft.Graph.Models.Security.deploymentStatus::0006-disconnected +Microsoft.Graph.Models.Security.deploymentStatus::0007-startFailure +Microsoft.Graph.Models.Security.deploymentStatus::0008-syncing +Microsoft.Graph.Models.Security.deploymentStatus::0009-unknownFutureValue Microsoft.Graph.Models.Security.detectionSource::0000-unknown Microsoft.Graph.Models.Security.detectionSource::0001-microsoftDefenderForEndpoint Microsoft.Graph.Models.Security.detectionSource::0002-antivirus @@ -115313,6 +115351,12 @@ Microsoft.Graph.Models.Security.evidenceRemediationStatus::0002-prevented Microsoft.Graph.Models.Security.evidenceRemediationStatus::0003-blocked Microsoft.Graph.Models.Security.evidenceRemediationStatus::0004-notFound Microsoft.Graph.Models.Security.evidenceRemediationStatus::0005-unknownFutureValue +Microsoft.Graph.Models.Security.evidenceRemediationStatus::0006-active +Microsoft.Graph.Models.Security.evidenceRemediationStatus::0007-pendingApproval +Microsoft.Graph.Models.Security.evidenceRemediationStatus::0008-declined +Microsoft.Graph.Models.Security.evidenceRemediationStatus::0009-unremediated +Microsoft.Graph.Models.Security.evidenceRemediationStatus::0010-running +Microsoft.Graph.Models.Security.evidenceRemediationStatus::0011-partiallyRemediated Microsoft.Graph.Models.Security.evidenceRole::0000-unknown Microsoft.Graph.Models.Security.evidenceRole::0001-contextual Microsoft.Graph.Models.Security.evidenceRole::0002-scanned @@ -115848,6 +115892,7 @@ Microsoft.Graph.Models.Security.identityContainer-->global.Microsoft.Graph.Model Microsoft.Graph.Models.Security.identityContainer::|public|GetFieldDeserializers():IDictionary> Microsoft.Graph.Models.Security.identityContainer::|public|HealthIssues:List Microsoft.Graph.Models.Security.identityContainer::|public|OdataType:string +Microsoft.Graph.Models.Security.identityContainer::|public|Sensors:List Microsoft.Graph.Models.Security.identityContainer::|public|Serialize(writer:ISerializationWriter):void Microsoft.Graph.Models.Security.identityContainer::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.IdentityContainer Microsoft.Graph.Models.Security.incident-->global.Microsoft.Graph.Models.Entity @@ -116171,6 +116216,13 @@ Microsoft.Graph.Models.Security.malwareEvidence::|public|OdataType:string Microsoft.Graph.Models.Security.malwareEvidence::|public|Processes:List Microsoft.Graph.Models.Security.malwareEvidence::|public|Serialize(writer:ISerializationWriter):void Microsoft.Graph.Models.Security.malwareEvidence::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.MalwareEvidence +Microsoft.Graph.Models.Security.networkAdapter-->global.Microsoft.Graph.Models.Entity +Microsoft.Graph.Models.Security.networkAdapter::|public|GetFieldDeserializers():IDictionary> +Microsoft.Graph.Models.Security.networkAdapter::|public|IsEnabled:bool? +Microsoft.Graph.Models.Security.networkAdapter::|public|Name:string +Microsoft.Graph.Models.Security.networkAdapter::|public|OdataType:string +Microsoft.Graph.Models.Security.networkAdapter::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.Security.networkAdapter::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.NetworkAdapter Microsoft.Graph.Models.Security.networkConnectionEvidence-->global.Microsoft.Graph.Models.Security.AlertEvidence Microsoft.Graph.Models.Security.networkConnectionEvidence::|public|constructor():void Microsoft.Graph.Models.Security.networkConnectionEvidence::|public|DestinationAddress:global.Microsoft.Graph.Models.Security.IpEvidence @@ -116449,6 +116501,59 @@ Microsoft.Graph.Models.Security.securityGroupEvidence::|public|OdataType:string Microsoft.Graph.Models.Security.securityGroupEvidence::|public|SecurityGroupId:string Microsoft.Graph.Models.Security.securityGroupEvidence::|public|Serialize(writer:ISerializationWriter):void Microsoft.Graph.Models.Security.securityGroupEvidence::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.SecurityGroupEvidence +Microsoft.Graph.Models.Security.sensor-->global.Microsoft.Graph.Models.Entity +Microsoft.Graph.Models.Security.sensor::|public|CreatedDateTime:DateTimeOffset? +Microsoft.Graph.Models.Security.sensor::|public|DeploymentStatus:global.Microsoft.Graph.Models.Security.DeploymentStatus? +Microsoft.Graph.Models.Security.sensor::|public|DisplayName:string +Microsoft.Graph.Models.Security.sensor::|public|DomainName:string +Microsoft.Graph.Models.Security.sensor::|public|GetFieldDeserializers():IDictionary> +Microsoft.Graph.Models.Security.sensor::|public|HealthIssues:List +Microsoft.Graph.Models.Security.sensor::|public|HealthStatus:global.Microsoft.Graph.Models.Security.SensorHealthStatus? +Microsoft.Graph.Models.Security.sensor::|public|OdataType:string +Microsoft.Graph.Models.Security.sensor::|public|OpenHealthIssuesCount:long? +Microsoft.Graph.Models.Security.sensor::|public|SensorType:global.Microsoft.Graph.Models.Security.SensorType? +Microsoft.Graph.Models.Security.sensor::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.Security.sensor::|public|Settings:global.Microsoft.Graph.Models.Security.SensorSettings +Microsoft.Graph.Models.Security.sensor::|public|Version:string +Microsoft.Graph.Models.Security.sensor::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.Sensor +Microsoft.Graph.Models.Security.sensorCollectionResponse-->global.Microsoft.Graph.Models.BaseCollectionPaginationCountResponse +Microsoft.Graph.Models.Security.sensorCollectionResponse::|public|GetFieldDeserializers():IDictionary> +Microsoft.Graph.Models.Security.sensorCollectionResponse::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.Security.sensorCollectionResponse::|public|Value:List +Microsoft.Graph.Models.Security.sensorCollectionResponse::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.SensorCollectionResponse +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|AdditionalData:IDictionary +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|BackingStore:IBackingStore +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|constructor():void +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|DownloadUrl:string +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|GetFieldDeserializers():IDictionary> +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|OdataType:string +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|public|Version:string +Microsoft.Graph.Models.Security.sensorDeploymentPackage::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.SensorDeploymentPackage +Microsoft.Graph.Models.Security.sensorDeploymentPackage~~>IAdditionalDataHolder; IBackedModel; IParsable +Microsoft.Graph.Models.Security.sensorHealthStatus::0000-healthy +Microsoft.Graph.Models.Security.sensorHealthStatus::0001-notHealthyLow +Microsoft.Graph.Models.Security.sensorHealthStatus::0002-notHealthyMedium +Microsoft.Graph.Models.Security.sensorHealthStatus::0003-notHealthyHigh +Microsoft.Graph.Models.Security.sensorHealthStatus::0004-unknownFutureValue +Microsoft.Graph.Models.Security.sensorSettings::|public|AdditionalData:IDictionary +Microsoft.Graph.Models.Security.sensorSettings::|public|BackingStore:IBackingStore +Microsoft.Graph.Models.Security.sensorSettings::|public|constructor():void +Microsoft.Graph.Models.Security.sensorSettings::|public|Description:string +Microsoft.Graph.Models.Security.sensorSettings::|public|DomainControllerDnsNames:List +Microsoft.Graph.Models.Security.sensorSettings::|public|GetFieldDeserializers():IDictionary> +Microsoft.Graph.Models.Security.sensorSettings::|public|IsDelayedDeploymentEnabled:bool? +Microsoft.Graph.Models.Security.sensorSettings::|public|NetworkAdapters:List +Microsoft.Graph.Models.Security.sensorSettings::|public|OdataType:string +Microsoft.Graph.Models.Security.sensorSettings::|public|Serialize(writer:ISerializationWriter):void +Microsoft.Graph.Models.Security.sensorSettings::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.SensorSettings +Microsoft.Graph.Models.Security.sensorSettings~~>IAdditionalDataHolder; IBackedModel; IParsable +Microsoft.Graph.Models.Security.sensorType::0000-adConnectIntegrated +Microsoft.Graph.Models.Security.sensorType::0001-adcsIntegrated +Microsoft.Graph.Models.Security.sensorType::0002-adfsIntegrated +Microsoft.Graph.Models.Security.sensorType::0003-domainControllerIntegrated +Microsoft.Graph.Models.Security.sensorType::0004-domainControllerStandalone +Microsoft.Graph.Models.Security.sensorType::0005-unknownFutureValue Microsoft.Graph.Models.Security.servicePrincipalEvidence-->global.Microsoft.Graph.Models.Security.AlertEvidence Microsoft.Graph.Models.Security.servicePrincipalEvidence::|public|AppId:string Microsoft.Graph.Models.Security.servicePrincipalEvidence::|public|AppOwnerTenantId:string @@ -134666,10 +134771,115 @@ Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|DeleteAsyn Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.IdentityContainer Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|healthIssues:global.Microsoft.Graph.Security.Identities.HealthIssues.HealthIssuesRequestBuilder Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|PatchAsync(body:global.Microsoft.Graph.Models.Security.IdentityContainer; requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.IdentityContainer +Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|sensors:global.Microsoft.Graph.Security.Identities.Sensors.SensorsRequestBuilder Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|ToDeleteRequestInformation(requestConfiguration?:Action>):RequestInformation Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|ToPatchRequestInformation(body:global.Microsoft.Graph.Models.Security.IdentityContainer; requestConfiguration?:Action>):RequestInformation Microsoft.Graph.Security.Identities.identitiesRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.IdentitiesRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|Filter:string +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|Search:string +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):int? +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|Filter:string +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|Search:string +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):int? +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Count:bool? +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Expand:string[] +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Filter:string +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Orderby:string[] +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Search:string +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Select:string[] +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Skip:int? +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetQueryParameters::|public|Top:int? +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder.healthIssuesRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder::[HealthIssueId:string]:global.Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder::|public|Count:global.Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Count.CountRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.HealthIssueCollectionResponse +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.healthIssuesRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.HealthIssuesRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder.HealthIssueItemRequestBuilderGetQueryParameters::|public|Expand:string[] +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder.HealthIssueItemRequestBuilderGetQueryParameters::|public|Select:string[] +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder.HealthIssueItemRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.HealthIssue +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.Item.HealthIssueItemRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder.SensorItemRequestBuilderDeleteRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder.SensorItemRequestBuilderGetQueryParameters::|public|Expand:string[] +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder.SensorItemRequestBuilderGetQueryParameters::|public|Select:string[] +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder.SensorItemRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder.SensorItemRequestBuilderPatchRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|DeleteAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):void +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.Sensor +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|healthIssues:global.Microsoft.Graph.Security.Identities.Sensors.Item.HealthIssues.HealthIssuesRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|PatchAsync(body:global.Microsoft.Graph.Models.Security.Sensor; requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.Sensor +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|ToDeleteRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|ToPatchRequestInformation(body:global.Microsoft.Graph.Models.Security.Sensor; requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilder.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.DeploymentAccessKeyType +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.microsoftGraphSecurityGetDeploymentAccessKeyRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilder.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.SensorDeploymentPackage +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.microsoftGraphSecurityGetDeploymentPackageUriRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilderPostRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder::|public|PostAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.DeploymentAccessKeyType +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder::|public|ToPostRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.microsoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder-->BaseRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Count:bool? +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Expand:string[] +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Filter:string +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Orderby:string[] +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Search:string +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Select:string[] +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Skip:int? +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetQueryParameters::|public|Top:int? +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderGetRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder.sensorsRequestBuilderPostRequestConfiguration-->RequestConfiguration +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::[SensorId:string]:global.Microsoft.Graph.Security.Identities.Sensors.Item.SensorItemRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|constructor(pathParameters:Dictionary; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|constructor(rawUrl:string; requestAdapter:IRequestAdapter):void +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|Count:global.Microsoft.Graph.Security.Identities.Sensors.Count.CountRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|GetAsync(requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.SensorCollectionResponse +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|microsoftGraphSecurityGetDeploymentAccessKey:global.Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentAccessKey.MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|microsoftGraphSecurityGetDeploymentPackageUri:global.Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityGetDeploymentPackageUri.MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|microsoftGraphSecurityRegenerateDeploymentAccessKey:global.Microsoft.Graph.Security.Identities.Sensors.MicrosoftGraphSecurityRegenerateDeploymentAccessKey.MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|PostAsync(body:global.Microsoft.Graph.Models.Security.Sensor; requestConfiguration?:Action>; cancellationToken?:CancellationToken):global.Microsoft.Graph.Models.Security.Sensor +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|ToGetRequestInformation(requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|ToPostRequestInformation(body:global.Microsoft.Graph.Models.Security.Sensor; requestConfiguration?:Action>):RequestInformation +Microsoft.Graph.Security.Identities.Sensors.sensorsRequestBuilder::|public|WithUrl(rawUrl:string):global.Microsoft.Graph.Security.Identities.Sensors.SensorsRequestBuilder Microsoft.Graph.Security.Incidents.Count.CountRequestBuilder-->BaseRequestBuilder Microsoft.Graph.Security.Incidents.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|Filter:string Microsoft.Graph.Security.Incidents.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|Search:string diff --git a/src/Microsoft.Graph/Generated/kiota-lock.json b/src/Microsoft.Graph/Generated/kiota-lock.json index fe9bbf5e8ea..7ab35cb36a7 100644 --- a/src/Microsoft.Graph/Generated/kiota-lock.json +++ b/src/Microsoft.Graph/Generated/kiota-lock.json @@ -1,5 +1,5 @@ { - "descriptionHash": "050B622E28044299FB5FF17D29B563DC8E23E6CA8FDCC81653CBA32F3331FB3CE4C6C6C11179243C671EC2177A42C64366F367C5528F4CC6E75154DEC7E8352E", + "descriptionHash": "9C1C29B8AAEEB97E3E2920ED91A149CF16DC6BDB3F5294CC87ACD0396CD7AE95062D61F4A0535A14A4D91A74320642A43264C1D530B708F8E557920089C66C19", "descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml", "lockFileVersion": "1.0.0", "kiotaVersion": "1.21.0",