UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
69 lines 4.27 kB
import { type UserExperienceAnalyticsResourcePerformance } 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 userExperienceAnalyticsResourcePerformance property of the microsoft.graph.deviceManagement entity. */ export interface UserExperienceAnalyticsResourcePerformanceItemRequestBuilder extends BaseRequestBuilder<UserExperienceAnalyticsResourcePerformanceItemRequestBuilder> { /** * Delete navigation property userExperienceAnalyticsResourcePerformance for deviceManagement * @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>; /** * User experience analytics resource performance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<UserExperienceAnalyticsResourcePerformance>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<UserExperienceAnalyticsResourcePerformanceItemRequestBuilderGetQueryParameters> | undefined): Promise<UserExperienceAnalyticsResourcePerformance | undefined>; /** * Update the navigation property userExperienceAnalyticsResourcePerformance in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<UserExperienceAnalyticsResourcePerformance>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: UserExperienceAnalyticsResourcePerformance, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserExperienceAnalyticsResourcePerformance | undefined>; /** * Delete navigation property userExperienceAnalyticsResourcePerformance for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * User experience analytics resource performance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserExperienceAnalyticsResourcePerformanceItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property userExperienceAnalyticsResourcePerformance in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: UserExperienceAnalyticsResourcePerformance, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * User experience analytics resource performance */ export interface UserExperienceAnalyticsResourcePerformanceItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const UserExperienceAnalyticsResourcePerformanceItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance%2Did}{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const UserExperienceAnalyticsResourcePerformanceItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map