import * as z from "zod/v4"; export type GetContainerRegistryGlobals = { /** * 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 GetContainerRegistryRequest = { /** * Unique identifier for the deployment group. */ id: string; }; /** @internal */ export type GetContainerRegistryRequest$Outbound = { id: string; }; /** @internal */ export declare const GetContainerRegistryRequest$outboundSchema: z.ZodType; export declare function getContainerRegistryRequestToJSON(getContainerRegistryRequest: GetContainerRegistryRequest): string; //# sourceMappingURL=getcontainerregistry.d.ts.map