import { ClosedEnum } from "../../types/enums.js"; import * as components from "../components/index.js"; import * as z from "zod"; export declare const Dataset: { readonly Events: "Events"; readonly Metrics: "Metrics"; readonly ExportExposures: "export_exposures"; readonly EntityProperties: "entity_properties"; }; export type Dataset = ClosedEnum; export type ConsoleV1IngestionControllerGenReadIngestionScheduleRequest = { dataset: Dataset; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Read Ingestion Schedule Success */ export type ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.IngestionScheduleDto; }; /** @internal */ export declare const Dataset$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Dataset$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 Dataset$ { /** @deprecated use `Dataset$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Events: "Events"; readonly Metrics: "Metrics"; readonly ExportExposures: "export_exposures"; readonly EntityProperties: "entity_properties"; }>; /** @deprecated use `Dataset$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Events: "Events"; readonly Metrics: "Metrics"; readonly ExportExposures: "export_exposures"; readonly EntityProperties: "entity_properties"; }>; } /** @internal */ export declare const ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$Outbound = { dataset: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$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 ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$ { /** @deprecated use `ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$Outbound` instead. */ type Outbound = ConsoleV1IngestionControllerGenReadIngestionScheduleRequest$Outbound; } /** @internal */ export declare const ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$Outbound = { message: string; data: components.IngestionScheduleDto$Outbound; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$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 ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$ { /** @deprecated use `ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$Outbound` instead. */ type Outbound = ConsoleV1IngestionControllerGenReadIngestionScheduleResponseBody$Outbound; } //# sourceMappingURL=consolev1ingestioncontrollergenreadingestionschedule.d.ts.map