import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Discover/Report */ export interface ReportRequestBuilder extends BaseRequestBuilder { /** * Starts the Discover module's report collection engine to create a license report and upload it to the data gateway.This endpoint requires the `Discover.Action.Run`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Starts the Discover module's report collection engine to create a license report and upload it to the data gateway.This endpoint requires the `Discover.Action.Run`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const ReportRequestBuilderUriTemplate = "{+baseurl}/Api/Discover/Report"; /** * Metadata for all the requests in the request builder. */ export declare const ReportRequestBuilderRequestsMetadata: RequestsMetadata;