UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
78 lines 5.04 kB
import { type UserExperienceAnalyticsDeviceScope } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type TriggerDeviceScopeActionRequestBuilder } from './triggerDeviceScopeAction/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the userExperienceAnalyticsDeviceScopes property of the microsoft.graph.deviceManagement entity. */ export interface UserExperienceAnalyticsDeviceScopeItemRequestBuilder extends BaseRequestBuilder<UserExperienceAnalyticsDeviceScopeItemRequestBuilder> { /** * Provides operations to call the triggerDeviceScopeAction method. */ get triggerDeviceScopeAction(): TriggerDeviceScopeActionRequestBuilder; /** * Delete navigation property userExperienceAnalyticsDeviceScopes 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>; /** * The user experience analytics device scope entity contains device scope configuration use to apply filtering on the endpoint analytics reports. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<UserExperienceAnalyticsDeviceScope>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<UserExperienceAnalyticsDeviceScopeItemRequestBuilderGetQueryParameters> | undefined): Promise<UserExperienceAnalyticsDeviceScope | undefined>; /** * Update the navigation property userExperienceAnalyticsDeviceScopes in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<UserExperienceAnalyticsDeviceScope>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: UserExperienceAnalyticsDeviceScope, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserExperienceAnalyticsDeviceScope | undefined>; /** * Delete navigation property userExperienceAnalyticsDeviceScopes for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * The user experience analytics device scope entity contains device scope configuration use to apply filtering on the endpoint analytics reports. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserExperienceAnalyticsDeviceScopeItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property userExperienceAnalyticsDeviceScopes 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: UserExperienceAnalyticsDeviceScope, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * The user experience analytics device scope entity contains device scope configuration use to apply filtering on the endpoint analytics reports. */ export interface UserExperienceAnalyticsDeviceScopeItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const UserExperienceAnalyticsDeviceScopeItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/userExperienceAnalyticsDeviceScopes/{userExperienceAnalyticsDeviceScope%2Did}{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const UserExperienceAnalyticsDeviceScopeItemRequestBuilderNavigationMetadata: Record<Exclude<keyof UserExperienceAnalyticsDeviceScopeItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const UserExperienceAnalyticsDeviceScopeItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map