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 CreateComputeSecretRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; computeSecretCreate: components.ComputeSecretCreate; }; export type CreateComputeSecretResponse = components.ComputeSecret | components.ComputeErrorEnvelope; /** @internal */ export declare const CreateComputeSecretRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateComputeSecretRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; ComputeSecretCreate: components.ComputeSecretCreate$Outbound; }; /** @internal */ export declare const CreateComputeSecretRequest$outboundSchema: z.ZodType; export declare function createComputeSecretRequestToJSON(createComputeSecretRequest: CreateComputeSecretRequest): string; export declare function createComputeSecretRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreateComputeSecretResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateComputeSecretResponse$Outbound = components.ComputeSecret$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const CreateComputeSecretResponse$outboundSchema: z.ZodType; export declare function createComputeSecretResponseToJSON(createComputeSecretResponse: CreateComputeSecretResponse): string; export declare function createComputeSecretResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createcomputesecret.d.ts.map