import * as z from "zod/v4"; export type CancelDeploymentCredentialRotationGlobals = { /** * 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 CancelDeploymentCredentialRotationRequestBody = { rotationId: string; }; export type CancelDeploymentCredentialRotationRequest = { /** * Unique identifier for the deployment. */ id: string; requestBody: CancelDeploymentCredentialRotationRequestBody; }; /** @internal */ export type CancelDeploymentCredentialRotationRequestBody$Outbound = { rotationId: string; }; /** @internal */ export declare const CancelDeploymentCredentialRotationRequestBody$outboundSchema: z.ZodType; export declare function cancelDeploymentCredentialRotationRequestBodyToJSON(cancelDeploymentCredentialRotationRequestBody: CancelDeploymentCredentialRotationRequestBody): string; /** @internal */ export type CancelDeploymentCredentialRotationRequest$Outbound = { id: string; RequestBody: CancelDeploymentCredentialRotationRequestBody$Outbound; }; /** @internal */ export declare const CancelDeploymentCredentialRotationRequest$outboundSchema: z.ZodType; export declare function cancelDeploymentCredentialRotationRequestToJSON(cancelDeploymentCredentialRotationRequest: CancelDeploymentCredentialRotationRequest): string; //# sourceMappingURL=canceldeploymentcredentialrotation.d.ts.map