import { type PathIndicator } 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/Skip/{templateId} */ export interface WithTemplateItemRequestBuilder extends BaseRequestBuilder { /** * Deletes the entry so it is no longer ignored during the evaluation process.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param body Payload with path data used in several endpoints * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ delete(body: PathIndicator, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Stores the reference to the entity to be skipped during the evaluation process. Could be entire configuration item or a specific property.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param body Payload with path data used in several endpoints * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ post(body: PathIndicator, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Deletes the entry so it is no longer ignored during the evaluation process.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param body Payload with path data used in several endpoints * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(body: PathIndicator, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; /** * Stores the reference to the entity to be skipped during the evaluation process. Could be entire configuration item or a specific property.This endpoint requires the `Deploy.ReadWrite` or `Everything.ReadWrite` scope (permission). * @param body Payload with path data used in several endpoints * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: PathIndicator, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const WithTemplateItemRequestBuilderUriTemplate = "{+baseurl}/Api/Deploy/Skip/{templateId}"; /** * Metadata for all the requests in the request builder. */ export declare const WithTemplateItemRequestBuilderRequestsMetadata: RequestsMetadata;