import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Chat/UpdateDocs */ export interface UpdateDocsRequestBuilder extends BaseRequestBuilder { /** * Sends a request to update the cached Data Gateway documentation if there is a newer version.This endpoint requires the `LicenseGptCache.ReadWrite` scope (permission). This endpoint is also only accessible from the `SHI Lab` tenant. End user access is restricted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ post(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Sends a request to update the cached Data Gateway documentation if there is a newer version.This endpoint requires the `LicenseGptCache.ReadWrite` scope (permission). This endpoint is also only accessible from the `SHI Lab` tenant. End user access is restricted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const UpdateDocsRequestBuilderUriTemplate = "{+baseurl}/Api/Chat/UpdateDocs"; /** * Metadata for all the requests in the request builder. */ export declare const UpdateDocsRequestBuilderRequestsMetadata: RequestsMetadata;