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 ListJobLogsRequest = { id: string; source?: components.ComputeLogSource | undefined; cursor?: string | undefined; limit?: number | undefined; /** * asc pages oldest-first (default); desc pages newest-first. A cursor is only valid within a traversal that keeps the same order. */ order?: components.ComputeOrder | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListJobLogsResponse = components.ComputeLogList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListJobLogsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListJobLogsRequest$Outbound = { id: string; source?: string | undefined; cursor?: string | undefined; limit: number; order: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListJobLogsRequest$outboundSchema: z.ZodType; export declare function listJobLogsRequestToJSON(listJobLogsRequest: ListJobLogsRequest): string; export declare function listJobLogsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListJobLogsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListJobLogsResponse$Outbound = components.ComputeLogList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListJobLogsResponse$outboundSchema: z.ZodType; export declare function listJobLogsResponseToJSON(listJobLogsResponse: ListJobLogsResponse): string; export declare function listJobLogsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listjoblogs.d.ts.map