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"; import * as models from "../index.js"; export declare const GetApiV4SubnetsCountSubnetSpecializationOrType: { readonly European: "european"; readonly Fiduciary: "fiduciary"; readonly Application: "application"; readonly System: "system"; }; export type GetApiV4SubnetsCountSubnetSpecializationOrType = ClosedEnum; export declare const GetApiV4SubnetsCountSubnetSpecialization: { readonly European: "european"; readonly Fiduciary: "fiduciary"; }; export type GetApiV4SubnetsCountSubnetSpecialization = ClosedEnum; export declare const GetApiV4SubnetsCountFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV4SubnetsCountFormat = ClosedEnum; export declare const GetApiV4SubnetsCountSubnetAuthorization: { readonly Public: "public"; readonly AuthorizedOnly: "authorized_only"; }; export type GetApiV4SubnetsCountSubnetAuthorization = ClosedEnum; export declare const GetApiV4SubnetsCountSubnetType: { readonly Application: "application"; readonly System: "system"; readonly VerifiedApplication: "verified_application"; }; export type GetApiV4SubnetsCountSubnetType = ClosedEnum; export type GetApiV4SubnetsCountRequest = { /** * Subnet Specialization or Type */ subnetSpecializationOrType?: Array | undefined; /** * Subnet Specialization */ subnetSpecialization?: Array | undefined; format?: GetApiV4SubnetsCountFormat | undefined; /** * Subnet Authorization */ subnetAuthorization?: Array | undefined; /** * Subnet Type */ subnetType?: Array | undefined; /** * Data Center ID */ dcId?: string | null | undefined; }; export type GetApiV4SubnetsCountResponse = models.ErrorT | models.CountSubnetsResponse; /** @internal */ export declare const GetApiV4SubnetsCountSubnetSpecializationOrType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV4SubnetsCountSubnetSpecializationOrType$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 GetApiV4SubnetsCountSubnetSpecializationOrType$ { /** @deprecated use `GetApiV4SubnetsCountSubnetSpecializationOrType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly European: "european"; readonly Fiduciary: "fiduciary"; readonly Application: "application"; readonly System: "system"; }>; /** @deprecated use `GetApiV4SubnetsCountSubnetSpecializationOrType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly European: "european"; readonly Fiduciary: "fiduciary"; readonly Application: "application"; readonly System: "system"; }>; } /** @internal */ export declare const GetApiV4SubnetsCountSubnetSpecialization$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV4SubnetsCountSubnetSpecialization$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 GetApiV4SubnetsCountSubnetSpecialization$ { /** @deprecated use `GetApiV4SubnetsCountSubnetSpecialization$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly European: "european"; readonly Fiduciary: "fiduciary"; }>; /** @deprecated use `GetApiV4SubnetsCountSubnetSpecialization$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly European: "european"; readonly Fiduciary: "fiduciary"; }>; } /** @internal */ export declare const GetApiV4SubnetsCountFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV4SubnetsCountFormat$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 GetApiV4SubnetsCountFormat$ { /** @deprecated use `GetApiV4SubnetsCountFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV4SubnetsCountFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV4SubnetsCountSubnetAuthorization$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV4SubnetsCountSubnetAuthorization$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 GetApiV4SubnetsCountSubnetAuthorization$ { /** @deprecated use `GetApiV4SubnetsCountSubnetAuthorization$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Public: "public"; readonly AuthorizedOnly: "authorized_only"; }>; /** @deprecated use `GetApiV4SubnetsCountSubnetAuthorization$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Public: "public"; readonly AuthorizedOnly: "authorized_only"; }>; } /** @internal */ export declare const GetApiV4SubnetsCountSubnetType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV4SubnetsCountSubnetType$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 GetApiV4SubnetsCountSubnetType$ { /** @deprecated use `GetApiV4SubnetsCountSubnetType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Application: "application"; readonly System: "system"; readonly VerifiedApplication: "verified_application"; }>; /** @deprecated use `GetApiV4SubnetsCountSubnetType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Application: "application"; readonly System: "system"; readonly VerifiedApplication: "verified_application"; }>; } /** @internal */ export declare const GetApiV4SubnetsCountRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV4SubnetsCountRequest$Outbound = { subnet_specialization_or_type?: Array | undefined; subnet_specialization?: Array | undefined; format: string; subnet_authorization?: Array | undefined; subnet_type?: Array | undefined; dc_id: string | null; }; /** @internal */ export declare const GetApiV4SubnetsCountRequest$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 GetApiV4SubnetsCountRequest$ { /** @deprecated use `GetApiV4SubnetsCountRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsCountRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsCountRequest$Outbound` instead. */ type Outbound = GetApiV4SubnetsCountRequest$Outbound; } export declare function getApiV4SubnetsCountRequestToJSON(getApiV4SubnetsCountRequest: GetApiV4SubnetsCountRequest): string; export declare function getApiV4SubnetsCountRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiV4SubnetsCountResponse$inboundSchema: z.ZodType; /** @internal */ export type GetApiV4SubnetsCountResponse$Outbound = models.ErrorT$Outbound | models.CountSubnetsResponse$Outbound; /** @internal */ export declare const GetApiV4SubnetsCountResponse$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 GetApiV4SubnetsCountResponse$ { /** @deprecated use `GetApiV4SubnetsCountResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsCountResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsCountResponse$Outbound` instead. */ type Outbound = GetApiV4SubnetsCountResponse$Outbound; } export declare function getApiV4SubnetsCountResponseToJSON(getApiV4SubnetsCountResponse: GetApiV4SubnetsCountResponse): string; export declare function getApiV4SubnetsCountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv4subnetscount.d.ts.map