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 GetApiV3NodesIncludeStatus: { readonly Down: "DOWN"; readonly Up: "UP"; readonly Unassigned: "UNASSIGNED"; readonly Disabled: "DISABLED"; readonly Degraded: "DEGRADED"; }; export type GetApiV3NodesIncludeStatus = ClosedEnum; export declare const GetApiV3NodesIncludeNodeType: { readonly ApiBoundary: "API_BOUNDARY"; readonly Replica: "REPLICA"; }; export type GetApiV3NodesIncludeNodeType = ClosedEnum; export declare const GetApiV3NodesFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3NodesFormat = ClosedEnum; export type GetApiV3NodesRequest = { /** * Node Statuses */ includeStatus?: Array | undefined; /** * Subnet ID */ subnet?: string | null | undefined; /** * Node Types */ includeNodeType?: Array | undefined; format?: GetApiV3NodesFormat | undefined; /** * Data Center ID */ dcId?: string | null | undefined; /** * Node Provider ID */ nodeProviderId?: string | null | undefined; }; /** @internal */ export declare const GetApiV3NodesIncludeStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NodesIncludeStatus$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 GetApiV3NodesIncludeStatus$ { /** @deprecated use `GetApiV3NodesIncludeStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Down: "DOWN"; readonly Up: "UP"; readonly Unassigned: "UNASSIGNED"; readonly Disabled: "DISABLED"; readonly Degraded: "DEGRADED"; }>; /** @deprecated use `GetApiV3NodesIncludeStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Down: "DOWN"; readonly Up: "UP"; readonly Unassigned: "UNASSIGNED"; readonly Disabled: "DISABLED"; readonly Degraded: "DEGRADED"; }>; } /** @internal */ export declare const GetApiV3NodesIncludeNodeType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NodesIncludeNodeType$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 GetApiV3NodesIncludeNodeType$ { /** @deprecated use `GetApiV3NodesIncludeNodeType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly ApiBoundary: "API_BOUNDARY"; readonly Replica: "REPLICA"; }>; /** @deprecated use `GetApiV3NodesIncludeNodeType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly ApiBoundary: "API_BOUNDARY"; readonly Replica: "REPLICA"; }>; } /** @internal */ export declare const GetApiV3NodesFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NodesFormat$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 GetApiV3NodesFormat$ { /** @deprecated use `GetApiV3NodesFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3NodesFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3NodesRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NodesRequest$Outbound = { include_status?: Array | undefined; subnet: string | null; include_node_type?: Array | undefined; format: string; dc_id: string | null; node_provider_id: string | null; }; /** @internal */ export declare const GetApiV3NodesRequest$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 GetApiV3NodesRequest$ { /** @deprecated use `GetApiV3NodesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodesRequest$Outbound` instead. */ type Outbound = GetApiV3NodesRequest$Outbound; } export declare function getApiV3NodesRequestToJSON(getApiV3NodesRequest: GetApiV3NodesRequest): string; export declare function getApiV3NodesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3nodes.d.ts.map