import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PrometheusResponseActiveTarget } from "./prometheusresponseactivetarget.js"; import { PrometheusResponseDroppedTarget } from "./prometheusresponsedroppedtarget.js"; import { PrometheusResponsePrometheusVersion } from "./prometheusresponseprometheusversion.js"; export type PrometheusResponse = { /** * List of active targets. */ activeTargets?: Array | null | undefined; /** * List of the versions of everything that Prometheus finds i.e., version of Prometheus, Go, Node, cAdvisor, etc. */ allVersions?: Array | null | undefined; /** * True when the config endpoint is exposed. */ configExposed?: boolean | undefined; /** * List of dropped targets. */ droppedTargets?: Array | null | undefined; /** * List of the versions of Go. */ goVersions?: Array | null | undefined; prometheusVersions?: Array | null | undefined; }; /** @internal */ export declare const PrometheusResponse$inboundSchema: z.ZodType; export declare function prometheusResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=prometheusresponse.d.ts.map