import * as z from "zod/v4"; export type GetDeploymentCredentialRotationValuesGlobals = { /** * 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 GetDeploymentCredentialRotationValuesRequestBody = { rotationId: string; }; export type GetDeploymentCredentialRotationValuesRequest = { /** * Unique identifier for the deployment. */ id: string; requestBody: GetDeploymentCredentialRotationValuesRequestBody; }; /** @internal */ export type GetDeploymentCredentialRotationValuesRequestBody$Outbound = { rotationId: string; }; /** @internal */ export declare const GetDeploymentCredentialRotationValuesRequestBody$outboundSchema: z.ZodType; export declare function getDeploymentCredentialRotationValuesRequestBodyToJSON(getDeploymentCredentialRotationValuesRequestBody: GetDeploymentCredentialRotationValuesRequestBody): string; /** @internal */ export type GetDeploymentCredentialRotationValuesRequest$Outbound = { id: string; RequestBody: GetDeploymentCredentialRotationValuesRequestBody$Outbound; }; /** @internal */ export declare const GetDeploymentCredentialRotationValuesRequest$outboundSchema: z.ZodType; export declare function getDeploymentCredentialRotationValuesRequestToJSON(getDeploymentCredentialRotationValuesRequest: GetDeploymentCredentialRotationValuesRequest): string; //# sourceMappingURL=getdeploymentcredentialrotationvalues.d.ts.map