/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: cb68b02ac54b */ 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 const GetContainerRegistryRequest$outboundSchema: z.ZodType< GetContainerRegistryRequest$Outbound, GetContainerRegistryRequest > = z.object({ id: z.string(), }); export function getContainerRegistryRequestToJSON( getContainerRegistryRequest: GetContainerRegistryRequest, ): string { return JSON.stringify( GetContainerRegistryRequest$outboundSchema.parse( getContainerRegistryRequest, ), ); }