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 ListServiceLogsRequest = { 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 ListServiceLogsResponse = components.ComputeLogList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListServiceLogsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListServiceLogsRequest$Outbound = { id: string; source?: string | undefined; cursor?: string | undefined; limit: number; order: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListServiceLogsRequest$outboundSchema: z.ZodType; export declare function listServiceLogsRequestToJSON(listServiceLogsRequest: ListServiceLogsRequest): string; export declare function listServiceLogsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListServiceLogsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListServiceLogsResponse$Outbound = components.ComputeLogList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListServiceLogsResponse$outboundSchema: z.ZodType; export declare function listServiceLogsResponseToJSON(listServiceLogsResponse: ListServiceLogsResponse): string; export declare function listServiceLogsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listservicelogs.d.ts.map