From 264566fa0841b476af34c193e0959cf7dff7e39b Mon Sep 17 00:00:00 2001 From: Andrew Omondi Date: Wed, 11 Dec 2024 10:04:52 +0300 Subject: [PATCH] feat(generation): update request builders and models (#707) Update generated files with build 173698 Co-authored-by: Microsoft Graph DevX Tooling --- packages/kiota-lock.json | 4 ++-- .../chats/item/members/item/index.ts | 8 ++++---- .../deviceAppManagement/index.ts | 4 ++-- .../managedAppPolicies/index.ts | 8 ++++---- .../managedAppPolicies/item/index.ts | 8 ++++---- .../item/targetApps/index.ts | 2 +- .../managedAppRegistrations/index.ts | 8 ++++---- .../appliedPolicies/item/targetApps/index.ts | 2 +- .../managedAppRegistrations/item/index.ts | 8 ++++---- .../intendedPolicies/item/targetApps/index.ts | 2 +- .../managedEBooks/index.ts | 8 ++++---- .../managedEBooks/item/assignments/index.ts | 8 ++++---- .../item/assignments/item/index.ts | 12 +++++------ .../deviceAppManagement/mobileApps/index.ts | 14 ++++++------- .../mobileApps/item/index.ts | 20 +++++++++---------- .../deviceCompliancePolicies/index.ts | 14 ++++++------- .../deviceCompliancePolicies/item/index.ts | 20 +++++++++---------- .../deviceConfigurations/index.ts | 14 ++++++------- .../deviceConfigurations/item/index.ts | 14 ++++++------- .../deviceEnrollmentConfigurations/index.ts | 14 ++++++------- .../item/index.ts | 20 +++++++++---------- .../deviceManagement/index.ts | 2 +- .../roleDefinitions/item/index.ts | 14 ++++++------- .../item/items/item/retentionLabel/index.ts | 6 +++--- .../item/workbook/names/item/range/index.ts | 6 +++--- .../items/item/workbook/tables/add/index.ts | 6 +++--- .../worksheets/item/names/item/range/index.ts | 6 +++--- .../worksheets/item/tables/add/index.ts | 6 +++--- packages/msgraph-sdk-groups/groups/index.ts | 6 +++--- .../groups/item/conversations/item/index.ts | 2 +- .../groups/item/threads/item/index.ts | 2 +- .../namedLocations/item/index.ts | 6 +++--- .../accessPackages/item/index.ts | 8 ++++---- .../customWorkflowExtensions/item/index.ts | 8 ++++---- .../organization/index.ts | 8 ++++---- .../localizations/item/bannerLogo/index.ts | 6 +++--- .../organization/item/index.ts | 6 +++--- .../teams/item/channels/item/members/index.ts | 6 +++--- .../item/channels/item/members/item/index.ts | 6 +++--- .../item/channels/item/messages/index.ts | 6 +++--- .../item/messages/item/replies/index.ts | 6 +++--- .../multiTenantOrganization/index.ts | 6 +++--- packages/msgraph-sdk-users/users/index.ts | 8 ++++---- .../msgraph-sdk-users/users/item/index.ts | 10 +++++----- packages/msgraph-sdk/models/index.ts | 18 ++++++++--------- 45 files changed, 188 insertions(+), 188 deletions(-) diff --git a/packages/kiota-lock.json b/packages/kiota-lock.json index c10c28029e5..3714eabaedd 100644 --- a/packages/kiota-lock.json +++ b/packages/kiota-lock.json @@ -1,8 +1,8 @@ { - "descriptionHash": "7DE1D60B4770146166DBC5BAF6EC4D7D0C4ADA1BAAB34342110B806B114E571A6D6A7DDD11811A61DD54ADE00A246FCD4AFF7C7B0D450E3772ABBC26E419C655", + "descriptionHash": "31A9A238140C9914759C7B7A2E13B2C803B35CEE1AEA81256743169C96DF65B1F97C9D3098319C56A964B5DFF4FDF8A26D1EE0E29772953FD675969B9FB84E67", "descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml", "lockFileVersion": "1.0.0", - "kiotaVersion": "1.21.0", + "kiotaVersion": "1.22.0", "clientClassName": "GraphBaseServiceClient", "typeAccessModifier": "Public", "clientNamespaceName": "github.com/microsoftgraph/msgraph-sdk-typescript/", 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 a4dfdd92a4a..741153b76c7 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-deviceAppManagement/deviceAppManagement/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/index.ts index 6e6ad2030ac..ccf76217e6d 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-apps-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-partnerintegration-deviceappmanagement-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-unlock-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 0aa5801a4b7..77cfda85448 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-managedapppolicy-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-windowsinformationprotection-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 managedAppPolicy objects. + * List properties and relationships of the windowsInformationProtection 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 managedAppPolicy objects. + * List properties and relationships of the windowsInformationProtection 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 fded427badc..a41ead5b1d7 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 managedAppProtection 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-managedappprotection-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 managedAppProtection 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 managedAppProtection 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 fae0e319c24..bd89b6e254e 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts @@ -62,7 +62,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/index.ts index 34c4ca114e2..2828a2f6e83 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/index.ts @@ -33,11 +33,11 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde */ byManagedAppRegistrationId(managedAppRegistrationId: string) : ManagedAppRegistrationItemRequestBuilder; /** - * List properties and relationships of the iosManagedAppRegistration objects. + * List properties and relationships of the androidManagedAppRegistration 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-mam-iosmanagedappregistration-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -50,7 +50,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde */ post(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the iosManagedAppRegistration objects. + * List properties and relationships of the androidManagedAppRegistration objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -64,7 +64,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde toPostRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * List properties and relationships of the iosManagedAppRegistration objects. + * List properties and relationships of the androidManagedAppRegistration objects. */ export interface ManagedAppRegistrationsRequestBuilderGetQueryParameters { /** 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 9302cdac487..802a988fbc0 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 @@ -62,7 +62,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/index.ts index 72157b5d089..6f2500abd8f 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/index.ts @@ -37,11 +37,11 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read properties and relationships of the iosManagedAppRegistration object. + * Read properties and relationships of the managedAppRegistration 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-iosmanagedappregistration-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -59,7 +59,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read properties and relationships of the iosManagedAppRegistration object. + * Read properties and relationships of the managedAppRegistration object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -73,7 +73,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui toPatchRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Read properties and relationships of the iosManagedAppRegistration object. + * Read properties and relationships of the managedAppRegistration object. */ export interface ManagedAppRegistrationItemRequestBuilderGetQueryParameters { /** 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 38cd0900c19..dab80d0f256 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 @@ -62,7 +62,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** diff --git a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/index.ts index 17271d09f4d..335b6220a9d 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/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/item/assignments/index.ts index 766bce420dd..a6a03c4aab3 100644 --- a/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/item/assignments/index.ts +++ b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedEBooks/item/assignments/index.ts @@ -27,11 +27,11 @@ export interface AssignmentsRequestBuilder 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-iosvppebookassignment-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -44,7 +44,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * List properties and relationships of the iosVppEBookAssignment objects. + * List properties and relationships of the managedEBookAssignment objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -58,7 +58,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * List properties and relationships of the iosVppEBookAssignment objects. + * List properties and relationships of the managedEBookAssignment objects. */ export interface AssignmentsRequestBuilderGetQueryParameters { /** 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 f6faf6b3509..d5c02912510 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,10 +13,10 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ */ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBuilder { /** - * Deletes a iosVppEBookAssignment. + * Deletes a managedEBookAssignment. * @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-iosvppebookassignment-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -28,16 +28,16 @@ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBui */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a iosVppEBookAssignment object. + * Update the properties of a managedEBookAssignment 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-iosvppebookassignment-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-update?view=graph-rest-1.0|Find more info here} */ patch(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a iosVppEBookAssignment. + * Deletes a managedEBookAssignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -49,7 +49,7 @@ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBui */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of a iosVppEBookAssignment object. + * Update the properties of a managedEBookAssignment 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-deviceAppManagement/deviceAppManagement/mobileApps/index.ts b/packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/mobileApps/index.ts index 9b33e0b8c6d..8ec4bb28794 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-windowsmobilemsi-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-managedioslobapp-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new microsoftStoreForBusinessApp object. + * Create a new androidLobApp 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-microsoftstoreforbusinessapp-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-androidlobapp-create?view=graph-rest-1.0|Find more info here} */ post(body: MobileApp, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the windowsMobileMSI objects. + * List properties and relationships of the managedIOSLobApp 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 microsoftStoreForBusinessApp object. + * Create a new androidLobApp 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 windowsMobileMSI objects. + * List properties and relationships of the managedIOSLobApp 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 3cc7b302cf4..6c8ec840eab 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 iosLobApp object. + * Read properties and relationships of the iosStoreApp 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-ioslobapp-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosstoreapp-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a win32LobApp object. + * Update the properties of a microsoftStoreForBusinessApp 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-win32lobapp-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-apps-microsoftstoreforbusinessapp-update?view=graph-rest-1.0|Find more info here} */ patch(body: MobileApp, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a iosiPadOSWebClip. + * Deletes a win32LobApp. * @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 iosLobApp object. + * Read properties and relationships of the iosStoreApp 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 win32LobApp object. + * Update the properties of a microsoftStoreForBusinessApp 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 iosLobApp object. + * Read properties and relationships of the iosStoreApp 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 0b2daa954b9..83f1bc029b9 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 androidWorkProfileCompliancePolicy objects. + * List properties and relationships of the androidCompliancePolicy 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-androidworkprofilecompliancepolicy-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-androidcompliancepolicy-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new androidCompliancePolicy object. + * Create a new macOSCompliancePolicy 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-androidcompliancepolicy-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-macoscompliancepolicy-create?view=graph-rest-1.0|Find more info here} */ post(body: DeviceCompliancePolicy, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the androidWorkProfileCompliancePolicy objects. + * List properties and relationships of the androidCompliancePolicy 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 androidCompliancePolicy object. + * Create a new macOSCompliancePolicy 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 androidWorkProfileCompliancePolicy objects. + * List properties and relationships of the androidCompliancePolicy 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 36f02d029c7..c03c2176ad3 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/item/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceCompliancePolicies/item/index.ts @@ -67,43 +67,43 @@ export interface DeviceCompliancePolicyItemRequestBuilder extends BaseRequestBui */ get userStatusOverview(): UserStatusOverviewRequestBuilder; /** - * Deletes a windows10CompliancePolicy. + * Deletes a windows10MobileCompliancePolicy. * @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-windows10compliancepolicy-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10mobilecompliancepolicy-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read properties and relationships of the windowsPhone81CompliancePolicy object. + * Read properties and relationships of the iosCompliancePolicy 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-windowsphone81compliancepolicy-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-ioscompliancepolicy-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a windows10CompliancePolicy object. + * Update the properties of a windows81CompliancePolicy 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-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-update?view=graph-rest-1.0|Find more info here} */ patch(body: DeviceCompliancePolicy, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a windows10CompliancePolicy. + * Deletes a windows10MobileCompliancePolicy. * @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 windowsPhone81CompliancePolicy object. + * Read properties and relationships of the iosCompliancePolicy 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 windows10CompliancePolicy object. + * Update the properties of a windows81CompliancePolicy 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 windowsPhone81CompliancePolicy object. + * Read properties and relationships of the iosCompliancePolicy 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 7a70a9f6fda..2e9cdbd4656 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-appledevicefeaturesconfigurationbase-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-androidgeneraldeviceconfiguration-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new androidWorkProfileGeneralDeviceConfiguration object. + * Create a new iosCustomConfiguration 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-androidworkprofilegeneraldeviceconfiguration-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-ioscustomconfiguration-create?view=graph-rest-1.0|Find more info here} */ post(body: DeviceConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the appleDeviceFeaturesConfigurationBase objects. + * List properties and relationships of the androidGeneralDeviceConfiguration 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 androidWorkProfileGeneralDeviceConfiguration object. + * Create a new iosCustomConfiguration 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 appleDeviceFeaturesConfigurationBase objects. + * List properties and relationships of the androidGeneralDeviceConfiguration 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 2307401d7a6..0dde86e4de5 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 androidWorkProfileCustomConfiguration. + * 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-androidworkprofilecustomconfiguration-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 androidCustomConfiguration object. + * Read properties and relationships of the windows10GeneralConfiguration 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-androidcustomconfiguration-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-deviceconfig-windows10generalconfiguration-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -87,13 +87,13 @@ export interface DeviceConfigurationItemRequestBuilder extends BaseRequestBuilde */ patch(body: DeviceConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a androidWorkProfileCustomConfiguration. + * 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 androidCustomConfiguration object. + * Read properties and relationships of the windows10GeneralConfiguration object. * @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 androidCustomConfiguration object. + * Read properties and relationships of the windows10GeneralConfiguration 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 6897ed5a399..b6a884f987a 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/index.ts @@ -27,30 +27,30 @@ export interface DeviceEnrollmentConfigurationsRequestBuilder extends BaseReques */ byDeviceEnrollmentConfigurationId(deviceEnrollmentConfigurationId: string) : DeviceEnrollmentConfigurationItemRequestBuilder; /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration 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-onboarding-deviceenrollmentplatformrestrictionsconfiguration-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new deviceEnrollmentLimitConfiguration object. + * Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration 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-deviceenrollmentlimitconfiguration-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-create?view=graph-rest-1.0|Find more info here} */ post(body: DeviceEnrollmentConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration 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 deviceEnrollmentLimitConfiguration object. + * Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration 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 DeviceEnrollmentConfigurationsRequestBuilder extends BaseReques toPostRequestInformation(body: DeviceEnrollmentConfiguration, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration objects. */ export interface DeviceEnrollmentConfigurationsRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts index 819ef92ac85..950680e58bb 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/deviceEnrollmentConfigurations/item/index.ts @@ -31,43 +31,43 @@ export interface DeviceEnrollmentConfigurationItemRequestBuilder extends BaseReq */ get setPriority(): SetPriorityRequestBuilder; /** - * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. + * Deletes a deviceEnrollmentLimitConfiguration. * @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-deviceenrollmentplatformrestrictionsconfiguration-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentlimitconfiguration-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration 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-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. + * Update the properties of a 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-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentlimitconfiguration-update?view=graph-rest-1.0|Find more info here} */ patch(body: DeviceEnrollmentConfiguration, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. + * Deletes a deviceEnrollmentLimitConfiguration. * @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 deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration 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 deviceEnrollmentPlatformRestrictionsConfiguration object. + * Update the properties of a deviceEnrollmentLimitConfiguration object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} @@ -75,7 +75,7 @@ export interface DeviceEnrollmentConfigurationItemRequestBuilder extends BaseReq toPatchRequestInformation(body: DeviceEnrollmentConfiguration, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration object. */ export interface DeviceEnrollmentConfigurationItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts b/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts index 7f2eb38a114..1e9430b9c82 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/index.ts @@ -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-raimportcerts-devicemanagement-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-tem-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 49d6c7c6780..efbd681c391 100644 --- a/packages/msgraph-sdk-deviceManagement/deviceManagement/roleDefinitions/item/index.ts +++ b/packages/msgraph-sdk-deviceManagement/deviceManagement/roleDefinitions/item/index.ts @@ -26,20 +26,20 @@ export interface RoleDefinitionItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + * Read properties and relationships of the roleDefinition 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-deviceandappmanagementroledefinition-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-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; /** @@ -49,13 +49,13 @@ export interface RoleDefinitionItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + * Read properties and relationships of the roleDefinition 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 deviceAndAppManagementRoleDefinition object. + * Read properties and relationships of the roleDefinition 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 66cec7d8cae..12eb315a145 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 0bf36720573..ac6a165510a 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 @@ -182,11 +182,11 @@ export interface RangeRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/range-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/nameditem-range?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -228,7 +228,7 @@ export interface RangeRequestBuilder extends BaseRequestBuilder { /** - * Use this API to create a new Table. + * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. * @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/workbook-post-tables?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/tablecollection-add?view=graph-rest-1.0|Find more info here} */ post(body: AddPostRequestBody, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Use this API to create a new Table. + * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. * @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 402af54e4b1..7f475392725 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 @@ -182,11 +182,11 @@ export interface RangeRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/range-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/nameditem-range?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -228,7 +228,7 @@ export interface RangeRequestBuilder extends BaseRequestBuilder { /** - * Use this API to create a new Table. + * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. * @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/workbook-post-tables?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/tablecollection-add?view=graph-rest-1.0|Find more info here} */ post(body: AddPostRequestBody, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Use this API to create a new Table. + * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. * @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 56621b4e246..928367f2bad 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 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. + * 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. * @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-upsert?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/group-post-groups?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 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. + * 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. * @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 cb32152f04c..56edb62e626 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/threads/item/index.ts b/packages/msgraph-sdk-groups/groups/item/threads/item/index.ts index 5d804cc72a7..1f24637ffac 100644 --- a/packages/msgraph-sdk-groups/groups/item/threads/item/index.ts +++ b/packages/msgraph-sdk-groups/groups/item/threads/item/index.ts @@ -28,7 +28,7 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder * Delete conversationThread. * @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/group-delete-thread?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/conversationthread-delete?view=graph-rest-1.0|Find more info here} */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** 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 e0327de080b..94c98fe24c3 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 a namedLocation object. + * Delete an ipNamedLocation 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/namedlocation-delete?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/ipnamedlocation-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 a namedLocation object. + * Delete an ipNamedLocation 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/accessPackages/item/index.ts b/packages/msgraph-sdk-identityGovernance/identityGovernance/entitlementManagement/accessPackages/item/index.ts index 2f6b0106397..37b04bb2e54 100644 --- a/packages/msgraph-sdk-identityGovernance/identityGovernance/entitlementManagement/accessPackages/item/index.ts +++ b/packages/msgraph-sdk-identityGovernance/identityGovernance/entitlementManagement/accessPackages/item/index.ts @@ -62,11 +62,11 @@ export interface AccessPackageItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Retrieve the properties and relationships of an accessPackage 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/accesspackage-list-resourcerolescopes?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/accesspackage-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -85,7 +85,7 @@ export interface AccessPackageItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Retrieve the properties and relationships of an accessPackage object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -99,7 +99,7 @@ export interface AccessPackageItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Retrieve the properties and relationships of an accessPackage object. */ export interface AccessPackageItemRequestBuilderGetQueryParameters { /** 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 34e12ccae6f..4db58581a90 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 @@ -20,11 +20,11 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui */ delete(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object. + * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension 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/accesspackageassignmentworkflowextension-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/accesspackageassignmentrequestworkflowextension-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -43,7 +43,7 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object. + * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -57,7 +57,7 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui toPatchRequestInformation(body: CustomCalloutExtension, requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; } /** - * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object. + * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. */ export interface CustomCalloutExtensionItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk-organization/organization/index.ts b/packages/msgraph-sdk-organization/organization/index.ts index 09813bb76a1..51cb243bcfd 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/branding/localizations/item/bannerLogo/index.ts b/packages/msgraph-sdk-organization/organization/item/branding/localizations/item/bannerLogo/index.ts index 48b47a18459..96bfcae77f1 100644 --- a/packages/msgraph-sdk-organization/organization/item/branding/localizations/item/bannerLogo/index.ts +++ b/packages/msgraph-sdk-organization/organization/item/branding/localizations/item/bannerLogo/index.ts @@ -17,11 +17,11 @@ export interface BannerLogoRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Retrieve the default organizational branding object, if the Accept-Language header is set to 0 or default. If no default organizational branding object exists, this method returns a 404 Not Found error. If the Accept-Language header is set to an existing locale identified by the value of its id, this method retrieves the branding for the specified locale. This method retrieves only non-Stream properties, for example, usernameHintText and signInPageText. To retrieve Stream types of the default branding, for example, bannerLogo and backgroundImage, use the GET organizationalBrandingLocalization method. + * Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL. * @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/organizationalbranding-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/organizationalbrandinglocalization-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -41,7 +41,7 @@ export interface BannerLogoRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Retrieve the default organizational branding object, if the Accept-Language header is set to 0 or default. If no default organizational branding object exists, this method returns a 404 Not Found error. If the Accept-Language header is set to an existing locale identified by the value of its id, this method retrieves the branding for the specified locale. This method retrieves only non-Stream properties, for example, usernameHintText and signInPageText. To retrieve Stream types of the default branding, for example, bannerLogo and backgroundImage, use the GET organizationalBrandingLocalization method. + * Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ diff --git a/packages/msgraph-sdk-organization/organization/item/index.ts b/packages/msgraph-sdk-organization/organization/item/index.ts index 6918ef49f92..bfae529c28f 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 a organization object. + * 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. * @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-organization-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/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 a organization object. + * 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. * @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-teams/teams/item/channels/item/members/index.ts b/packages/msgraph-sdk-teams/teams/item/channels/item/members/index.ts index 4a6fb47b4ea..ff6f75d73f8 100644 --- a/packages/msgraph-sdk-teams/teams/item/channels/item/members/index.ts +++ b/packages/msgraph-sdk-teams/teams/item/channels/item/members/index.ts @@ -41,12 +41,12 @@ export interface MembersRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Add a conversationMember to a channel. + * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. * @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/conversationmember-add?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0|Find more info here} */ post(body: ConversationMember, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -56,7 +56,7 @@ export interface MembersRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Add a conversationMember to a channel. + * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. * @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-teams/teams/item/channels/item/members/item/index.ts b/packages/msgraph-sdk-teams/teams/item/channels/item/members/item/index.ts index 15977d3f537..b56e930f9f9 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 @@ -28,12 +28,12 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the role of a conversationMember in a team or channel. + * Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. * @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/conversationmember-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0|Find more info here} */ patch(body: ConversationMember, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -49,7 +49,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the role of a conversationMember in a team or channel. + * Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. * @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-teams/teams/item/channels/item/messages/index.ts b/packages/msgraph-sdk-teams/teams/item/channels/item/messages/index.ts index d9e4673ce0e..2b43194a497 100644 --- a/packages/msgraph-sdk-teams/teams/item/channels/item/messages/index.ts +++ b/packages/msgraph-sdk-teams/teams/item/channels/item/messages/index.ts @@ -41,12 +41,12 @@ export interface MessagesRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Send a new chatMessage in the specified channel. + * Send a new chatMessage in the specified channel or a chat. * @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/channel-post-messages?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0|Find more info here} */ post(body: ChatMessage, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -56,7 +56,7 @@ export interface MessagesRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Send a new chatMessage in the specified channel. + * Send a new chatMessage in the specified channel or a chat. * @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-teams/teams/item/channels/item/messages/item/replies/index.ts b/packages/msgraph-sdk-teams/teams/item/channels/item/messages/item/replies/index.ts index 456971d6403..57604964331 100644 --- a/packages/msgraph-sdk-teams/teams/item/channels/item/messages/item/replies/index.ts +++ b/packages/msgraph-sdk-teams/teams/item/channels/item/messages/item/replies/index.ts @@ -41,12 +41,12 @@ export interface RepliesRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** - * Create a new reply to a chatMessage in a specified channel. + * Send a new reply to a chatMessage in a specified channel. * @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/channel-post-messagereply?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/chatmessage-post-replies?view=graph-rest-1.0|Find more info here} */ post(body: ChatMessage, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -56,7 +56,7 @@ export interface RepliesRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Create a new reply to a chatMessage in a specified channel. + * Send a new reply to a chatMessage in a specified channel. * @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-tenantRelationships/tenantRelationships/multiTenantOrganization/index.ts b/packages/msgraph-sdk-tenantRelationships/tenantRelationships/multiTenantOrganization/index.ts index 3ef018a17dd..fb615f09249 100644 --- a/packages/msgraph-sdk-tenantRelationships/tenantRelationships/multiTenantOrganization/index.ts +++ b/packages/msgraph-sdk-tenantRelationships/tenantRelationships/multiTenantOrganization/index.ts @@ -33,12 +33,12 @@ export interface MultiTenantOrganizationRequestBuilder extends BaseRequestBuilde */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Update the properties of a multitenant organization. + * Create a new multitenant organization. By default, the creator tenant becomes an owner tenant upon successful creation. Only owner tenants can manage a multitenant organization. * @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/multitenantorganization-update?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/tenantrelationship-put-multitenantorganization?view=graph-rest-1.0|Find more info here} */ patch(body: MultiTenantOrganization, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -48,7 +48,7 @@ export interface MultiTenantOrganizationRequestBuilder extends BaseRequestBuilde */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined) : RequestInformation; /** - * Update the properties of a multitenant organization. + * Create a new multitenant organization. By default, the creator tenant becomes an owner tenant upon successful creation. Only owner tenants can manage a multitenant organization. * @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/index.ts b/packages/msgraph-sdk-users/users/index.ts index e3c812bee8b..37d7157104a 100644 --- a/packages/msgraph-sdk-users/users/index.ts +++ b/packages/msgraph-sdk-users/users/index.ts @@ -55,16 +55,16 @@ 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-onboarding-user-list?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-list?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** - * Create a new user object. + * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. * @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-user-create?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/user-post-users?view=graph-rest-1.0|Find more info here} */ post(body: User, requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -74,7 +74,7 @@ export interface UsersRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Create a new user object. + * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. * @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/index.ts b/packages/msgraph-sdk-users/users/item/index.ts index edb151e972e..2e7d4fcf497 100644 --- a/packages/msgraph-sdk-users/users/item/index.ts +++ b/packages/msgraph-sdk-users/users/item/index.ts @@ -464,7 +464,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder | undefined) : Promise; /** @@ -475,11 +475,11 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder} * @throws {ODataError} error when the service returns a 4XX or 5XX status code - * @see {@link https://learn.microsoft.com/graph/api/user-get?view=graph-rest-1.0|Find more info here} + * @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration | undefined) : Promise; /** @@ -505,7 +505,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; /** - * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. + * Read properties and relationships of the user object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ @@ -519,7 +519,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder | undefined) : RequestInformation; } /** - * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details. + * Read properties and relationships of the user object. */ export interface UserItemRequestBuilderGetQueryParameters { /** diff --git a/packages/msgraph-sdk/models/index.ts b/packages/msgraph-sdk/models/index.ts index c99e7337f8d..8d3c906e710 100644 --- a/packages/msgraph-sdk/models/index.ts +++ b/packages/msgraph-sdk/models/index.ts @@ -10732,7 +10732,7 @@ export interface ConditionalAccessConditionSet extends AdditionalDataHolder, Bac */ applications?: ConditionalAccessApplications | null; /** - * The authenticationFlows property + * Authentication flows included in the policy scope. */ authenticationFlows?: ConditionalAccessAuthenticationFlows | null; /** @@ -10744,7 +10744,7 @@ export interface ConditionalAccessConditionSet extends AdditionalDataHolder, Bac */ clientApplications?: ConditionalAccessClientApplications | null; /** - * Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other. Required. The easUnsupported enumeration member will be deprecated in favor of exchangeActiveSync which includes EAS supported and unsupported platforms. + * Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other. Required. The easUnsupported enumeration member will be deprecated in favor of exchangeActiveSync, which includes EAS supported and unsupported platforms. */ clientAppTypes?: ConditionalAccessClientApp[] | null; /** @@ -87020,15 +87020,15 @@ export interface OnUserCreateStartListener extends AuthenticationEventListener, } export interface OpenShift extends ChangeTrackedEntity, Parsable { /** - * An unpublished open shift. + * Draft changes in the openShift are only visible to managers until they're shared. */ draftOpenShift?: OpenShiftItem | null; /** - * ID for the scheduling group that the open shift belongs to. + * The ID of the schedulingGroup that contains the openShift. */ schedulingGroupId?: string | null; /** - * A published open shift. + * The shared version of this openShift that is viewable by both employees and managers. */ sharedOpenShift?: OpenShiftItem | null; } @@ -128910,7 +128910,7 @@ export interface ShiftActivity extends AdditionalDataHolder, BackedModel, Parsab */ displayName?: string | null; /** - * The end date and time for the shiftActivity. 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. Required. + * The end date and time for the shiftActivity. 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. Required. */ endDateTime?: Date | null; /** @@ -128922,7 +128922,7 @@ export interface ShiftActivity extends AdditionalDataHolder, BackedModel, Parsab */ odataType?: string | null; /** - * The start date and time for the shiftActivity. 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. Required. + * The start date and time for the shiftActivity. 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. Required. */ startDateTime?: Date | null; /** @@ -132956,7 +132956,7 @@ export interface TimeConstraint extends AdditionalDataHolder, BackedModel, Parsa } export interface TimeOff extends ChangeTrackedEntity, Parsable { /** - * The draft version of this timeOff item that is viewable by managers. It must be shared before it is visible to team members. Required. + * The draft version of this timeOff item that is viewable by managers. It must be shared before it's visible to team members. Required. */ draftTimeOff?: TimeOffItem | null; /** @@ -142597,7 +142597,7 @@ export interface WorkforceIntegration extends ChangeTrackedEntity, Parsable { */ isActive?: boolean | null; /** - * The Shifts entities supported for synchronous change notifications. Shifts will make a call back to the url provided on client changes on those entities added here. By default, no entities are supported for change notifications. Possible values are: none, shift, swapRequest, userShiftPreferences, openshift, openShiftRequest, offerShiftRequest, unknownFutureValue. + * The Shifts entities supported for synchronous change notifications. Shifts call back to the provided URL when client changes occur to the entities specified in this property. By default, no entities are supported for change notifications. Possible values are: none, shift, swapRequest, userShiftPreferences, openShift, openShiftRequest, offerShiftRequest, unknownFutureValue, timeOffReason, timeOff, timeOffRequest. You must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: timeOffReason, timeOff, timeOffRequest. */ supportedEntities?: WorkforceIntegrationSupportedEntities[] | null; /**