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 CreateJobRequest = { idempotencyKey: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; computeJobCreate: components.ComputeJobCreate; }; export type CreateJobResponse = components.ComputeJob | components.ComputeErrorEnvelope; /** @internal */ export declare const CreateJobRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateJobRequest$Outbound = { "Idempotency-Key": string; "X-On-Behalf-Of"?: string | undefined; ComputeJobCreate: components.ComputeJobCreate$Outbound; }; /** @internal */ export declare const CreateJobRequest$outboundSchema: z.ZodType; export declare function createJobRequestToJSON(createJobRequest: CreateJobRequest): string; export declare function createJobRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreateJobResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateJobResponse$Outbound = components.ComputeJob$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const CreateJobResponse$outboundSchema: z.ZodType; export declare function createJobResponseToJSON(createJobResponse: CreateJobResponse): string; export declare function createJobResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createjob.d.ts.map