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 ListComputeTenantsRequest = { enabled?: boolean | undefined; cursor?: string | undefined; limit?: number | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListComputeTenantsResponse = components.ComputeTenantList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListComputeTenantsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListComputeTenantsRequest$Outbound = { enabled?: boolean | undefined; cursor?: string | undefined; limit: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListComputeTenantsRequest$outboundSchema: z.ZodType; export declare function listComputeTenantsRequestToJSON(listComputeTenantsRequest: ListComputeTenantsRequest): string; export declare function listComputeTenantsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListComputeTenantsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListComputeTenantsResponse$Outbound = components.ComputeTenantList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListComputeTenantsResponse$outboundSchema: z.ZodType; export declare function listComputeTenantsResponseToJSON(listComputeTenantsResponse: ListComputeTenantsResponse): string; export declare function listComputeTenantsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcomputetenants.d.ts.map