import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Deploy/Remove */ export interface RemoveRequestBuilder extends BaseRequestBuilder { /** * Deletes all resources in the tenant that were created during the initial deploy or any update operation since.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ delete(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Provides a flag that indicates if the core infrastructure removal command can be ran or not.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; /** * Deletes all resources in the tenant that were created during the initial deploy or any update operation since.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; /** * Provides a flag that indicates if the core infrastructure removal command can be ran or not.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; } /** * Uri template for the request builder. */ export declare const RemoveRequestBuilderUriTemplate = "{+baseurl}/Api/Deploy/Remove"; /** * Metadata for all the requests in the request builder. */ export declare const RemoveRequestBuilderRequestsMetadata: RequestsMetadata;