UNPKG

@microsoft/msgraph-sdk-planner

Version:
71 lines 4.32 kB
import { type PlannerAssignedToTaskBoardTaskFormat } from '@microsoft/msgraph-sdk/models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the assignedToTaskBoardFormat property of the microsoft.graph.plannerTask entity. */ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuilder<AssignedToTaskBoardFormatRequestBuilder> { /** * Delete navigation property assignedToTaskBoardFormat for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<PlannerAssignedToTaskBoardTaskFormat>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration<AssignedToTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): Promise<PlannerAssignedToTaskBoardTaskFormat | undefined>; /** * Update the properties of plannerAssignedToTaskBoardTaskFormat object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<PlannerAssignedToTaskBoardTaskFormat>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-update?view=graph-rest-1.0|Find more info here} */ patch(body: PlannerAssignedToTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerAssignedToTaskBoardTaskFormat | undefined>; /** * Delete navigation property assignedToTaskBoardFormat for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<AssignedToTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the properties of plannerAssignedToTaskBoardTaskFormat object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: PlannerAssignedToTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. */ export interface AssignedToTaskBoardFormatRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const AssignedToTaskBoardFormatRequestBuilderUriTemplate = "{+baseurl}/planner/tasks/{plannerTask%2Did}/assignedToTaskBoardFormat{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const AssignedToTaskBoardFormatRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map