import { type ExecutionStatus } from '../../../models/discover/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Discover/Status */ export interface StatusRequestBuilder extends BaseRequestBuilder { /** * Provides a detailed breakdown of the current state of the discover module and it progress.This endpoint requires the `Discover.Read`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Provides a detailed breakdown of the current state of the discover module and it progress.This endpoint requires the `Discover.Read`, 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 StatusRequestBuilderUriTemplate = "{+baseurl}/Api/Discover/Status"; /** * Metadata for all the requests in the request builder. */ export declare const StatusRequestBuilderRequestsMetadata: RequestsMetadata;