UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
78 lines 4.73 kB
import { type UserExperienceAnalyticsCategory } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type MetricValuesRequestBuilder } from './metricValues/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the userExperienceAnalyticsAppHealthOverview property of the microsoft.graph.deviceManagement entity. */ export interface UserExperienceAnalyticsAppHealthOverviewRequestBuilder extends BaseRequestBuilder<UserExperienceAnalyticsAppHealthOverviewRequestBuilder> { /** * Provides operations to manage the metricValues property of the microsoft.graph.userExperienceAnalyticsCategory entity. */ get metricValues(): MetricValuesRequestBuilder; /** * Delete navigation property userExperienceAnalyticsAppHealthOverview 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 appHealth overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<UserExperienceAnalyticsCategory>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<UserExperienceAnalyticsAppHealthOverviewRequestBuilderGetQueryParameters> | undefined): Promise<UserExperienceAnalyticsCategory | undefined>; /** * Update the navigation property userExperienceAnalyticsAppHealthOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<UserExperienceAnalyticsCategory>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: UserExperienceAnalyticsCategory, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserExperienceAnalyticsCategory | undefined>; /** * Delete navigation property userExperienceAnalyticsAppHealthOverview 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 appHealth overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserExperienceAnalyticsAppHealthOverviewRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property userExperienceAnalyticsAppHealthOverview 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: UserExperienceAnalyticsCategory, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * User experience analytics appHealth overview */ export interface UserExperienceAnalyticsAppHealthOverviewRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const UserExperienceAnalyticsAppHealthOverviewRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/userExperienceAnalyticsAppHealthOverview{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const UserExperienceAnalyticsAppHealthOverviewRequestBuilderNavigationMetadata: Record<Exclude<keyof UserExperienceAnalyticsAppHealthOverviewRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const UserExperienceAnalyticsAppHealthOverviewRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map