import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const GetApiV3MetricsIcMemoryTotalFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3MetricsIcMemoryTotalFormat = ClosedEnum; export type GetApiV3MetricsIcMemoryTotalRequest = { /** * Start Timestamp */ start?: number | null | undefined; /** * Subnet ID */ subnet?: string | null | undefined; /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3MetricsIcMemoryTotalFormat | undefined; /** * Step value */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3MetricsIcMemoryTotalFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3MetricsIcMemoryTotalFormat$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 GetApiV3MetricsIcMemoryTotalFormat$ { /** @deprecated use `GetApiV3MetricsIcMemoryTotalFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3MetricsIcMemoryTotalFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3MetricsIcMemoryTotalRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MetricsIcMemoryTotalRequest$Outbound = { start: number | null; subnet: string | null; end: number | null; format: string; step: number; }; /** @internal */ export declare const GetApiV3MetricsIcMemoryTotalRequest$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 GetApiV3MetricsIcMemoryTotalRequest$ { /** @deprecated use `GetApiV3MetricsIcMemoryTotalRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsIcMemoryTotalRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsIcMemoryTotalRequest$Outbound` instead. */ type Outbound = GetApiV3MetricsIcMemoryTotalRequest$Outbound; } export declare function getApiV3MetricsIcMemoryTotalRequestToJSON(getApiV3MetricsIcMemoryTotalRequest: GetApiV3MetricsIcMemoryTotalRequest): string; export declare function getApiV3MetricsIcMemoryTotalRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3metricsicmemorytotal.d.ts.map