import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export type GetDeploymentInfoGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; /** * Represents the target cloud platform. */ export declare const GetDeploymentInfoPlatform: { 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 GetDeploymentInfoPlatform = ClosedEnum; export declare const GetDeploymentInfoSetupItem: { readonly Deployment: "deployment"; readonly Models: "models"; readonly Keys: "keys"; readonly Bucket: "bucket"; readonly Registry: "registry"; readonly Sandbox: "sandbox"; }; export type GetDeploymentInfoSetupItem = ClosedEnum; export type GetDeploymentInfoRequest = { /** * Represents the target cloud platform. */ platform?: GetDeploymentInfoPlatform | undefined; setupItem?: GetDeploymentInfoSetupItem | undefined; deploymentId?: string | undefined; updateOperationId?: string | undefined; }; /** @internal */ export declare const GetDeploymentInfoPlatform$outboundSchema: z.ZodEnum; /** @internal */ export declare const GetDeploymentInfoSetupItem$outboundSchema: z.ZodEnum; /** @internal */ export type GetDeploymentInfoRequest$Outbound = { platform?: string | undefined; setupItem?: string | undefined; deploymentId?: string | undefined; updateOperationId?: string | undefined; }; /** @internal */ export declare const GetDeploymentInfoRequest$outboundSchema: z.ZodType; export declare function getDeploymentInfoRequestToJSON(getDeploymentInfoRequest: GetDeploymentInfoRequest): string; //# sourceMappingURL=getdeploymentinfo.d.ts.map