diff --git a/packages/msgraph-sdk-chats/chats/item/members/item/index.ts b/packages/msgraph-sdk-chats/chats/item/members/item/index.ts index 1012abc5052..f78b2307ec4 100644 --- a/packages/msgraph-sdk-chats/chats/item/members/item/index.ts +++ b/packages/msgraph-sdk-chats/chats/item/members/item/index.ts @@ -20,11 +20,11 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Retrieve a conversationMember from a chat. + * Retrieve a conversationMember from a chat or channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -42,7 +42,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Retrieve a conversationMember from a chat. + * Retrieve a conversationMember from a chat or channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -56,7 +56,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder toPatchRequestInformation(body: ConversationMember, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Retrieve a conversationMember from a chat. + * Retrieve a conversationMember from a chat or channel. */ export interface ConversationMemberItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-communications/communications/onlineMeetings/item/attendeeReport/index.ts b/packages/msgraph-sdk-communications/communications/onlineMeetings/item/attendeeReport/index.ts index 794502231ec..8ff2391d0ec 100644 --- a/packages/msgraph-sdk-communications/communications/onlineMeetings/item/attendeeReport/index.ts +++ b/packages/msgraph-sdk-communications/communications/onlineMeetings/item/attendeeReport/index.ts @@ -11,20 +11,20 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface AttendeeReportRequestBuilder extends BaseRequestBuilder { /** - * Delete attendeeReport for the navigation property onlineMeetings in communications + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Get attendeeReport for the navigation property onlineMeetings from communications + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update attendeeReport for the navigation property onlineMeetings in communications + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param body Binary request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} @@ -32,19 +32,19 @@ export interface AttendeeReportRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Delete attendeeReport for the navigation property onlineMeetings in communications + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Get attendeeReport for the navigation property onlineMeetings from communications + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update attendeeReport for the navigation property onlineMeetings in communications + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param body Binary request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/index.ts index cbf8416939b..c8974535b9e 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/index.ts @@ -107,7 +107,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-policyset-deviceappmanagement-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -116,7 +116,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0|Find more info here} */ patch(body: DeviceAppManagement, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/index.ts index 169f4ba7af8..3089ab3705f 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/index.ts @@ -27,11 +27,11 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -43,7 +43,7 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * List properties and relationships of the managedAppConfiguration objects. + * List properties and relationships of the managedAppProtection objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -57,7 +57,7 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * List properties and relationships of the managedAppConfiguration objects. + * List properties and relationships of the managedAppProtection objects. */ export interface ManagedAppPoliciesRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/index.ts index f7aab59029b..4e905601b09 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/index.ts @@ -25,11 +25,11 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Read properties and relationships of the managedAppPolicy object. + * Read properties and relationships of the managedAppConfiguration object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -47,7 +47,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Read properties and relationships of the managedAppPolicy object. + * Read properties and relationships of the managedAppConfiguration object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -61,7 +61,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Read properties and relationships of the managedAppPolicy object. + * Read properties and relationships of the managedAppConfiguration object. */ export interface ManagedAppPolicyItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts index 344a7678f6b..de0ef87bc74 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts @@ -57,7 +57,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/item/targetApps/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/item/targetApps/index.ts index 807fa8763d9..fd15a93fa73 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/item/targetApps/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/item/targetApps/index.ts @@ -57,7 +57,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/item/targetApps/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/item/targetApps/index.ts index e9cd246fc58..a10194e8e68 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/item/targetApps/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/item/targetApps/index.ts @@ -57,7 +57,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppStatuses/item/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppStatuses/item/index.ts index f6f415d2346..70c8b2e2274 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppStatuses/item/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppStatuses/item/index.ts @@ -19,11 +19,11 @@ export interface ManagedAppStatusItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Read properties and relationships of the managedAppStatus object. + * Read properties and relationships of the managedAppStatusRaw object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -41,7 +41,7 @@ export interface ManagedAppStatusItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Read properties and relationships of the managedAppStatus object. + * Read properties and relationships of the managedAppStatusRaw object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -55,7 +55,7 @@ export interface ManagedAppStatusItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Read properties and relationships of the managedAppStatus object. + * Read properties and relationships of the managedAppStatusRaw object. */ export interface ManagedAppStatusItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/index.ts index 85e484c2e66..62ebb2eb909 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/index.ts @@ -27,11 +27,11 @@ export interface ManagedEBooksRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebook-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebook-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -44,7 +44,7 @@ export interface ManagedEBooksRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * List properties and relationships of the iosVppEBook objects. + * List properties and relationships of the managedEBook objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -58,7 +58,7 @@ export interface ManagedEBooksRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * List properties and relationships of the iosVppEBook objects. + * List properties and relationships of the managedEBook objects. */ export interface ManagedEBooksRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/item/assignments/item/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/item/assignments/item/index.ts index ad94cbbb3bc..d4e236c8e3d 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/item/assignments/item/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/item/assignments/item/index.ts @@ -13,43 +13,43 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBuilder { /** - * Deletes a managedEBookAssignment. + * Deletes a iosVppEBookAssignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read properties and relationships of the iosVppEBookAssignment object. + * Read properties and relationships of the managedEBookAssignment object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a managedEBookAssignment object. + * Update the properties of a iosVppEBookAssignment object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-update?view=graph-rest-1.0|Find more info here} */ patch(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a managedEBookAssignment. + * Deletes a iosVppEBookAssignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read properties and relationships of the iosVppEBookAssignment object. + * Read properties and relationships of the managedEBookAssignment object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of a managedEBookAssignment object. + * Update the properties of a iosVppEBookAssignment object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -57,7 +57,7 @@ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBui toPatchRequestInformation(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Read properties and relationships of the iosVppEBookAssignment object. + * Read properties and relationships of the managedEBookAssignment object. */ export interface ManagedEBookAssignmentItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileAppConfigurations/item/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileAppConfigurations/item/index.ts index 4d3acbd6cf2..2938ab0c048 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileAppConfigurations/item/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileAppConfigurations/item/index.ts @@ -56,11 +56,11 @@ export interface ManagedDeviceMobileAppConfigurationItemRequestBuilder extends B */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * Read properties and relationships of the iosMobileAppConfiguration object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosmobileappconfiguration-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -79,7 +79,7 @@ export interface ManagedDeviceMobileAppConfigurationItemRequestBuilder extends B */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * Read properties and relationships of the iosMobileAppConfiguration object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -93,7 +93,7 @@ export interface ManagedDeviceMobileAppConfigurationItemRequestBuilder extends B toPatchRequestInformation(body: ManagedDeviceMobileAppConfiguration, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * Read properties and relationships of the iosMobileAppConfiguration object. */ export interface ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/index.ts index 6330b9a545a..027be104e58 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/index.ts @@ -123,30 +123,30 @@ export interface MobileAppsRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-apps-androidstoreapp-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowsmobilemsi-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new windowsWebApp object. + * Create a new macOSOfficeSuiteApp object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowswebapp-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-create?view=graph-rest-1.0|Find more info here} */ post(body: MobileApp, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the androidStoreApp objects. + * List properties and relationships of the windowsMobileMSI objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Create a new windowsWebApp object. + * Create a new macOSOfficeSuiteApp object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -154,7 +154,7 @@ export interface MobileAppsRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * List properties and relationships of the androidStoreApp objects. + * List properties and relationships of the windowsMobileMSI objects. */ export interface MobileAppsRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/item/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/item/index.ts index 172fd2ece4c..f93ee7a8b8b 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/item/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/item/index.ts @@ -127,43 +127,43 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Read properties and relationships of the windowsAppX object. + * Read properties and relationships of the macOSOfficeSuiteApp object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowsappx-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a webApp object. + * Update the properties of a iosStoreApp object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-apps-webapp-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosstoreapp-update?view=graph-rest-1.0|Find more info here} */ patch(body: MobileApp, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a iosVppApp. + * Deletes a windowsMicrosoftEdgeApp. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read properties and relationships of the windowsAppX object. + * Read properties and relationships of the macOSOfficeSuiteApp object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of a webApp object. + * Update the properties of a iosStoreApp object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -171,7 +171,7 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Read properties and relationships of the windowsAppX object. + * Read properties and relationships of the macOSOfficeSuiteApp object. */ export interface MobileAppItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/index.ts index 8de72f80f2f..15646f9042e 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/index.ts @@ -27,30 +27,30 @@ export interface DeviceCompliancePoliciesRequestBuilder extends BaseRequestBuild */ byDeviceCompliancePolicyId(deviceCompliancePolicyId: string) : DeviceCompliancePolicyItemRequestBuilder; /** - * List properties and relationships of the windows81CompliancePolicy objects. + * List properties and relationships of the macOSCompliancePolicy objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-macoscompliancepolicy-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new windows10CompliancePolicy object. + * Create a new windows10MobileCompliancePolicy object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10compliancepolicy-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10mobilecompliancepolicy-create?view=graph-rest-1.0|Find more info here} */ post(body: DeviceCompliancePolicy, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the windows81CompliancePolicy objects. + * List properties and relationships of the macOSCompliancePolicy objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Create a new windows10CompliancePolicy object. + * Create a new windows10MobileCompliancePolicy object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -58,7 +58,7 @@ export interface DeviceCompliancePoliciesRequestBuilder extends BaseRequestBuild toPostRequestInformation(body: DeviceCompliancePolicy, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * List properties and relationships of the windows81CompliancePolicy objects. + * List properties and relationships of the macOSCompliancePolicy objects. */ export interface DeviceCompliancePoliciesRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/item/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/item/index.ts index f86bd5727a1..b4c258781de 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/item/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/item/index.ts @@ -74,20 +74,20 @@ export interface DeviceCompliancePolicyItemRequestBuilder extends BaseRequestBui */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read properties and relationships of the androidCompliancePolicy object. + * Read properties and relationships of the windows81CompliancePolicy object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-androidcompliancepolicy-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a windowsPhone81CompliancePolicy object. + * Update the properties of a androidWorkProfileCompliancePolicy object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windowsphone81compliancepolicy-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-androidworkprofilecompliancepolicy-update?view=graph-rest-1.0|Find more info here} */ patch(body: DeviceCompliancePolicy, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -97,13 +97,13 @@ export interface DeviceCompliancePolicyItemRequestBuilder extends BaseRequestBui */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read properties and relationships of the androidCompliancePolicy object. + * Read properties and relationships of the windows81CompliancePolicy object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of a windowsPhone81CompliancePolicy object. + * Update the properties of a androidWorkProfileCompliancePolicy object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -111,7 +111,7 @@ export interface DeviceCompliancePolicyItemRequestBuilder extends BaseRequestBui toPatchRequestInformation(body: DeviceCompliancePolicy, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Read properties and relationships of the androidCompliancePolicy object. + * Read properties and relationships of the windows81CompliancePolicy object. */ export interface DeviceCompliancePolicyItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/index.ts index a91e1d34d32..1d3a37e2d21 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/index.ts @@ -27,30 +27,30 @@ export interface DeviceConfigurationsRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windowsphone81customconfiguration-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-macosgeneraldeviceconfiguration-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new androidCustomConfiguration object. + * Create a new windows10CustomConfiguration object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-androidcustomconfiguration-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10customconfiguration-create?view=graph-rest-1.0|Find more info here} */ post(body: DeviceConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the windowsPhone81CustomConfiguration objects. + * List properties and relationships of the macOSGeneralDeviceConfiguration objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Create a new androidCustomConfiguration object. + * Create a new windows10CustomConfiguration object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -58,7 +58,7 @@ export interface DeviceConfigurationsRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * List properties and relationships of the windowsPhone81CustomConfiguration objects. + * List properties and relationships of the macOSGeneralDeviceConfiguration objects. */ export interface DeviceConfigurationsRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/item/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/item/index.ts index ed664162d6c..61e3189c77b 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/item/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceConfigurations/item/index.ts @@ -57,18 +57,18 @@ export interface DeviceConfigurationItemRequestBuilder extends BaseRequestBuilde */ get userStatusOverview(): UserStatusOverviewRequestBuilder; /** - * Deletes a macOSGeneralDeviceConfiguration. + * Deletes a iosDeviceFeaturesConfiguration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-macosgeneraldeviceconfiguration-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-iosdevicefeaturesconfiguration-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read properties and relationships of the windows10SecureAssessmentConfiguration object. + * Read properties and relationships of the androidCustomConfiguration object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10secureassessmentconfiguration-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-androidcustomconfiguration-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -78,28 +78,28 @@ export interface DeviceConfigurationItemRequestBuilder extends BaseRequestBuilde */ getOmaSettingPlainTextValueWithSecretReferenceValueId(secretReferenceValueId: string | undefined) : GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder; /** - * Update the properties of a windows10TeamGeneralConfiguration object. + * Update the properties of a androidWorkProfileCustomConfiguration object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10teamgeneralconfiguration-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-androidworkprofilecustomconfiguration-update?view=graph-rest-1.0|Find more info here} */ patch(body: DeviceConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a macOSGeneralDeviceConfiguration. + * Deletes a iosDeviceFeaturesConfiguration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read properties and relationships of the windows10SecureAssessmentConfiguration object. + * Read properties and relationships of the androidCustomConfiguration object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of a windows10TeamGeneralConfiguration object. + * Update the properties of a androidWorkProfileCustomConfiguration object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -107,7 +107,7 @@ export interface DeviceConfigurationItemRequestBuilder extends BaseRequestBuilde toPatchRequestInformation(body: DeviceConfiguration, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Read properties and relationships of the windows10SecureAssessmentConfiguration object. + * Read properties and relationships of the androidCustomConfiguration object. */ export interface DeviceConfigurationItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/index.ts index 5882340bcc3..93a2186bd29 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/index.ts @@ -35,12 +35,12 @@ export interface DeviceEnrollmentConfigurationsRequestBuilder extends BaseReques */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object. + * Create a new deviceEnrollmentLimitConfiguration object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentlimitconfiguration-create?view=graph-rest-1.0|Find more info here} */ post(body: DeviceEnrollmentConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -50,7 +50,7 @@ export interface DeviceEnrollmentConfigurationsRequestBuilder extends BaseReques */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object. + * Create a new deviceEnrollmentLimitConfiguration object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts index 97f5fe57ef7..8715c2be637 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts @@ -31,10 +31,10 @@ export interface DeviceEnrollmentConfigurationItemRequestBuilder extends BaseReq */ get setPriority(): SetPriorityRequestBuilder; /** - * Deletes a deviceEnrollmentLimitConfiguration. + * Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentlimitconfiguration-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -55,7 +55,7 @@ export interface DeviceEnrollmentConfigurationItemRequestBuilder extends BaseReq */ patch(body: DeviceEnrollmentConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a deviceEnrollmentLimitConfiguration. + * Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts index ab29bbf467d..f6860314f05 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts @@ -375,7 +375,7 @@ export interface DeviceManagementRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-devicemanagement-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-remoteassistance-devicemanagement-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -390,7 +390,7 @@ export interface DeviceManagementRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-auditing-devicemanagement-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-devicemanagement-update?view=graph-rest-1.0|Find more info here} */ patch(body: DeviceManagement, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/roleDefinitions/item/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/roleDefinitions/item/index.ts index 5c02d5caea3..58ddd2b55ea 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/roleDefinitions/item/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/roleDefinitions/item/index.ts @@ -19,43 +19,43 @@ export interface RoleDefinitionItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Read properties and relationships of the roleDefinition object. + * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-rbac-deviceandappmanagementroledefinition-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a roleDefinition object. + * Update the properties of a deviceAndAppManagementRoleDefinition object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-rbac-deviceandappmanagementroledefinition-update?view=graph-rest-1.0|Find more info here} */ patch(body: RoleDefinition, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a deviceAndAppManagementRoleDefinition. + * Deletes a roleDefinition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read properties and relationships of the roleDefinition object. + * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of a roleDefinition object. + * Update the properties of a deviceAndAppManagementRoleDefinition object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -63,7 +63,7 @@ export interface RoleDefinitionItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Read properties and relationships of the roleDefinition object. + * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. */ export interface RoleDefinitionItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-drives/drives/item/items/item/retentionLabel/index.ts b/packages/msgraph-sdk-drives/drives/item/items/item/retentionLabel/index.ts index 57b3dc5a018..e03d8d372dd 100644 --- a/packages/msgraph-sdk-drives/drives/item/items/item/retentionLabel/index.ts +++ b/packages/msgraph-sdk-drives/drives/item/items/item/retentionLabel/index.ts @@ -27,12 +27,12 @@ export interface RetentionLabelRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. + * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0|Find more info here} */ patch(body: ItemRetentionLabel, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -48,7 +48,7 @@ export interface RetentionLabelRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. + * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/names/item/range/index.ts b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/names/item/range/index.ts index 5abc21e1c3e..9d869c8a6cb 100644 --- a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/names/item/range/index.ts +++ b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/names/item/range/index.ts @@ -13,15 +13,15 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface RangeRequestBuilder extends BaseRequestBuilder { /** - * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. + * Retrieve the properties and relationships of range object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/nameditem-range?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/range-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. + * Retrieve the properties and relationships of range object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/tables/add/index.ts b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/tables/add/index.ts index e78caed249a..3a1d7a654f5 100644 --- a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/tables/add/index.ts +++ b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/tables/add/index.ts @@ -31,16 +31,16 @@ export interface AddPostRequestBody extends AdditionalDataHolder, BackedModel, P */ export interface AddRequestBuilder extends BaseRequestBuilder { /** - * 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. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/tablecollection-add?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/workbook-post-tables?view=graph-rest-1.0|Find more info here} */ post(body: AddPostRequestBody, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * 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. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/names/item/range/index.ts b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/names/item/range/index.ts index 0eb647562f9..328d5a94857 100644 --- a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/names/item/range/index.ts +++ b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/names/item/range/index.ts @@ -13,15 +13,15 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface RangeRequestBuilder extends BaseRequestBuilder { /** - * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. + * Retrieve the properties and relationships of range object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/nameditem-range?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/range-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. + * Retrieve the properties and relationships of range object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/tables/add/index.ts b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/tables/add/index.ts index 1014b6b0da2..f750fc5cc9d 100644 --- a/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/tables/add/index.ts +++ b/packages/msgraph-sdk-drives/drives/item/items/item/workbook/worksheets/item/tables/add/index.ts @@ -31,16 +31,16 @@ export interface AddPostRequestBody extends AdditionalDataHolder, BackedModel, P */ export interface AddRequestBuilder extends BaseRequestBuilder { /** - * 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. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/tablecollection-add?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/workbook-post-tables?view=graph-rest-1.0|Find more info here} */ post(body: AddPostRequestBody, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * 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. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-education/education/classes/item/assignments/item/submissions/item/excuse/index.ts b/packages/msgraph-sdk-education/education/classes/item/assignments/item/submissions/item/excuse/index.ts index 8a0ce4223da..6cd112721e6 100644 --- a/packages/msgraph-sdk-education/education/classes/item/assignments/item/submissions/item/excuse/index.ts +++ b/packages/msgraph-sdk-education/education/classes/item/assignments/item/submissions/item/excuse/index.ts @@ -13,14 +13,15 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface ExcuseRequestBuilder extends BaseRequestBuilder { /** - * Invoke action excuse + * Excuse a submission. Excused submissions aren't included in average grade calculations. Grading rubrics and feedback are deleted. Only teachers can perform this action. If the Prefer: include-unknown-enum-members request header is provided, the excused submission shows the excused status. Otherwise, the submission status retains the returned status. For more information about how to use this header, see the Examples section. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code + * @see {@link https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-1.0|Find more info here} */ post(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Invoke action excuse + * Excuse a submission. Excused submissions aren't included in average grade calculations. Grading rubrics and feedback are deleted. Only teachers can perform this action. If the Prefer: include-unknown-enum-members request header is provided, the excused submission shows the excused status. Otherwise, the submission status retains the returned status. For more information about how to use this header, see the Examples section. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-education/education/me/assignments/item/submissions/item/excuse/index.ts b/packages/msgraph-sdk-education/education/me/assignments/item/submissions/item/excuse/index.ts index 6fa60bee222..5db24f2aa49 100644 --- a/packages/msgraph-sdk-education/education/me/assignments/item/submissions/item/excuse/index.ts +++ b/packages/msgraph-sdk-education/education/me/assignments/item/submissions/item/excuse/index.ts @@ -13,14 +13,15 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface ExcuseRequestBuilder extends BaseRequestBuilder { /** - * Invoke action excuse + * Excuse a submission. Excused submissions aren't included in average grade calculations. Grading rubrics and feedback are deleted. Only teachers can perform this action. If the Prefer: include-unknown-enum-members request header is provided, the excused submission shows the excused status. Otherwise, the submission status retains the returned status. For more information about how to use this header, see the Examples section. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code + * @see {@link https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-1.0|Find more info here} */ post(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Invoke action excuse + * Excuse a submission. Excused submissions aren't included in average grade calculations. Grading rubrics and feedback are deleted. Only teachers can perform this action. If the Prefer: include-unknown-enum-members request header is provided, the excused submission shows the excused status. Otherwise, the submission status retains the returned status. For more information about how to use this header, see the Examples section. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-education/education/users/item/assignments/item/submissions/item/excuse/index.ts b/packages/msgraph-sdk-education/education/users/item/assignments/item/submissions/item/excuse/index.ts index 8cfcf1aea3e..a9ea5d7dbed 100644 --- a/packages/msgraph-sdk-education/education/users/item/assignments/item/submissions/item/excuse/index.ts +++ b/packages/msgraph-sdk-education/education/users/item/assignments/item/submissions/item/excuse/index.ts @@ -13,14 +13,15 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface ExcuseRequestBuilder extends BaseRequestBuilder { /** - * Invoke action excuse + * Excuse a submission. Excused submissions aren't included in average grade calculations. Grading rubrics and feedback are deleted. Only teachers can perform this action. If the Prefer: include-unknown-enum-members request header is provided, the excused submission shows the excused status. Otherwise, the submission status retains the returned status. For more information about how to use this header, see the Examples section. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code + * @see {@link https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-1.0|Find more info here} */ post(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Invoke action excuse + * Excuse a submission. Excused submissions aren't included in average grade calculations. Grading rubrics and feedback are deleted. Only teachers can perform this action. If the Prefer: include-unknown-enum-members request header is provided, the excused submission shows the excused status. Otherwise, the submission status retains the returned status. For more information about how to use this header, see the Examples section. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-external/external/connections/item/items/item/index.ts b/packages/msgraph-sdk-external/external/connections/item/items/item/index.ts index 3b9bcb7b0f7..af917f6af08 100644 --- a/packages/msgraph-sdk-external/external/connections/item/items/item/index.ts +++ b/packages/msgraph-sdk-external/external/connections/item/items/item/index.ts @@ -40,12 +40,12 @@ export interface ExternalItemItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Update the properties of an externalItem object. + * Create a new externalItem object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/externalconnectors-externalitem-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/externalconnectors-externalconnection-put-items?view=graph-rest-1.0|Find more info here} */ put(body: ExternalItem, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -61,7 +61,7 @@ export interface ExternalItemItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Update the properties of an externalItem object. + * Create a new externalItem object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-groups/groups/index.ts b/packages/msgraph-sdk-groups/groups/index.ts index 4f3c2e41a49..679d25f990d 100644 --- a/packages/msgraph-sdk-groups/groups/index.ts +++ b/packages/msgraph-sdk-groups/groups/index.ts @@ -59,12 +59,12 @@ export interface GroupsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * 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. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/group-post-groups?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0|Find more info here} */ post(body: Group, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -74,7 +74,7 @@ export interface GroupsRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * 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. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-groups/groups/item/conversations/item/index.ts b/packages/msgraph-sdk-groups/groups/item/conversations/item/index.ts index 215d1cef61c..ec6ee6b1f86 100644 --- a/packages/msgraph-sdk-groups/groups/item/conversations/item/index.ts +++ b/packages/msgraph-sdk-groups/groups/item/conversations/item/index.ts @@ -22,7 +22,7 @@ export interface ConversationItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-groups/groups/item/conversations/item/threads/item/reply/index.ts b/packages/msgraph-sdk-groups/groups/item/conversations/item/threads/item/reply/index.ts index 2db3f0edc47..9ca5ea6f15f 100644 --- a/packages/msgraph-sdk-groups/groups/item/conversations/item/threads/item/reply/index.ts +++ b/packages/msgraph-sdk-groups/groups/item/conversations/item/threads/item/reply/index.ts @@ -45,15 +45,15 @@ export interface ReplyPostRequestBody extends AdditionalDataHolder, BackedModel, */ export interface ReplyRequestBuilder extends BaseRequestBuilder { /** - * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0|Find more info here} */ post(body: ReplyPostRequestBody, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-groups/groups/item/threads/item/index.ts b/packages/msgraph-sdk-groups/groups/item/threads/item/index.ts index a1259ea8566..e997e24c85a 100644 --- a/packages/msgraph-sdk-groups/groups/item/threads/item/index.ts +++ b/packages/msgraph-sdk-groups/groups/item/threads/item/index.ts @@ -32,11 +32,11 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * Get a thread object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/conversationthread-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/group-get-thread?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -55,7 +55,7 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * Get a thread object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -69,7 +69,7 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder toPatchRequestInformation(body: ConversationThread, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * Get a thread object. */ export interface ConversationThreadItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-groups/groups/item/threads/item/reply/index.ts b/packages/msgraph-sdk-groups/groups/item/threads/item/reply/index.ts index 6d0b12b3ad9..4013d0ec08d 100644 --- a/packages/msgraph-sdk-groups/groups/item/threads/item/reply/index.ts +++ b/packages/msgraph-sdk-groups/groups/item/threads/item/reply/index.ts @@ -45,15 +45,15 @@ export interface ReplyPostRequestBody extends AdditionalDataHolder, BackedModel, */ export interface ReplyRequestBuilder extends BaseRequestBuilder { /** - * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0|Find more info here} */ post(body: ReplyPostRequestBody, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-identity/identity/conditionalAccess/namedLocations/item/index.ts b/packages/msgraph-sdk-identity/identity/conditionalAccess/namedLocations/item/index.ts index 26c3bfce588..8e185d8d6fa 100644 --- a/packages/msgraph-sdk-identity/identity/conditionalAccess/namedLocations/item/index.ts +++ b/packages/msgraph-sdk-identity/identity/conditionalAccess/namedLocations/item/index.ts @@ -13,10 +13,10 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface NamedLocationItemRequestBuilder extends BaseRequestBuilder { /** - * Delete an ipNamedLocation object. + * Delete a countryNamedLocation object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/ipnamedlocation-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/countrynamedlocation-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -37,7 +37,7 @@ export interface NamedLocationItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Delete an ipNamedLocation object. + * Delete a countryNamedLocation object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-identityGovernance/identityGovernance/entitlementManagement/catalogs/item/customWorkflowExtensions/item/index.ts b/packages/msgraph-sdk-identityGovernance/identityGovernance/entitlementManagement/catalogs/item/customWorkflowExtensions/item/index.ts index f250b64b9d2..e131a102ebb 100644 --- a/packages/msgraph-sdk-identityGovernance/identityGovernance/entitlementManagement/catalogs/item/customWorkflowExtensions/item/index.ts +++ b/packages/msgraph-sdk-identityGovernance/identityGovernance/entitlementManagement/catalogs/item/customWorkflowExtensions/item/index.ts @@ -28,12 +28,12 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of an accessPackageAssignmentRequestWorkflowExtension object. + * Update the properties of an accessPackageAssignmentWorkflowExtension object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/accesspackageassignmentrequestworkflowextension-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-update?view=graph-rest-1.0|Find more info here} */ patch(body: CustomCalloutExtension, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -49,7 +49,7 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of an accessPackageAssignmentRequestWorkflowExtension object. + * Update the properties of an accessPackageAssignmentWorkflowExtension object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-identityGovernance/identityGovernance/termsOfUse/agreements/item/index.ts b/packages/msgraph-sdk-identityGovernance/identityGovernance/termsOfUse/agreements/item/index.ts index 51491b37980..f291ebb25d4 100644 --- a/packages/msgraph-sdk-identityGovernance/identityGovernance/termsOfUse/agreements/item/index.ts +++ b/packages/msgraph-sdk-identityGovernance/identityGovernance/termsOfUse/agreements/item/index.ts @@ -38,11 +38,11 @@ export interface AgreementItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Retrieve all files related to an agreement. This includes the default file and all localized files. + * Retrieve the properties and relationships of an agreement object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/agreement-list-files?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/agreement-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -61,7 +61,7 @@ export interface AgreementItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Retrieve all files related to an agreement. This includes the default file and all localized files. + * Retrieve the properties and relationships of an agreement object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -75,7 +75,7 @@ export interface AgreementItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Retrieve all files related to an agreement. This includes the default file and all localized files. + * Retrieve the properties and relationships of an agreement object. */ export interface AgreementItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-identityProtection/identityProtection/riskyUsers/item/history/index.ts b/packages/msgraph-sdk-identityProtection/identityProtection/riskyUsers/item/history/index.ts index 70478c69ba0..fcdf7b03601 100644 --- a/packages/msgraph-sdk-identityProtection/identityProtection/riskyUsers/item/history/index.ts +++ b/packages/msgraph-sdk-identityProtection/identityProtection/riskyUsers/item/history/index.ts @@ -27,11 +27,11 @@ export interface HistoryRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/riskyuser-list-history?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/riskyuser-get-riskyuserhistoryitem?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -43,7 +43,7 @@ export interface HistoryRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Get the riskyUserHistoryItems from the history navigation property. + * Read the properties and relationships of a riskyUserHistoryItem object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -57,7 +57,7 @@ export interface HistoryRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Get the riskyUserHistoryItems from the history navigation property. + * Read the properties and relationships of a riskyUserHistoryItem object. */ export interface HistoryRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-organization/organization/index.ts b/packages/msgraph-sdk-organization/organization/index.ts index 4e9041cc1b8..71ec0a08f9e 100644 --- a/packages/msgraph-sdk-organization/organization/index.ts +++ b/packages/msgraph-sdk-organization/organization/index.ts @@ -51,11 +51,11 @@ export interface OrganizationRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-organization-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -67,7 +67,7 @@ export interface OrganizationRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * List properties and relationships of the organization objects. + * Retrieve a list of organization objects. There's only one organization object in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -81,7 +81,7 @@ export interface OrganizationRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * List properties and relationships of the organization objects. + * Retrieve a list of organization objects. There's only one organization object in the collection. */ export interface OrganizationRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-organization/organization/item/index.ts b/packages/msgraph-sdk-organization/organization/item/index.ts index 9aa2126f406..129eb01856c 100644 --- a/packages/msgraph-sdk-organization/organization/item/index.ts +++ b/packages/msgraph-sdk-organization/organization/item/index.ts @@ -81,12 +81,12 @@ export interface OrganizationItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Update the properties of the currently authenticated organization. In this case, organization is defined as a collection of exactly one record, and so its ID must be specified in the request. The ID is also known as the tenantId of the organization. + * Update the properties of a organization object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/organization-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-organization-update?view=graph-rest-1.0|Find more info here} */ patch(body: Organization, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -102,7 +102,7 @@ export interface OrganizationItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Update the properties of the currently authenticated organization. In this case, organization is defined as a collection of exactly one record, and so its ID must be specified in the request. The ID is also known as the tenantId of the organization. + * Update the properties of a organization object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-policies/policies/crossTenantAccessPolicy/partners/item/identitySynchronization/index.ts b/packages/msgraph-sdk-policies/policies/crossTenantAccessPolicy/partners/item/identitySynchronization/index.ts index 7de608ed31b..e8f7b967bac 100644 --- a/packages/msgraph-sdk-policies/policies/crossTenantAccessPolicy/partners/item/identitySynchronization/index.ts +++ b/packages/msgraph-sdk-policies/policies/crossTenantAccessPolicy/partners/item/identitySynchronization/index.ts @@ -28,12 +28,12 @@ export interface IdentitySynchronizationRequestBuilder extends BaseRequestBuilde */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a cross-tenant user synchronization policy for a partner-specific configuration. + * Update the user synchronization policy of a partner-specific configuration. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationpartner-put-identitysynchronization?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/crosstenantidentitysyncpolicypartner-update?view=graph-rest-1.0|Find more info here} */ put(body: CrossTenantIdentitySyncPolicyPartner, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -49,7 +49,7 @@ export interface IdentitySynchronizationRequestBuilder extends BaseRequestBuilde */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Create a cross-tenant user synchronization policy for a partner-specific configuration. + * Update the user synchronization policy of a partner-specific configuration. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-sites/sites/index.ts b/packages/msgraph-sdk-sites/sites/index.ts index f1a0cfd4320..07792bfd51f 100644 --- a/packages/msgraph-sdk-sites/sites/index.ts +++ b/packages/msgraph-sdk-sites/sites/index.ts @@ -51,22 +51,22 @@ export interface SitesRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/site-search?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/site-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Search across a SharePoint tenant for sites that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. + * List all available sites in an organization. Specific filter criteria and query options are also supported and described below: In addition, you can use a $search query against the /sites collection to find sites matching given keywords.If you want to list all sites across all geographies, refer to getAllSites. For more guidance about building applications that use site discovery for scanning purposes, see Best practices for discovering files and detecting changes at scale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Search across a SharePoint tenant for sites that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. + * List all available sites in an organization. Specific filter criteria and query options are also supported and described below: In addition, you can use a $search query against the /sites collection to find sites matching given keywords.If you want to list all sites across all geographies, refer to getAllSites. For more guidance about building applications that use site discovery for scanning purposes, see Best practices for discovering files and detecting changes at scale. */ export interface SitesRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-teams/teams/item/channels/item/members/item/index.ts b/packages/msgraph-sdk-teams/teams/item/channels/item/members/item/index.ts index 4764dc83be3..35d5878ffc3 100644 --- a/packages/msgraph-sdk-teams/teams/item/channels/item/members/item/index.ts +++ b/packages/msgraph-sdk-teams/teams/item/channels/item/members/item/index.ts @@ -13,10 +13,10 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder { /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete a conversationMember from a channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -37,7 +37,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder */ patch(body: ConversationMember, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete a conversationMember from a channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-users/users/index.ts b/packages/msgraph-sdk-users/users/index.ts index 862c3504133..8a3764d8cde 100644 --- a/packages/msgraph-sdk-users/users/index.ts +++ b/packages/msgraph-sdk-users/users/index.ts @@ -51,11 +51,11 @@ export interface UsersRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/user-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-user-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -64,11 +64,11 @@ export interface UsersRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-user-create?view=graph-rest-1.0|Find more info here} */ post(body: User, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Retrieve a list of user objects. + * List properties and relationships of the user objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -82,7 +82,7 @@ export interface UsersRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Retrieve a list of user objects. + * List properties and relationships of the user objects. */ export interface UsersRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-users/users/item/index.ts b/packages/msgraph-sdk-users/users/item/index.ts index ced62916bed..68c3e386dcb 100644 --- a/packages/msgraph-sdk-users/users/item/index.ts +++ b/packages/msgraph-sdk-users/users/item/index.ts @@ -455,10 +455,10 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** @@ -477,12 +477,12 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Update the properties of a user object. + * Update the properties of a user object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. Compare member and guest default permissions to see properties they can manage. Customers through Microsoft Entra ID for customers can also use this API operation to update their details. See Default user permissions in customer tenants for the list of properties they can update. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/user-update?view=graph-rest-1.0|Find more info here} */ patch(body: User, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -493,7 +493,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Update the properties of a user object. + * Update the properties of a user object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. Compare member and guest default permissions to see properties they can manage. Customers through Microsoft Entra ID for customers can also use this API operation to update their details. See Default user permissions in customer tenants for the list of properties they can update. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-users/users/item/onlineMeetings/item/attendeeReport/index.ts b/packages/msgraph-sdk-users/users/item/onlineMeetings/item/attendeeReport/index.ts index cb927d24120..d4f7170028d 100644 --- a/packages/msgraph-sdk-users/users/item/onlineMeetings/item/attendeeReport/index.ts +++ b/packages/msgraph-sdk-users/users/item/onlineMeetings/item/attendeeReport/index.ts @@ -11,20 +11,20 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface AttendeeReportRequestBuilder extends BaseRequestBuilder { /** - * Delete attendeeReport for the navigation property onlineMeetings in users + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Get attendeeReport for the navigation property onlineMeetings from users + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update attendeeReport for the navigation property onlineMeetings in users + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param body Binary request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} @@ -32,19 +32,19 @@ export interface AttendeeReportRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Delete attendeeReport for the navigation property onlineMeetings in users + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Get attendeeReport for the navigation property onlineMeetings from users + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update attendeeReport for the navigation property onlineMeetings in users + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. * @param body Binary request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} diff --git a/packages/msgraph-sdk-users/users/item/presence/index.ts b/packages/msgraph-sdk-users/users/item/presence/index.ts index c723b2abb74..10def6e7c53 100644 --- a/packages/msgraph-sdk-users/users/item/presence/index.ts +++ b/packages/msgraph-sdk-users/users/item/presence/index.ts @@ -49,11 +49,11 @@ export interface PresenceRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Get a user's presence information. + * Set a presence status message for a user. An optional expiration date and time can be supplied. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -71,7 +71,7 @@ export interface PresenceRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Get a user's presence information. + * Set a presence status message for a user. An optional expiration date and time can be supplied. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -85,7 +85,7 @@ export interface PresenceRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Get a user's presence information. + * Set a presence status message for a user. An optional expiration date and time can be supplied. */ export interface PresenceRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk/models/identityGovernance/index.ts b/packages/msgraph-sdk/models/identityGovernance/index.ts index 46acced0b6d..6636ed49d9a 100644 --- a/packages/msgraph-sdk/models/identityGovernance/index.ts +++ b/packages/msgraph-sdk/models/identityGovernance/index.ts @@ -1479,7 +1479,7 @@ export interface TaskDefinition extends Entity, Parsable { */ category?: LifecycleTaskCategory[]; /** - * The continueOnError property + * Defines if the workflow will continue if the task has an error. */ continueOnError?: boolean; /** diff --git a/packages/msgraph-sdk/models/index.ts b/packages/msgraph-sdk/models/index.ts index 81c8411c363..dea0e29d4ba 100644 --- a/packages/msgraph-sdk/models/index.ts +++ b/packages/msgraph-sdk/models/index.ts @@ -4,7 +4,7 @@ // @ts-ignore import { createCallRecordFromDiscriminatorValue, deserializeIntoCallRecord, deserializeIntoCallRecordCollectionResponse, deserializeIntoSegment, deserializeIntoSegmentCollectionResponse, deserializeIntoSession, deserializeIntoSessionCollectionResponse, serializeCallRecord, type CallRecord, type Segment, type Session } from './callRecords/'; // @ts-ignore -import { deserializeIntoConnectionOperation, deserializeIntoConnectionOperationCollectionResponse, deserializeIntoExternalActivity, deserializeIntoExternalActivityCollectionResponse, deserializeIntoExternalActivityResult, deserializeIntoExternalConnection, deserializeIntoExternalConnectionCollectionResponse, deserializeIntoExternalGroup, deserializeIntoExternalGroupCollectionResponse, deserializeIntoExternalItem, deserializeIntoExternalItemCollectionResponse, deserializeIntoIdentity as I6cca9104b5f268bbdfe842a4a66249144b292ea8bf862c1c06beccaa482add9e, deserializeIntoIdentityCollectionResponse, deserializeIntoSchema, type ConnectionOperation, type ExternalActivity, type ExternalActivityResult, type ExternalConnection, type ExternalGroup, type ExternalItem, type Identity as Ia0cd7f4a19ad5bacdaff8664d3e5bbbf3de753cfd9112ff103e8b52cf170b642, type Schema } from './externalConnectors/'; +import { deserializeIntoConnectionOperation, deserializeIntoConnectionOperationCollectionResponse, deserializeIntoExternalActivity, deserializeIntoExternalActivityCollectionResponse, deserializeIntoExternalActivityResult, deserializeIntoExternalConnection, deserializeIntoExternalConnectionCollectionResponse, deserializeIntoExternalGroup, deserializeIntoExternalGroupCollectionResponse, deserializeIntoExternalItem, deserializeIntoExternalItemCollectionResponse, deserializeIntoIdentity as I137354aa1f844bbb5aa5ffd805e739993f9683605f407d143ca49924697fa7af, deserializeIntoIdentityCollectionResponse, deserializeIntoSchema, type ConnectionOperation, type ExternalActivity, type ExternalActivityResult, type ExternalConnection, type ExternalGroup, type ExternalItem, type Identity as Ifb2761dda3c239db3019af8eaafe2cf1b9ad52c637ab4e40cb4ccf5f1a0b74e3, type Schema } from './externalConnectors/'; // @ts-ignore import { createLifecycleWorkflowsContainerFromDiscriminatorValue, createWorkflowFromDiscriminatorValue, deserializeIntoCustomTaskExtension, deserializeIntoCustomTaskExtensionCallbackConfiguration, deserializeIntoCustomTaskExtensionCallbackData, deserializeIntoCustomTaskExtensionCalloutData, deserializeIntoCustomTaskExtensionCollectionResponse, deserializeIntoLifecycleManagementSettings, deserializeIntoLifecycleWorkflowsContainer, deserializeIntoRuleBasedSubjectSet, deserializeIntoRun, deserializeIntoRunCollectionResponse, deserializeIntoTask, deserializeIntoTaskCollectionResponse, deserializeIntoTaskDefinition, deserializeIntoTaskDefinitionCollectionResponse, deserializeIntoTaskProcessingResult, deserializeIntoTaskProcessingResultCollectionResponse, deserializeIntoTaskReport, deserializeIntoTaskReportCollectionResponse, deserializeIntoUserProcessingResult, deserializeIntoUserProcessingResultCollectionResponse, deserializeIntoWorkflowCollectionResponse, deserializeIntoWorkflowTemplate, deserializeIntoWorkflowTemplateCollectionResponse, deserializeIntoWorkflowVersionCollectionResponse, serializeLifecycleWorkflowsContainer, serializeWorkflow, type CustomTaskExtension, type CustomTaskExtensionCallbackConfiguration, type CustomTaskExtensionCallbackData, type CustomTaskExtensionCalloutData, type LifecycleManagementSettings, type LifecycleWorkflowsContainer, type RuleBasedSubjectSet, type Run, type Task, type TaskDefinition, type TaskProcessingResult, type TaskReport, type UserProcessingResult, type Workflow, type WorkflowTemplate } from './identityGovernance/'; // @ts-ignore @@ -12,7 +12,7 @@ import { createBillingFromDiscriminatorValue, deserializeIntoAzureUsage, deseria // @ts-ignore import { createAcronymFromDiscriminatorValue, createBookmarkFromDiscriminatorValue, createQnaFromDiscriminatorValue, deserializeIntoAcronym, deserializeIntoAcronymCollectionResponse, deserializeIntoBookmark, deserializeIntoBookmarkCollectionResponse, deserializeIntoQna, deserializeIntoQnaCollectionResponse, deserializeIntoSearchAnswer, serializeAcronym, serializeBookmark, serializeQna, type Acronym, type Bookmark, type Qna, type SearchAnswer } from './search/'; // @ts-ignore -import { BehaviorDuringRetentionPeriod, BehaviorDuringRetentionPeriodObject, createCasesRootFromDiscriminatorValue, createIdentityContainerFromDiscriminatorValue as I1565b9a5ae3d1c598968bf1caf35fc3043246aa2040615e513d36666e0d164ed, createIncidentFromDiscriminatorValue, createLabelsRootFromDiscriminatorValue, createThreatIntelligenceFromDiscriminatorValue, createTriggersRootFromDiscriminatorValue, createTriggerTypesRootFromDiscriminatorValue, deserializeIntoArticle, deserializeIntoArticleCollectionResponse, deserializeIntoArticleIndicator, deserializeIntoArticleIndicatorCollectionResponse, deserializeIntoArtifact, deserializeIntoAuthorityTemplate, deserializeIntoAuthorityTemplateCollectionResponse, deserializeIntoCaseEscaped, deserializeIntoCaseOperation, deserializeIntoCaseOperationCollectionResponse, deserializeIntoCasesRoot, deserializeIntoCategoryTemplate, deserializeIntoCategoryTemplateCollectionResponse, deserializeIntoCitationTemplate, deserializeIntoCitationTemplateCollectionResponse, deserializeIntoDataSet, deserializeIntoDataSource, deserializeIntoDataSourceCollectionResponse, deserializeIntoDataSourceContainer, deserializeIntoDepartmentTemplate, deserializeIntoDepartmentTemplateCollectionResponse, deserializeIntoDispositionReviewStage, deserializeIntoDispositionReviewStageCollectionResponse, deserializeIntoEdiscoveryAddToReviewSetOperation, deserializeIntoEdiscoveryCase, deserializeIntoEdiscoveryCaseCollectionResponse, deserializeIntoEdiscoveryCaseSettings, deserializeIntoEdiscoveryCustodian, deserializeIntoEdiscoveryCustodianCollectionResponse, deserializeIntoEdiscoveryEstimateOperation, deserializeIntoEdiscoveryExportOperation, deserializeIntoEdiscoveryHoldOperation, deserializeIntoEdiscoveryIndexOperation, deserializeIntoEdiscoveryNoncustodialDataSource, deserializeIntoEdiscoveryNoncustodialDataSourceCollectionResponse, deserializeIntoEdiscoveryPurgeDataOperation, deserializeIntoEdiscoveryReviewSet, deserializeIntoEdiscoveryReviewSetCollectionResponse, deserializeIntoEdiscoveryReviewSetQuery, deserializeIntoEdiscoveryReviewSetQueryCollectionResponse, deserializeIntoEdiscoveryReviewTag, deserializeIntoEdiscoveryReviewTagCollectionResponse, deserializeIntoEdiscoverySearch, deserializeIntoEdiscoverySearchCollectionResponse, deserializeIntoEdiscoveryTagOperation, deserializeIntoFilePlanDescriptor, deserializeIntoFilePlanDescriptorTemplate, deserializeIntoFilePlanReferenceTemplate, deserializeIntoFilePlanReferenceTemplateCollectionResponse, deserializeIntoHealthIssue, deserializeIntoHealthIssueCollectionResponse, deserializeIntoHost, deserializeIntoHostCollectionResponse, deserializeIntoHostComponent, deserializeIntoHostComponentCollectionResponse, deserializeIntoHostCookie, deserializeIntoHostCookieCollectionResponse, deserializeIntoHostname, deserializeIntoHostPair, deserializeIntoHostPairCollectionResponse, deserializeIntoHostPort, deserializeIntoHostPortCollectionResponse, deserializeIntoHostReputation, deserializeIntoHostSslCertificate, deserializeIntoHostSslCertificateCollectionResponse, deserializeIntoHostTracker, deserializeIntoHostTrackerCollectionResponse, deserializeIntoIncident, deserializeIntoIncidentCollectionResponse, deserializeIntoIndicator, deserializeIntoIntelligenceProfile, deserializeIntoIntelligenceProfileCollectionResponse, deserializeIntoIntelligenceProfileIndicator, deserializeIntoIntelligenceProfileIndicatorCollectionResponse, deserializeIntoIpAddress, deserializeIntoLabelsRoot, deserializeIntoPassiveDnsRecord, deserializeIntoPassiveDnsRecordCollectionResponse, deserializeIntoRetentionEvent, deserializeIntoRetentionEventCollectionResponse, deserializeIntoRetentionEventType, deserializeIntoRetentionEventTypeCollectionResponse, deserializeIntoRetentionLabel, deserializeIntoRetentionLabelCollectionResponse, deserializeIntoSearch, deserializeIntoSiteSource, deserializeIntoSiteSourceCollectionResponse, deserializeIntoSslCertificate, deserializeIntoSslCertificateCollectionResponse, deserializeIntoSubcategoryTemplate, deserializeIntoSubcategoryTemplateCollectionResponse, deserializeIntoSubdomain, deserializeIntoSubdomainCollectionResponse, deserializeIntoTag, deserializeIntoThreatIntelligence, deserializeIntoTriggersRoot, deserializeIntoTriggerTypesRoot, deserializeIntoUnclassifiedArtifact, deserializeIntoUnifiedGroupSource, deserializeIntoUnifiedGroupSourceCollectionResponse, deserializeIntoUserSource, deserializeIntoUserSourceCollectionResponse, deserializeIntoVulnerability, deserializeIntoVulnerabilityCollectionResponse, deserializeIntoVulnerabilityComponent, deserializeIntoVulnerabilityComponentCollectionResponse, deserializeIntoWhoisBaseRecord, deserializeIntoWhoisHistoryRecord, deserializeIntoWhoisHistoryRecordCollectionResponse, deserializeIntoWhoisRecord, deserializeIntoWhoisRecordCollectionResponse, serializeCasesRoot, serializeIdentityContainer as I48dada3d5c23b8e10cc6ed149fa116c82d834b1e36427328be2ec6a4fa1d3427, serializeIncident, serializeLabelsRoot, serializeThreatIntelligence, serializeTriggersRoot, serializeTriggerTypesRoot, type Article, type ArticleIndicator, type Artifact, type AuthorityTemplate, type CaseEscaped, type CaseOperation, type CasesRoot, type CategoryTemplate, type CitationTemplate, type DataSet, type DataSource, type DataSourceContainer, type DepartmentTemplate, type DispositionReviewStage, type EdiscoveryAddToReviewSetOperation, type EdiscoveryCase, type EdiscoveryCaseSettings, type EdiscoveryCustodian, type EdiscoveryEstimateOperation, type EdiscoveryExportOperation, type EdiscoveryHoldOperation, type EdiscoveryIndexOperation, type EdiscoveryNoncustodialDataSource, type EdiscoveryPurgeDataOperation, type EdiscoveryReviewSet, type EdiscoveryReviewSetQuery, type EdiscoveryReviewTag, type EdiscoverySearch, type EdiscoveryTagOperation, type FilePlanDescriptor, type FilePlanDescriptorTemplate, type FilePlanReferenceTemplate, type HealthIssue, type Host, type HostComponent, type HostCookie, type Hostname, type HostPair, type HostPort, type HostReputation, type HostSslCertificate, type HostTracker, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type Indicator, type IntelligenceProfile, type IntelligenceProfileIndicator, type IpAddress, type LabelsRoot, type PassiveDnsRecord, type RetentionEvent, type RetentionEventType, type RetentionLabel, type Search, type SiteSource, type SslCertificate, type SubcategoryTemplate, type Subdomain, type Tag, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot, type UnclassifiedArtifact, type UnifiedGroupSource, type UserSource, type Vulnerability, type VulnerabilityComponent, type WhoisBaseRecord, type WhoisHistoryRecord, type WhoisRecord } from './security/'; +import { BehaviorDuringRetentionPeriod, BehaviorDuringRetentionPeriodObject, createCasesRootFromDiscriminatorValue, createIdentityContainerFromDiscriminatorValue as I935b7de91425579f950e93b26ee70d12698bf4d797e21a9ad70489ad679cdff9, createIncidentFromDiscriminatorValue, createLabelsRootFromDiscriminatorValue, createThreatIntelligenceFromDiscriminatorValue, createTriggersRootFromDiscriminatorValue, createTriggerTypesRootFromDiscriminatorValue, deserializeIntoArticle, deserializeIntoArticleCollectionResponse, deserializeIntoArticleIndicator, deserializeIntoArticleIndicatorCollectionResponse, deserializeIntoArtifact, deserializeIntoAuthorityTemplate, deserializeIntoAuthorityTemplateCollectionResponse, deserializeIntoCaseEscaped, deserializeIntoCaseOperation, deserializeIntoCaseOperationCollectionResponse, deserializeIntoCasesRoot, deserializeIntoCategoryTemplate, deserializeIntoCategoryTemplateCollectionResponse, deserializeIntoCitationTemplate, deserializeIntoCitationTemplateCollectionResponse, deserializeIntoDataSet, deserializeIntoDataSource, deserializeIntoDataSourceCollectionResponse, deserializeIntoDataSourceContainer, deserializeIntoDepartmentTemplate, deserializeIntoDepartmentTemplateCollectionResponse, deserializeIntoDispositionReviewStage, deserializeIntoDispositionReviewStageCollectionResponse, deserializeIntoEdiscoveryAddToReviewSetOperation, deserializeIntoEdiscoveryCase, deserializeIntoEdiscoveryCaseCollectionResponse, deserializeIntoEdiscoveryCaseSettings, deserializeIntoEdiscoveryCustodian, deserializeIntoEdiscoveryCustodianCollectionResponse, deserializeIntoEdiscoveryEstimateOperation, deserializeIntoEdiscoveryExportOperation, deserializeIntoEdiscoveryHoldOperation, deserializeIntoEdiscoveryIndexOperation, deserializeIntoEdiscoveryNoncustodialDataSource, deserializeIntoEdiscoveryNoncustodialDataSourceCollectionResponse, deserializeIntoEdiscoveryPurgeDataOperation, deserializeIntoEdiscoveryReviewSet, deserializeIntoEdiscoveryReviewSetCollectionResponse, deserializeIntoEdiscoveryReviewSetQuery, deserializeIntoEdiscoveryReviewSetQueryCollectionResponse, deserializeIntoEdiscoveryReviewTag, deserializeIntoEdiscoveryReviewTagCollectionResponse, deserializeIntoEdiscoverySearch, deserializeIntoEdiscoverySearchCollectionResponse, deserializeIntoEdiscoveryTagOperation, deserializeIntoFilePlanDescriptor, deserializeIntoFilePlanDescriptorTemplate, deserializeIntoFilePlanReferenceTemplate, deserializeIntoFilePlanReferenceTemplateCollectionResponse, deserializeIntoHealthIssue, deserializeIntoHealthIssueCollectionResponse, deserializeIntoHost, deserializeIntoHostCollectionResponse, deserializeIntoHostComponent, deserializeIntoHostComponentCollectionResponse, deserializeIntoHostCookie, deserializeIntoHostCookieCollectionResponse, deserializeIntoHostname, deserializeIntoHostPair, deserializeIntoHostPairCollectionResponse, deserializeIntoHostPort, deserializeIntoHostPortCollectionResponse, deserializeIntoHostReputation, deserializeIntoHostSslCertificate, deserializeIntoHostSslCertificateCollectionResponse, deserializeIntoHostTracker, deserializeIntoHostTrackerCollectionResponse, deserializeIntoIncident, deserializeIntoIncidentCollectionResponse, deserializeIntoIndicator, deserializeIntoIntelligenceProfile, deserializeIntoIntelligenceProfileCollectionResponse, deserializeIntoIntelligenceProfileIndicator, deserializeIntoIntelligenceProfileIndicatorCollectionResponse, deserializeIntoIpAddress, deserializeIntoLabelsRoot, deserializeIntoPassiveDnsRecord, deserializeIntoPassiveDnsRecordCollectionResponse, deserializeIntoRetentionEvent, deserializeIntoRetentionEventCollectionResponse, deserializeIntoRetentionEventType, deserializeIntoRetentionEventTypeCollectionResponse, deserializeIntoRetentionLabel, deserializeIntoRetentionLabelCollectionResponse, deserializeIntoSearch, deserializeIntoSiteSource, deserializeIntoSiteSourceCollectionResponse, deserializeIntoSslCertificate, deserializeIntoSslCertificateCollectionResponse, deserializeIntoSubcategoryTemplate, deserializeIntoSubcategoryTemplateCollectionResponse, deserializeIntoSubdomain, deserializeIntoSubdomainCollectionResponse, deserializeIntoTag, deserializeIntoThreatIntelligence, deserializeIntoTriggersRoot, deserializeIntoTriggerTypesRoot, deserializeIntoUnclassifiedArtifact, deserializeIntoUnifiedGroupSource, deserializeIntoUnifiedGroupSourceCollectionResponse, deserializeIntoUserSource, deserializeIntoUserSourceCollectionResponse, deserializeIntoVulnerability, deserializeIntoVulnerabilityCollectionResponse, deserializeIntoVulnerabilityComponent, deserializeIntoVulnerabilityComponentCollectionResponse, deserializeIntoWhoisBaseRecord, deserializeIntoWhoisHistoryRecord, deserializeIntoWhoisHistoryRecordCollectionResponse, deserializeIntoWhoisRecord, deserializeIntoWhoisRecordCollectionResponse, serializeCasesRoot, serializeIdentityContainer as I3578b2bed1b5c0dc75d4936caf82e6213a17e94d1aa9efb2f5f64827fd00f3f1, serializeIncident, serializeLabelsRoot, serializeThreatIntelligence, serializeTriggersRoot, serializeTriggerTypesRoot, type Article, type ArticleIndicator, type Artifact, type AuthorityTemplate, type CaseEscaped, type CaseOperation, type CasesRoot, type CategoryTemplate, type CitationTemplate, type DataSet, type DataSource, type DataSourceContainer, type DepartmentTemplate, type DispositionReviewStage, type EdiscoveryAddToReviewSetOperation, type EdiscoveryCase, type EdiscoveryCaseSettings, type EdiscoveryCustodian, type EdiscoveryEstimateOperation, type EdiscoveryExportOperation, type EdiscoveryHoldOperation, type EdiscoveryIndexOperation, type EdiscoveryNoncustodialDataSource, type EdiscoveryPurgeDataOperation, type EdiscoveryReviewSet, type EdiscoveryReviewSetQuery, type EdiscoveryReviewTag, type EdiscoverySearch, type EdiscoveryTagOperation, type FilePlanDescriptor, type FilePlanDescriptorTemplate, type FilePlanReferenceTemplate, type HealthIssue, type Host, type HostComponent, type HostCookie, type Hostname, type HostPair, type HostPort, type HostReputation, type HostSslCertificate, type HostTracker, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type Indicator, type IntelligenceProfile, type IntelligenceProfileIndicator, type IpAddress, type LabelsRoot, type PassiveDnsRecord, type RetentionEvent, type RetentionEventType, type RetentionLabel, type Search, type SiteSource, type SslCertificate, type SubcategoryTemplate, type Subdomain, type Tag, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot, type UnclassifiedArtifact, type UnifiedGroupSource, type UserSource, type Vulnerability, type VulnerabilityComponent, type WhoisBaseRecord, type WhoisHistoryRecord, type WhoisRecord } from './security/'; // @ts-ignore import { createSetFromDiscriminatorValue, createStoreFromDiscriminatorValue, createTermFromDiscriminatorValue, deserializeIntoRelation, deserializeIntoRelationCollectionResponse, deserializeIntoSet, deserializeIntoSetCollectionResponse, deserializeIntoStore, deserializeIntoStoreCollectionResponse, deserializeIntoTerm, deserializeIntoTermCollectionResponse, serializeSet, serializeStore, serializeTerm, type Relation, type Set, type Store, type Term } from './termStore/'; // @ts-ignore @@ -154,7 +154,7 @@ export interface AccessPackageAnswerChoice extends AdditionalDataHolder, BackedM */ odataType?: string; /** - * The text property + * The string to display for this answer; if an Accept-Language header is provided, and there is a matching localization in localizations, this string will be the matching localized string; otherwise, this string remains as the default non-localized string. Required. */ text?: string; } @@ -1809,7 +1809,7 @@ export interface AddIn extends AdditionalDataHolder, BackedModel, Parsable { */ backingStoreEnabled?: boolean; /** - * The id property + * The unique identifier for the addIn object. */ id?: Guid; /** @@ -1817,11 +1817,11 @@ export interface AddIn extends AdditionalDataHolder, BackedModel, Parsable { */ odataType?: string; /** - * The properties property + * The collection of key-value pairs that define parameters that the consuming service can use or call. You must specify this property when performing a POST or a PATCH operation on the addIns collection. Required. */ properties?: KeyValue[]; /** - * The type property + * The unique name for the functionality exposed by the app. */ type?: string; } @@ -4754,7 +4754,7 @@ export interface AttributeDefinition extends AdditionalDataHolder, BackedModel, */ caseExact?: boolean; /** - * The defaultValue property + * The default value of the attribute. */ defaultValue?: string; /** @@ -5061,7 +5061,7 @@ export interface AudioConferencing extends AdditionalDataHolder, BackedModel, Pa */ odataType?: string; /** - * The tollFreeNumber property + * The toll-free number that connects to the Audio Conference Provider. */ tollFreeNumber?: string; /** @@ -5069,7 +5069,7 @@ export interface AudioConferencing extends AdditionalDataHolder, BackedModel, Pa */ tollFreeNumbers?: string[]; /** - * The tollNumber property + * The toll number that connects to the Audio Conference Provider. */ tollNumber?: string; /** @@ -5451,7 +5451,7 @@ export interface AuthenticationContextClassReferenceCollectionResponse extends B } export interface AuthenticationEventListener extends Entity, Parsable { /** - * The authenticationEventsFlowId property + * Indicates the authenticationEventListener is associated with an authenticationEventsFlow. Read-only. */ authenticationEventsFlowId?: string; /** @@ -54862,7 +54862,7 @@ export function deserializeIntoSecurity(security: Partial | undefined "alerts_v2": n => { security.alerts_v2 = n.getCollectionOfObjectValues(createAlertFromDiscriminatorValue); }, "attackSimulation": n => { security.attackSimulation = n.getObjectValue(createAttackSimulationRootFromDiscriminatorValue); }, "cases": n => { security.cases = n.getObjectValue(createCasesRootFromDiscriminatorValue); }, - "identities": n => { security.identities = n.getObjectValue(I1565b9a5ae3d1c598968bf1caf35fc3043246aa2040615e513d36666e0d164ed); }, + "identities": n => { security.identities = n.getObjectValue(I935b7de91425579f950e93b26ee70d12698bf4d797e21a9ad70489ad679cdff9); }, "incidents": n => { security.incidents = n.getCollectionOfObjectValues(createIncidentFromDiscriminatorValue); }, "labels": n => { security.labels = n.getObjectValue(createLabelsRootFromDiscriminatorValue); }, "secureScoreControlProfiles": n => { security.secureScoreControlProfiles = n.getCollectionOfObjectValues(createSecureScoreControlProfileFromDiscriminatorValue); }, @@ -63237,6 +63237,7 @@ export function deserializeIntoX509CertificateAuthenticationModeConfiguration(x5 "@odata.type": n => { x509CertificateAuthenticationModeConfiguration.odataType = n.getStringValue(); }, "rules": n => { x509CertificateAuthenticationModeConfiguration.rules = n.getCollectionOfObjectValues(createX509CertificateRuleFromDiscriminatorValue); }, "x509CertificateAuthenticationDefaultMode": n => { x509CertificateAuthenticationModeConfiguration.x509CertificateAuthenticationDefaultMode = n.getEnumValue(X509CertificateAuthenticationModeObject); }, + "x509CertificateDefaultRequiredAffinityLevel": n => { x509CertificateAuthenticationModeConfiguration.x509CertificateDefaultRequiredAffinityLevel = n.getEnumValue(X509CertificateAffinityLevelObject); }, } } /** @@ -63247,8 +63248,11 @@ export function deserializeIntoX509CertificateRule(x509CertificateRule: Partial< return { "backingStoreEnabled": n => { x509CertificateRule.backingStoreEnabled = true; }, "identifier": n => { x509CertificateRule.identifier = n.getStringValue(); }, + "issuerSubjectIdentifier": n => { x509CertificateRule.issuerSubjectIdentifier = n.getStringValue(); }, "@odata.type": n => { x509CertificateRule.odataType = n.getStringValue(); }, + "policyOidIdentifier": n => { x509CertificateRule.policyOidIdentifier = n.getStringValue(); }, "x509CertificateAuthenticationMode": n => { x509CertificateRule.x509CertificateAuthenticationMode = n.getEnumValue(X509CertificateAuthenticationModeObject); }, + "x509CertificateRequiredAffinityLevel": n => { x509CertificateRule.x509CertificateRequiredAffinityLevel = n.getEnumValue(X509CertificateAffinityLevelObject); }, "x509CertificateRuleType": n => { x509CertificateRule.x509CertificateRuleType = n.getEnumValue(X509CertificateRuleTypeObject); }, } } @@ -63261,6 +63265,7 @@ export function deserializeIntoX509CertificateUserBinding(x509CertificateUserBin "backingStoreEnabled": n => { x509CertificateUserBinding.backingStoreEnabled = true; }, "@odata.type": n => { x509CertificateUserBinding.odataType = n.getStringValue(); }, "priority": n => { x509CertificateUserBinding.priority = n.getNumberValue(); }, + "trustAffinityLevel": n => { x509CertificateUserBinding.trustAffinityLevel = n.getEnumValue(X509CertificateAffinityLevelObject); }, "userProperty": n => { x509CertificateUserBinding.userProperty = n.getStringValue(); }, "x509CertificateField": n => { x509CertificateUserBinding.x509CertificateField = n.getStringValue(); }, } @@ -63321,7 +63326,7 @@ export interface DetectedAppCollectionResponse extends BaseCollectionPaginationC export type DetectedAppPlatformType = (typeof DetectedAppPlatformTypeObject)[keyof typeof DetectedAppPlatformTypeObject]; export interface Device extends DirectoryObject, Parsable { /** - * true if the account is enabled; otherwise, false. Required. Default is true. Supports $filter (eq, ne, not, in). Only callers in Global Administrator and Cloud Device Administrator roles can set this property. + * true if the account is enabled; otherwise, false. Required. Default is true. Supports $filter (eq, ne, not, in). Only callers with at least the Cloud Device Administrator role can set this property. */ accountEnabled?: boolean; /** @@ -67503,11 +67508,11 @@ export interface EducationStudent extends AdditionalDataHolder, BackedModel, Par } export interface EducationSubmission extends Entity, Parsable { /** - * The excusedBy property + * The user that marked the submission as excused. */ excusedBy?: IdentitySet; /** - * The excusedDateTime property + * The time that the submission was excused. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. */ excusedDateTime?: Date; /** @@ -67543,7 +67548,7 @@ export interface EducationSubmission extends Entity, Parsable { */ returnedDateTime?: Date; /** - * Read-only. Possible values are: working, submitted, returned, and reassigned. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: reassigned. + * Read-only. Possible values are: excused, reassigned, returned, submitted and working. You must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: excused and reassigned. */ status?: EducationSubmissionStatus; /** @@ -67754,7 +67759,7 @@ export interface EducationUser extends Entity, Parsable { */ mobilePhone?: string; /** - * The officeLocation property + * The office location for the user. */ officeLocation?: string; /** @@ -67782,7 +67787,7 @@ export interface EducationUser extends Entity, Parsable { */ provisionedPlans?: ProvisionedPlan[]; /** - * The refreshTokensValidFromDateTime property + * Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application needs to acquire a new refresh token by requesting the authorized endpoint. Returned only on $select. Read-only. */ refreshTokensValidFromDateTime?: Date; /** @@ -69553,7 +69558,7 @@ export interface Group extends DirectoryObject, Parsable { */ isArchived?: boolean; /** - * Indicates whether this group can be assigned to a Microsoft Entra role. Optional. This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true, visibility must be Hidden, and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global Administrator and Privileged Role Administrator roles can set this property. The caller must also be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Microsoft Entra role assignmentsUsing this feature requires a Microsoft Entra ID P1 license. Returned by default. Supports $filter (eq, ne, not). + * Indicates whether this group can be assigned to a Microsoft Entra role. Optional. This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true, visibility must be Hidden, and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers with at least the Privileged Role Administrator role can set this property. The caller must also be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Microsoft Entra role assignmentsUsing this feature requires a Microsoft Entra ID P1 license. Returned by default. Supports $filter (eq, ne, not). */ isAssignableToRole?: boolean; /** @@ -69649,7 +69654,7 @@ export interface Group extends DirectoryObject, Parsable { */ planner?: PlannerGroup; /** - * The preferred data location for the Microsoft 365 group. By default, the group inherits the group creator's preferred data location. To set this property, the calling app must be granted the Directory.ReadWrite.All permission and the user be assigned one of the following Microsoft Entra roles: Global Administrator User Account Administrator Directory Writer Exchange Administrator SharePoint Administrator For more information about this property, see OneDrive Online Multi-Geo. Nullable. Returned by default. + * The preferred data location for the Microsoft 365 group. By default, the group inherits the group creator's preferred data location. To set this property, the calling app must be granted the Directory.ReadWrite.All permission and the user be assigned at least one of the following Microsoft Entra roles: User Account Administrator Directory Writer Exchange Administrator SharePoint Administrator For more information about this property, see OneDrive Online Multi-Geo. Nullable. Returned by default. */ preferredDataLocation?: string; /** @@ -72642,7 +72647,7 @@ export interface KeyCredentialConfiguration extends AdditionalDataHolder, Backed */ backingStoreEnabled?: boolean; /** - * The maxLifetime property + * Value that can be used as the maximum duration in days, hours, minutes, or seconds from the date of key creation, for which the key is valid. Defined in ISO 8601 format for Durations. For example, P4DT12H30M5S represents a duration of four days, twelve hours, thirty minutes, and five seconds. This property is required when restrictionType is set to keyLifetime. */ maxLifetime?: Duration; /** @@ -72891,7 +72896,7 @@ export interface LearningCourseActivity extends Entity, Parsable { */ completionPercentage?: number; /** - * A course activity ID generated by the provider. Optional. + * The externalcourseActivityId property */ externalcourseActivityId?: string; /** @@ -75765,7 +75770,7 @@ export interface MeetingParticipants extends AdditionalDataHolder, BackedModel, */ additionalData?: Record; /** - * The attendees property + * Information about the meeting attendees. */ attendees?: MeetingParticipantInfo[]; /** @@ -75777,7 +75782,7 @@ export interface MeetingParticipants extends AdditionalDataHolder, BackedModel, */ odataType?: string; /** - * The organizer property + * Information about the meeting organizer. */ organizer?: MeetingParticipantInfo; } @@ -78049,11 +78054,11 @@ export type OnenoteSourceService = (typeof OnenoteSourceServiceObject)[keyof typ export type OnenoteUserRole = (typeof OnenoteUserRoleObject)[keyof typeof OnenoteUserRoleObject]; export interface OnlineMeeting extends OnlineMeetingBase, Parsable { /** - * The attendeeReport property + * The content stream of the attendee report of a Microsoft Teams live event. Read-only. */ attendeeReport?: string; /** - * The broadcastSettings property + * Settings related to a live event. */ broadcastSettings?: BroadcastMeetingSettings; /** @@ -78069,7 +78074,7 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable { */ externalId?: string; /** - * The isBroadcast property + * Indicates if this is a Teams live event. */ isBroadcast?: boolean; /** @@ -78151,7 +78156,7 @@ export interface OnlineMeetingBase extends Entity, Parsable { */ recordAutomatically?: boolean; /** - * The shareMeetingChatHistoryDefault property + * Specifies whether meeting chat history is shared with participants. Possible values are: all, none, unknownFutureValue. */ shareMeetingChatHistoryDefault?: MeetingChatHistoryDefaultMode; /** @@ -79427,7 +79432,7 @@ export interface PasswordCredentialConfiguration extends AdditionalDataHolder, B */ backingStoreEnabled?: boolean; /** - * The maxLifetime property + * Value that can be used as the maximum number for setting password expiration time in days, hours, minutes or seconds. Defined in ISO 8601 format for Durations. For example, 'P4DT12H30M5S' represents a duration of four days, twelve hours, thirty minutes, and five seconds. This property is required when restriction type is set to passwordLifetime. */ maxLifetime?: Duration; /** @@ -79656,7 +79661,7 @@ export interface PayloadDetail extends AdditionalDataHolder, BackedModel, Parsab */ backingStoreEnabled?: boolean; /** - * Payload coachmark details. + * The coachmarks property */ coachmarks?: PayloadCoachmark[]; /** @@ -79726,11 +79731,11 @@ export interface Permission extends Entity, Parsable { */ expirationDateTime?: Date; /** - * The grantedTo property + * For user type permissions, the details of the users and applications for this permission. Read-only. */ grantedTo?: IdentitySet; /** - * The grantedToIdentities property + * For type permissions, the details of the users to whom permission was granted. Read-only. */ grantedToIdentities?: IdentitySet[]; /** @@ -80529,7 +80534,7 @@ export interface PlannerPlan extends Entity, Parsable { */ details?: PlannerPlanDetails; /** - * The owner property + * Use the container property instead. ID of the group that owns the plan. After it's set, this property can’t be updated. This property won't return a valid group ID if the container of the plan isn't a group. */ owner?: string; /** @@ -81371,7 +81376,7 @@ export interface PrinterDefaults extends AdditionalDataHolder, BackedModel, Pars */ fitPdfToPage?: boolean; /** - * The inputBin property + * The default input bin that serves as the paper source. */ inputBin?: string; /** @@ -81660,7 +81665,7 @@ export interface PrintJobConfiguration extends AdditionalDataHolder, BackedModel */ finishings?: PrintFinishing[]; /** - * The fitPdfToPage property + * True to fit each page of a PDF document to a physical sheet of media; false to let the printer decide how to lay out impressions. */ fitPdfToPage?: boolean; /** @@ -81672,15 +81677,15 @@ export interface PrintJobConfiguration extends AdditionalDataHolder, BackedModel */ margin?: PrintMargin; /** - * The media size to use when printing. Supports standard size names for ISO and ANSI media sizes. + * The media size to use when printing. Supports standard size names for ISO and ANSI media sizes. Valid values listed in the printerCapabilities topic. */ mediaSize?: string; /** - * The mediaType property + * The default media (such as paper) type to print the document on. */ mediaType?: string; /** - * The multipageLayout property + * The direction to lay out pages when multiple pages are being printed per sheet. Valid values are described in the following table. */ multipageLayout?: PrintMultipageLayout; /** @@ -81688,27 +81693,27 @@ export interface PrintJobConfiguration extends AdditionalDataHolder, BackedModel */ odataType?: string; /** - * The orientation property + * The orientation setting the printer should use when printing the job. Valid values are described in the following table. */ orientation?: PrintOrientation; /** - * The outputBin property + * The output bin to place completed prints into. See the printer's capabilities for a list of supported output bins. */ outputBin?: string; /** - * The pageRanges property + * The page ranges to print. Read-only. */ pageRanges?: IntegerRange[]; /** - * The pagesPerSheet property + * The number of document pages to print on each sheet. */ pagesPerSheet?: number; /** - * The quality property + * The print quality to use when printing the job. Valid values are described in the table below. Read-only. */ quality?: PrintQuality; /** - * The scaling property + * Specifies how the printer should scale the document data to fit the requested media. Valid values are described in the following table. */ scaling?: PrintScaling; } @@ -81994,7 +81999,7 @@ export interface PrintUsage extends Entity, Parsable { } export interface PrintUsageByPrinter extends Parsable, PrintUsage { /** - * The printerId property + * The ID of the printer represented by these statistics. */ printerId?: string; /** @@ -84333,7 +84338,7 @@ export interface RiskServicePrincipalActivity extends AdditionalDataHolder, Back */ odataType?: string; /** - * The riskEventTypes property + * The type of risk event detected. The possible values are: investigationsThreatIntelligence, generic, adminConfirmedServicePrincipalCompromised, suspiciousSignins, leakedCredentials, anomalousServicePrincipalActivity, maliciousApplication, suspiciousApplication. */ riskEventTypes?: string[]; } @@ -85668,23 +85673,23 @@ export interface SecureScoreControlProfile extends Entity, Parsable { */ service?: string; /** - * List of threats the control mitigates (accountBreach, dataDeletion, dataExfiltration, dataSpillage, + * List of threats the control mitigates (accountBreach, dataDeletion, dataExfiltration, dataSpillage, elevationOfPrivilege, maliciousInsider, passwordCracking, phishingOrWhaling, spoofing). */ threats?: string[]; /** - * The tier property + * Control tier (Core, Defense in Depth, Advanced.) */ tier?: string; /** - * The title property + * Title of the control. */ title?: string; /** - * The userImpact property + * User impact of implementing control (low, moderate, high). */ userImpact?: string; /** - * The vendorInformation property + * Complex type containing details about the security product/service vendor, provider, and subprovider (for example, vendor=Microsoft; provider=SecureScore). Required. */ vendorInformation?: SecurityVendorInformation; } @@ -85867,23 +85872,23 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel */ backingStoreEnabled?: boolean; /** - * The customKeyIdentifier property + * Custom key identifier. */ customKeyIdentifier?: string; /** - * The displayName property + * The friendly name for the key. */ displayName?: string; /** - * The endDateTime property + * The date and time at which the credential expires. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. */ endDateTime?: Date; /** - * The key property + * The value for the key credential. Should be a Base-64 encoded value. */ key?: string; /** - * The keyId property + * The unique identifier (GUID) for the key. */ keyId?: Guid; /** @@ -85891,19 +85896,19 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel */ odataType?: string; /** - * The startDateTime property + * The date and time at which the credential becomes valid. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. */ startDateTime?: Date; /** - * The thumbprint property + * The thumbprint value for the key. */ thumbprint?: string; /** - * The type property + * The type of key credential. AsymmetricX509Cert. */ type?: string; /** - * The usage property + * A string that describes the purpose for which the key can be used. The possible value is Verify. */ usage?: string; } @@ -103418,7 +103423,7 @@ export function serializeSecurity(writer: SerializationWriter, security: Partial writer.writeCollectionOfObjectValues("alerts_v2", security.alerts_v2, serializeAlert); writer.writeObjectValue("attackSimulation", security.attackSimulation, serializeAttackSimulationRoot); writer.writeObjectValue("cases", security.cases, serializeCasesRoot); - writer.writeObjectValue("identities", security.identities, I48dada3d5c23b8e10cc6ed149fa116c82d834b1e36427328be2ec6a4fa1d3427); + writer.writeObjectValue("identities", security.identities, I3578b2bed1b5c0dc75d4936caf82e6213a17e94d1aa9efb2f5f64827fd00f3f1); writer.writeCollectionOfObjectValues("incidents", security.incidents, serializeIncident); writer.writeObjectValue("labels", security.labels, serializeLabelsRoot); writer.writeCollectionOfObjectValues("secureScoreControlProfiles", security.secureScoreControlProfiles, serializeSecureScoreControlProfile); @@ -110582,6 +110587,7 @@ export function serializeX509CertificateAuthenticationModeConfiguration(writer: writer.writeStringValue("@odata.type", x509CertificateAuthenticationModeConfiguration.odataType); writer.writeCollectionOfObjectValues("rules", x509CertificateAuthenticationModeConfiguration.rules, serializeX509CertificateRule); writer.writeEnumValue("x509CertificateAuthenticationDefaultMode", x509CertificateAuthenticationModeConfiguration.x509CertificateAuthenticationDefaultMode); + writer.writeEnumValue("x509CertificateDefaultRequiredAffinityLevel", x509CertificateAuthenticationModeConfiguration.x509CertificateDefaultRequiredAffinityLevel); writer.writeAdditionalData(x509CertificateAuthenticationModeConfiguration.additionalData); } /** @@ -110590,8 +110596,11 @@ export function serializeX509CertificateAuthenticationModeConfiguration(writer: */ export function serializeX509CertificateRule(writer: SerializationWriter, x509CertificateRule: Partial | undefined = {}) : void { writer.writeStringValue("identifier", x509CertificateRule.identifier); + writer.writeStringValue("issuerSubjectIdentifier", x509CertificateRule.issuerSubjectIdentifier); writer.writeStringValue("@odata.type", x509CertificateRule.odataType); + writer.writeStringValue("policyOidIdentifier", x509CertificateRule.policyOidIdentifier); writer.writeEnumValue("x509CertificateAuthenticationMode", x509CertificateRule.x509CertificateAuthenticationMode); + writer.writeEnumValue("x509CertificateRequiredAffinityLevel", x509CertificateRule.x509CertificateRequiredAffinityLevel); writer.writeEnumValue("x509CertificateRuleType", x509CertificateRule.x509CertificateRuleType); writer.writeAdditionalData(x509CertificateRule.additionalData); } @@ -110602,6 +110611,7 @@ export function serializeX509CertificateRule(writer: SerializationWriter, x509Ce export function serializeX509CertificateUserBinding(writer: SerializationWriter, x509CertificateUserBinding: Partial | undefined = {}) : void { writer.writeStringValue("@odata.type", x509CertificateUserBinding.odataType); writer.writeNumberValue("priority", x509CertificateUserBinding.priority); + writer.writeEnumValue("trustAffinityLevel", x509CertificateUserBinding.trustAffinityLevel); writer.writeStringValue("userProperty", x509CertificateUserBinding.userProperty); writer.writeStringValue("x509CertificateField", x509CertificateUserBinding.x509CertificateField); writer.writeAdditionalData(x509CertificateUserBinding.additionalData); @@ -111850,7 +111860,7 @@ export interface SharingDetail extends AdditionalDataHolder, BackedModel, Parsab */ sharedDateTime?: Date; /** - * The sharingReference property + * Reference properties of the document, such as the URL and type of the document. Read-only */ sharingReference?: ResourceReference; /** @@ -111858,7 +111868,7 @@ export interface SharingDetail extends AdditionalDataHolder, BackedModel, Parsab */ sharingSubject?: string; /** - * Determines the way the document was shared, can be by a 'Link', 'Attachment', 'Group', 'Site'. + * Determines the way the document was shared. Can be by a 1Link1, 1Attachment1, 1Group1, 1Site1. */ sharingType?: string; } @@ -113499,7 +113509,7 @@ export interface SubscribedSku extends Entity, Parsable { */ skuPartNumber?: string; /** - * The subscriptionIds property + * A list of all subscription IDs associated with this SKU. */ subscriptionIds?: string[]; } @@ -116429,7 +116439,7 @@ export type TrainingStatus = (typeof TrainingStatusObject)[keyof typeof Training export type TrainingType = (typeof TrainingTypeObject)[keyof typeof TrainingTypeObject]; export interface Trending extends Entity, Parsable { /** - * The lastModifiedDateTime property + * The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z */ lastModifiedDateTime?: Date; /** @@ -117517,7 +117527,7 @@ export interface User extends DirectoryObject, Parsable { */ employeeId?: string; /** - * The date and time when the user left or will leave the organization. To read this property, the calling app must be assigned the User-LifeCycleInfo.Read.All permission. To write this property, the calling app must be assigned the User.Read.All and User-LifeCycleInfo.ReadWrite.All permissions. To read this property in delegated scenarios, the admin needs one of the following Microsoft Entra roles: Lifecycle Workflows Administrator, Global Reader, or Global Administrator. To write this property in delegated scenarios, the admin needs the Global Administrator role. Supports $filter (eq, ne, not , ge, le, in). For more information, see Configure the employeeLeaveDateTime property for a user. + * The date and time when the user left or will leave the organization. To read this property, the calling app must be assigned the User-LifeCycleInfo.Read.All permission. To write this property, the calling app must be assigned the User.Read.All and User-LifeCycleInfo.ReadWrite.All permissions. To read this property in delegated scenarios, the admin needs at least one of the following Microsoft Entra roles: Lifecycle Workflows Administrator, Global Reader. To write this property in delegated scenarios, the admin needs the Global Administrator role. Supports $filter (eq, ne, not , ge, le, in). For more information, see Configure the employeeLeaveDateTime property for a user. */ employeeLeaveDateTime?: Date; /** @@ -124435,27 +124445,27 @@ export interface WorkbookFilterCriteria extends AdditionalDataHolder, BackedMode */ backingStoreEnabled?: boolean; /** - * The color property + * The color applied to the cell. */ color?: string; /** - * The criterion1 property + * A custom criterion. */ criterion1?: string; /** - * The criterion2 property + * A custom criterion. */ criterion2?: string; /** - * The dynamicCriteria property + * A dynamic formula specified in a custom filter. */ dynamicCriteria?: string; /** - * The filterOn property + * Indicates whether a filter is applied to a column. */ filterOn?: string; /** - * The icon property + * An icon applied to a cell via conditional formatting. */ icon?: WorkbookIcon; /** @@ -124463,11 +124473,11 @@ export interface WorkbookFilterCriteria extends AdditionalDataHolder, BackedMode */ odataType?: string; /** - * The operator property + * An operator in a cell; for example, =, >, <, <=, or <>. */ operator?: string; /** - * The values property + * The values that appear in the cell. */ values?: Json; } @@ -125208,6 +125218,7 @@ export interface WorkingHours extends AdditionalDataHolder, BackedModel, Parsabl */ timeZone?: TimeZoneBase; } +export type X509CertificateAffinityLevel = (typeof X509CertificateAffinityLevelObject)[keyof typeof X509CertificateAffinityLevelObject]; export interface X509CertificateAuthenticationMethodConfiguration extends AuthenticationMethodConfiguration, Parsable { /** * Defines strong authentication configurations. This configuration includes the default authentication mode and the different rules for strong authentication bindings. @@ -125244,6 +125255,10 @@ export interface X509CertificateAuthenticationModeConfiguration extends Addition * The type of strong authentication mode. The possible values are: x509CertificateSingleFactor, x509CertificateMultiFactor, unknownFutureValue. */ x509CertificateAuthenticationDefaultMode?: X509CertificateAuthenticationMode; + /** + * The x509CertificateDefaultRequiredAffinityLevel property + */ + x509CertificateDefaultRequiredAffinityLevel?: X509CertificateAffinityLevel; } export interface X509CertificateRule extends AdditionalDataHolder, BackedModel, Parsable { /** @@ -125258,14 +125273,26 @@ export interface X509CertificateRule extends AdditionalDataHolder, BackedModel, * The identifier of the X.509 certificate. Required. */ identifier?: string; + /** + * The issuerSubjectIdentifier property + */ + issuerSubjectIdentifier?: string; /** * The OdataType property */ odataType?: string; + /** + * The policyOidIdentifier property + */ + policyOidIdentifier?: string; /** * The type of strong authentication mode. The possible values are: x509CertificateSingleFactor, x509CertificateMultiFactor, unknownFutureValue. Required. */ x509CertificateAuthenticationMode?: X509CertificateAuthenticationMode; + /** + * The x509CertificateRequiredAffinityLevel property + */ + x509CertificateRequiredAffinityLevel?: X509CertificateAffinityLevel; /** * The type of the X.509 certificate mode configuration rule. The possible values are: issuerSubject, policyOID, unknownFutureValue. Required. */ @@ -125289,6 +125316,10 @@ export interface X509CertificateUserBinding extends AdditionalDataHolder, Backed * The priority of the binding. Microsoft Entra ID uses the binding with the highest priority. This value must be a non-negative integer and unique in the collection of objects in the certificateUserBindings property of an x509CertificateAuthenticationMethodConfiguration object. Required */ priority?: number; + /** + * The trustAffinityLevel property + */ + trustAffinityLevel?: X509CertificateAffinityLevel; /** * Defines the Microsoft Entra user property of the user object to use for the binding. The possible values are: userPrincipalName, onPremisesUserPrincipalName, certificateUserIds. Required. */ @@ -131617,6 +131648,11 @@ export const WorkforceIntegrationSupportedEntitiesObject = { OfferShiftRequest: "offerShiftRequest", UnknownFutureValue: "unknownFutureValue", } as const; +export const X509CertificateAffinityLevelObject = { + Low: "low", + High: "high", + UnknownFutureValue: "unknownFutureValue", +} as const; export const X509CertificateAuthenticationModeObject = { X509CertificateSingleFactor: "x509CertificateSingleFactor", X509CertificateMultiFactor: "x509CertificateMultiFactor", @@ -131626,6 +131662,7 @@ export const X509CertificateRuleTypeObject = { IssuerSubject: "issuerSubject", PolicyOID: "policyOID", UnknownFutureValue: "unknownFutureValue", + IssuerSubjectAndPolicyOID: "issuerSubjectAndPolicyOID", } as const; /* tslint:enable */ /* eslint-enable */ diff --git a/packages/msgraph-sdk/models/security/index.ts b/packages/msgraph-sdk/models/security/index.ts index ac620b16984..cd8301365ec 100644 --- a/packages/msgraph-sdk/models/security/index.ts +++ b/packages/msgraph-sdk/models/security/index.ts @@ -24,7 +24,7 @@ export interface Alert extends Entity, Parsable { */ alertPolicyId?: string; /** - * The alertWebUrl property + * URL for the Microsoft 365 Defender portal alert page. */ alertWebUrl?: string; /** @@ -92,7 +92,7 @@ export interface Alert extends Entity, Parsable { */ mitreTechniques?: string[]; /** - * The productName property + * The name of the product which published this alert. */ productName?: string; /** @@ -5563,7 +5563,7 @@ export interface EdiscoveryExportOperation extends CaseOperation, Parsable { */ description?: string; /** - * The exportFileMetadata property + * Contains the properties for an export file metadata, including downloadUrl, fileName, and size. */ exportFileMetadata?: ExportFileMetadata[]; /** @@ -7621,7 +7621,7 @@ export interface RetentionEvent extends Entity, Parsable { */ displayName?: string; /** - * The eventPropagationResults property + * Represents the success status of a created event and additional information. */ eventPropagationResults?: EventPropagationResult[]; /** @@ -7629,7 +7629,7 @@ export interface RetentionEvent extends Entity, Parsable { */ eventQueries?: EventQuery[]; /** - * The eventStatus property + * Status of event propogation to the scoped locations after the event has been created. */ eventStatus?: RetentionEventStatus; /**