import { type ProgressBar } from '../../../models/core/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; export type GetOperationQueryParameterType = (typeof GetOperationQueryParameterTypeObject)[keyof typeof GetOperationQueryParameterTypeObject]; /** * Builds and executes requests for operations under /Api/Deploy/Progress */ export interface ProgressRequestBuilder extends BaseRequestBuilder { /** * Provides a detailed breakdown of the current progress of the deploy module and its sub-components, if any.This endpoint requires the `Deploy.Read`, `Deploy.ReadWrite`, 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 progress of the deploy module and its sub-components, if any.This endpoint requires the `Deploy.Read`, `Deploy.ReadWrite`, 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; } /** * Provides a detailed breakdown of the current progress of the deploy module and its sub-components, if any.This endpoint requires the `Deploy.Read`, `Deploy.ReadWrite`, or the `Everything.ReadWrite` scope (permission). */ export interface ProgressRequestBuilderGetQueryParameters { /** * Flag to indicate which progress data in the Deploy Engine to retrieve. If invalid value is provided, it would be ignored and result defaulted to deploy operation. */ operation?: GetOperationQueryParameterType; } /** * Uri template for the request builder. */ export declare const ProgressRequestBuilderUriTemplate = "{+baseurl}/Api/Deploy/Progress{?operation*}"; export declare const GetOperationQueryParameterTypeObject: { readonly Deploy: "deploy"; readonly Remediate: "remediate"; readonly Analysis: "analysis"; }; /** * Metadata for all the requests in the request builder. */ export declare const ProgressRequestBuilderRequestsMetadata: RequestsMetadata;