import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export type ResolveGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; /** * Target platform to resolve the manager for */ export declare const ResolvePlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Local: "local"; readonly Test: "test"; }; /** * Target platform to resolve the manager for */ export type ResolvePlatform = ClosedEnum; export type ResolveRequest = { /** * Target platform to resolve the manager for */ platform: ResolvePlatform; /** * Project ID or name. Required for user and workspace-scoped tokens. Optional for project/deployment-group/deployment-scoped tokens (derived from token scope). */ project?: string | undefined; }; /** @internal */ export declare const ResolvePlatform$outboundSchema: z.ZodEnum; /** @internal */ export type ResolveRequest$Outbound = { platform: string; project?: string | undefined; }; /** @internal */ export declare const ResolveRequest$outboundSchema: z.ZodType; export declare function resolveRequestToJSON(resolveRequest: ResolveRequest): string; //# sourceMappingURL=resolve.d.ts.map