/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 57c75b3543e9 */ import * as z from "zod/v4"; export type GetDeploymentCredentialRotationGlobals = { /** * 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 GetDeploymentCredentialRotationRequest = { /** * Unique identifier for the deployment. */ id: string; }; /** @internal */ export type GetDeploymentCredentialRotationRequest$Outbound = { id: string; }; /** @internal */ export const GetDeploymentCredentialRotationRequest$outboundSchema: z.ZodType< GetDeploymentCredentialRotationRequest$Outbound, GetDeploymentCredentialRotationRequest > = z.object({ id: z.string(), }); export function getDeploymentCredentialRotationRequestToJSON( getDeploymentCredentialRotationRequest: GetDeploymentCredentialRotationRequest, ): string { return JSON.stringify( GetDeploymentCredentialRotationRequest$outboundSchema.parse( getDeploymentCredentialRotationRequest, ), ); }