UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
69 lines 3.75 kB
import { type SkillProficiency } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the skills property of the microsoft.graph.profile entity. */ export interface SkillProficiencyItemRequestBuilder extends BaseRequestBuilder<SkillProficiencyItemRequestBuilder> { /** * Delete navigation property skills for users * @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>; /** * Represents detailed information about skills associated with a user in various services. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<SkillProficiency>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<SkillProficiencyItemRequestBuilderGetQueryParameters> | undefined): Promise<SkillProficiency | undefined>; /** * Update the navigation property skills in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<SkillProficiency>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: SkillProficiency, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SkillProficiency | undefined>; /** * Delete navigation property skills for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Represents detailed information about skills associated with a user in various services. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<SkillProficiencyItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property skills in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: SkillProficiency, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Represents detailed information about skills associated with a user in various services. */ export interface SkillProficiencyItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const SkillProficiencyItemRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/profile/skills/{skillProficiency%2Did}{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const SkillProficiencyItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map