import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Runs extends ClientSDK { /** * Get Job Runs * * @remarks * Get all job runs of a job. */ all(request: operations.GetJobRunsRequest, options?: RequestOptions): Promise; /** * Get Job Run * * @remarks * Get information and results for a specific job run. */ one(projectName: string, jobId: string, jobRunId: string, options?: RequestOptions): Promise; /** * Terminate Job Run * * @remarks * Terminate a job run by ID. */ terminate(projectName: string, jobId: string, jobRunId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=runs.d.ts.map