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 GetApiV3NodeProvidersNodeProviderIdNodesIncludeStatus: { readonly Down: "DOWN"; readonly Up: "UP"; readonly Unassigned: "UNASSIGNED"; readonly Disabled: "DISABLED"; readonly Degraded: "DEGRADED"; }; export type GetApiV3NodeProvidersNodeProviderIdNodesIncludeStatus = ClosedEnum; export type GetApiV3NodeProvidersNodeProviderIdNodesRequest = { /** * Node Statuses */ includeStatus?: Array | undefined; /** * Node Provider ID */ nodeProviderId: string; }; /** @internal */ export declare const GetApiV3NodeProvidersNodeProviderIdNodesIncludeStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NodeProvidersNodeProviderIdNodesIncludeStatus$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 GetApiV3NodeProvidersNodeProviderIdNodesIncludeStatus$ { /** @deprecated use `GetApiV3NodeProvidersNodeProviderIdNodesIncludeStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Down: "DOWN"; readonly Up: "UP"; readonly Unassigned: "UNASSIGNED"; readonly Disabled: "DISABLED"; readonly Degraded: "DEGRADED"; }>; /** @deprecated use `GetApiV3NodeProvidersNodeProviderIdNodesIncludeStatus$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 GetApiV3NodeProvidersNodeProviderIdNodesRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NodeProvidersNodeProviderIdNodesRequest$Outbound = { include_status?: Array | undefined; node_provider_id: string; }; /** @internal */ export declare const GetApiV3NodeProvidersNodeProviderIdNodesRequest$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 GetApiV3NodeProvidersNodeProviderIdNodesRequest$ { /** @deprecated use `GetApiV3NodeProvidersNodeProviderIdNodesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodeProvidersNodeProviderIdNodesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodeProvidersNodeProviderIdNodesRequest$Outbound` instead. */ type Outbound = GetApiV3NodeProvidersNodeProviderIdNodesRequest$Outbound; } export declare function getApiV3NodeProvidersNodeProviderIdNodesRequestToJSON(getApiV3NodeProvidersNodeProviderIdNodesRequest: GetApiV3NodeProvidersNodeProviderIdNodesRequest): string; export declare function getApiV3NodeProvidersNodeProviderIdNodesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3nodeprovidersnodeprovideridnodes.d.ts.map