UNPKG

@microsoft/msgraph-beta-sdk-solutions

Version:
94 lines 5.11 kB
import { type BusinessScenarioPlanner } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type GetPlanRequestBuilder } from './getPlan/index.js'; import { type PlanConfigurationRequestBuilder } from './planConfiguration/index.js'; import { type TaskConfigurationRequestBuilder } from './taskConfiguration/index.js'; import { type TasksRequestBuilder } from './tasks/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the planner property of the microsoft.graph.businessScenario entity. */ export interface PlannerRequestBuilder extends BaseRequestBuilder<PlannerRequestBuilder> { /** * Provides operations to call the getPlan method. */ get getPlan(): GetPlanRequestBuilder; /** * Provides operations to manage the planConfiguration property of the microsoft.graph.businessScenarioPlanner entity. */ get planConfiguration(): PlanConfigurationRequestBuilder; /** * Provides operations to manage the taskConfiguration property of the microsoft.graph.businessScenarioPlanner entity. */ get taskConfiguration(): TaskConfigurationRequestBuilder; /** * Provides operations to manage the tasks property of the microsoft.graph.businessScenarioPlanner entity. */ get tasks(): TasksRequestBuilder; /** * Delete navigation property planner for solutions * @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>; /** * Read the properties and relationships of a businessScenarioPlanner object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<BusinessScenarioPlanner>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/businessscenarioplanner-get?view=graph-rest-beta|Find more info here} */ get(requestConfiguration?: RequestConfiguration<PlannerRequestBuilderGetQueryParameters> | undefined): Promise<BusinessScenarioPlanner | undefined>; /** * Update the navigation property planner in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<BusinessScenarioPlanner>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: BusinessScenarioPlanner, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<BusinessScenarioPlanner | undefined>; /** * Delete navigation property planner for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Read the properties and relationships of a businessScenarioPlanner object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<PlannerRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property planner in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: BusinessScenarioPlanner, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Read the properties and relationships of a businessScenarioPlanner object. */ export interface PlannerRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const PlannerRequestBuilderUriTemplate = "{+baseurl}/solutions/businessScenarios/{businessScenario%2Did}/planner{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const PlannerRequestBuilderNavigationMetadata: Record<Exclude<keyof PlannerRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const PlannerRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map