import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { StackInputValueRequest, StackInputValueRequest$Outbound } from "./stackinputvaluerequest.js"; /** * Represents the target cloud platform. */ export declare const SetFirstPartyDeploymentInputsRequestPlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Local: "local"; readonly Test: "test"; }; /** * Represents the target cloud platform. */ export type SetFirstPartyDeploymentInputsRequestPlatform = ClosedEnum; export type SetFirstPartyDeploymentInputsRequest = { /** * Represents the target cloud platform. */ platform: SetFirstPartyDeploymentInputsRequestPlatform; inputValues?: { [k: string]: StackInputValueRequest; } | undefined; releaseChannel?: string | undefined; }; /** @internal */ export declare const SetFirstPartyDeploymentInputsRequestPlatform$outboundSchema: z.ZodEnum; /** @internal */ export type SetFirstPartyDeploymentInputsRequest$Outbound = { platform: string; inputValues?: { [k: string]: StackInputValueRequest$Outbound; } | undefined; releaseChannel?: string | undefined; }; /** @internal */ export declare const SetFirstPartyDeploymentInputsRequest$outboundSchema: z.ZodType; export declare function setFirstPartyDeploymentInputsRequestToJSON(setFirstPartyDeploymentInputsRequest: SetFirstPartyDeploymentInputsRequest): string; //# sourceMappingURL=setfirstpartydeploymentinputsrequest.d.ts.map