UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
78 lines 4.66 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 userExperienceAnalyticsCategories property of the microsoft.graph.deviceManagement entity. */ export interface UserExperienceAnalyticsCategoryItemRequestBuilder extends BaseRequestBuilder<UserExperienceAnalyticsCategoryItemRequestBuilder> { /** * Provides operations to manage the metricValues property of the microsoft.graph.userExperienceAnalyticsCategory entity. */ get metricValues(): MetricValuesRequestBuilder; /** * Delete navigation property userExperienceAnalyticsCategories 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 categories * @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<UserExperienceAnalyticsCategoryItemRequestBuilderGetQueryParameters> | undefined): Promise<UserExperienceAnalyticsCategory | undefined>; /** * Update the navigation property userExperienceAnalyticsCategories 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 userExperienceAnalyticsCategories 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 categories * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserExperienceAnalyticsCategoryItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property userExperienceAnalyticsCategories 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 categories */ export interface UserExperienceAnalyticsCategoryItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const UserExperienceAnalyticsCategoryItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory%2Did}{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const UserExperienceAnalyticsCategoryItemRequestBuilderNavigationMetadata: Record<Exclude<keyof UserExperienceAnalyticsCategoryItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const UserExperienceAnalyticsCategoryItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map