import type * as SVC from "@distilled.cloud/aws/finspace"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { KxEnvironment } from "./KxEnvironment.ts"; /** * Runtime binding for `finspace:GetKxCluster` — reads one kdb cluster of the bound environment — status, mounted databases, code configuration, and endpoints — for runtime monitoring and orchestration. * Provide the implementation with * `Effect.provide(AWS.FinSpace.GetKxClusterHttp)`. * ### Monitoring Clusters * **Example:** Check a Cluster's Status * ```typescript * const getCluster = yield* AWS.FinSpace.GetKxCluster(kdb); * * const { status } = yield* getCluster({ clusterName: "hdb" }); * ``` * * @binding */ export interface GetKxCluster extends Binding.Service(environment: K) => Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const GetKxCluster: GetKxCluster; //# sourceMappingURL=GetKxCluster.d.ts.map