import { ClosedEnum } from "../../types/enums.js"; import * as z from "zod"; export declare const ConsoleV1TargetAppControllerGenListStatus: { readonly FourHundredAndOne: 401; }; export type ConsoleV1TargetAppControllerGenListStatus = ClosedEnum; /** * This endpoint only accepts an active CONSOLE key, but an invalid key was sent. Key: console-xxxXXXxxxXXXxxx */ export type ConsoleV1TargetAppControllerGenListResponseBodyData = { status: ConsoleV1TargetAppControllerGenListStatus; message: string; }; /** * This endpoint only accepts an active CONSOLE key, but an invalid key was sent. Key: console-xxxXXXxxxXXXxxx */ export declare class ConsoleV1TargetAppControllerGenListResponseBody extends Error { status: ConsoleV1TargetAppControllerGenListStatus; /** The original data that was passed to this error instance. */ data$: ConsoleV1TargetAppControllerGenListResponseBodyData; constructor(err: ConsoleV1TargetAppControllerGenListResponseBodyData); } /** @internal */ export declare const ConsoleV1TargetAppControllerGenListStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ConsoleV1TargetAppControllerGenListStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1TargetAppControllerGenListStatus$ { /** @deprecated use `ConsoleV1TargetAppControllerGenListStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly FourHundredAndOne: 401; }>; /** @deprecated use `ConsoleV1TargetAppControllerGenListStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly FourHundredAndOne: 401; }>; } /** @internal */ export declare const ConsoleV1TargetAppControllerGenListResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TargetAppControllerGenListResponseBody$Outbound = { status: number; message: string; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenListResponseBody$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 ConsoleV1TargetAppControllerGenListResponseBody$ { /** @deprecated use `ConsoleV1TargetAppControllerGenListResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenListResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenListResponseBody$Outbound` instead. */ type Outbound = ConsoleV1TargetAppControllerGenListResponseBody$Outbound; } //# sourceMappingURL=consolev1targetappcontrollergenlist.d.ts.map