import * as z from "zod/v4"; export type GetDeploymentConnectionInfoGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type GetDeploymentConnectionInfoRequest = { /** * Unique identifier for the deployment. */ id: string; }; /** @internal */ export type GetDeploymentConnectionInfoRequest$Outbound = { id: string; }; /** @internal */ export declare const GetDeploymentConnectionInfoRequest$outboundSchema: z.ZodType; export declare function getDeploymentConnectionInfoRequestToJSON(getDeploymentConnectionInfoRequest: GetDeploymentConnectionInfoRequest): string; //# sourceMappingURL=getdeploymentconnectioninfo.d.ts.map