import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TerminateJobRequest = { id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type TerminateJobResponse = components.ComputeJob | components.ComputeErrorEnvelope; /** @internal */ export declare const TerminateJobRequest$inboundSchema: z.ZodType; /** @internal */ export type TerminateJobRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const TerminateJobRequest$outboundSchema: z.ZodType; export declare function terminateJobRequestToJSON(terminateJobRequest: TerminateJobRequest): string; export declare function terminateJobRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TerminateJobResponse$inboundSchema: z.ZodType; /** @internal */ export type TerminateJobResponse$Outbound = components.ComputeJob$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const TerminateJobResponse$outboundSchema: z.ZodType; export declare function terminateJobResponseToJSON(terminateJobResponse: TerminateJobResponse): string; export declare function terminateJobResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=terminatejob.d.ts.map