UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

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