UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
83 lines 4.76 kB
import { type WindowsQualityUpdateProfile } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type AssignRequestBuilder } from './assign/index.js'; import { type AssignmentsRequestBuilder } from './assignments/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the windowsQualityUpdateProfiles property of the microsoft.graph.deviceManagement entity. */ export interface WindowsQualityUpdateProfileItemRequestBuilder extends BaseRequestBuilder<WindowsQualityUpdateProfileItemRequestBuilder> { /** * Provides operations to call the assign method. */ get assign(): AssignRequestBuilder; /** * Provides operations to manage the assignments property of the microsoft.graph.windowsQualityUpdateProfile entity. */ get assignments(): AssignmentsRequestBuilder; /** * Delete navigation property windowsQualityUpdateProfiles 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>; /** * A collection of windows quality update profiles * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<WindowsQualityUpdateProfile>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<WindowsQualityUpdateProfileItemRequestBuilderGetQueryParameters> | undefined): Promise<WindowsQualityUpdateProfile | undefined>; /** * Update the navigation property windowsQualityUpdateProfiles in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<WindowsQualityUpdateProfile>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: WindowsQualityUpdateProfile, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WindowsQualityUpdateProfile | undefined>; /** * Delete navigation property windowsQualityUpdateProfiles for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * A collection of windows quality update profiles * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<WindowsQualityUpdateProfileItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property windowsQualityUpdateProfiles 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: WindowsQualityUpdateProfile, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * A collection of windows quality update profiles */ export interface WindowsQualityUpdateProfileItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const WindowsQualityUpdateProfileItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile%2Did}{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const WindowsQualityUpdateProfileItemRequestBuilderNavigationMetadata: Record<Exclude<keyof WindowsQualityUpdateProfileItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const WindowsQualityUpdateProfileItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map