import { type AdditionalDataHolder, type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {InvokePostRequestBody} */ export declare function createInvokePostRequestBodyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param InvokePostRequestBody The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoInvokePostRequestBody(invokePostRequestBody?: Partial | undefined): Record void>; export interface InvokePostRequestBody extends AdditionalDataHolder, Parsable { } /** * Builds and executes requests for operations under /Api/Deploy/Analyze/Invoke */ export interface InvokeRequestBuilder extends BaseRequestBuilder { /** * Initiates an asynchronous analysis of all deployed configuration items in the infrastructure. It starts the analysis process, to discover any and all inconsistencies at the configuration item level.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ post(body: InvokePostRequestBody, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Initiates an asynchronous analysis of all deployed configuration items in the infrastructure. It starts the analysis process, to discover any and all inconsistencies at the configuration item level.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: InvokePostRequestBody, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Serializes information the current object * @param InvokePostRequestBody The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ export declare function serializeInvokePostRequestBody(writer: SerializationWriter, invokePostRequestBody?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Uri template for the request builder. */ export declare const InvokeRequestBuilderUriTemplate = "{+baseurl}/Api/Deploy/Analyze/Invoke"; /** * Metadata for all the requests in the request builder. */ export declare const InvokeRequestBuilderRequestsMetadata: RequestsMetadata;