import { OutpostCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { OutpostError } from "../models/errors/outposterror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Health Check * * @remarks * Health check endpoint that reports the status of all workers. * * Returns HTTP 200 when all workers are healthy, or HTTP 503 if any worker has failed. * * The response includes: * - `status`: Overall health status ("healthy" or "failed") * - `timestamp`: When this health check was performed (ISO 8601 format) * - `workers`: Map of worker names to their individual health status * * Each worker reports: * - `status`: Worker health ("healthy" or "failed") * * Note: Error details are not exposed for security reasons. Check application logs for detailed error information. */ export declare function healthCheck(client: OutpostCore, options?: RequestOptions): APIPromise>; //# sourceMappingURL=healthCheck.d.ts.map