import { type ArchitectureData } from '../../../../models/deploy/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Deploy/Component/Architecture */ export interface ArchitectureRequestBuilder extends BaseRequestBuilder { /** * Retrieves the collection of possible architecture configurations to be deployed including all metadata accompanying these records.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; /** * Retrieves the collection of possible architecture configurations to be deployed including all metadata accompanying these records.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 ArchitectureRequestBuilderUriTemplate = "{+baseurl}/Api/Deploy/Component/Architecture"; /** * Metadata for all the requests in the request builder. */ export declare const ArchitectureRequestBuilderRequestsMetadata: RequestsMetadata;