import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1KeysControllerGenRotateRequest = { id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Key rotated successfully */ export type ConsoleV1KeysControllerGenRotateResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.KeyDto; }; /** @internal */ export declare const ConsoleV1KeysControllerGenRotateRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1KeysControllerGenRotateRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1KeysControllerGenRotateRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1KeysControllerGenRotateRequest$ { /** @deprecated use `ConsoleV1KeysControllerGenRotateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenRotateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenRotateRequest$Outbound` instead. */ type Outbound = ConsoleV1KeysControllerGenRotateRequest$Outbound; } /** @internal */ export declare const ConsoleV1KeysControllerGenRotateResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1KeysControllerGenRotateResponseBody$Outbound = { message: string; data: components.KeyDto$Outbound; }; /** @internal */ export declare const ConsoleV1KeysControllerGenRotateResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1KeysControllerGenRotateResponseBody$ { /** @deprecated use `ConsoleV1KeysControllerGenRotateResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenRotateResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenRotateResponseBody$Outbound` instead. */ type Outbound = ConsoleV1KeysControllerGenRotateResponseBody$Outbound; } //# sourceMappingURL=consolev1keyscontrollergenrotate.d.ts.map