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 GetComputeSecretRequest = { id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type GetComputeSecretResponse = components.ComputeSecret | components.ComputeErrorEnvelope; /** @internal */ export declare const GetComputeSecretRequest$inboundSchema: z.ZodType; /** @internal */ export type GetComputeSecretRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetComputeSecretRequest$outboundSchema: z.ZodType; export declare function getComputeSecretRequestToJSON(getComputeSecretRequest: GetComputeSecretRequest): string; export declare function getComputeSecretRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetComputeSecretResponse$inboundSchema: z.ZodType; /** @internal */ export type GetComputeSecretResponse$Outbound = components.ComputeSecret$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const GetComputeSecretResponse$outboundSchema: z.ZodType; export declare function getComputeSecretResponseToJSON(getComputeSecretResponse: GetComputeSecretResponse): string; export declare function getComputeSecretResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcomputesecret.d.ts.map