import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetApiV4SubnetsSubnetIdRequest = { /** * Subnet ID */ subnetId: string; }; export type GetApiV4SubnetsSubnetIdResponse = models.ErrorT | models.Subnet; /** @internal */ export declare const GetApiV4SubnetsSubnetIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV4SubnetsSubnetIdRequest$Outbound = { subnet_id: string; }; /** @internal */ export declare const GetApiV4SubnetsSubnetIdRequest$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 GetApiV4SubnetsSubnetIdRequest$ { /** @deprecated use `GetApiV4SubnetsSubnetIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsSubnetIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsSubnetIdRequest$Outbound` instead. */ type Outbound = GetApiV4SubnetsSubnetIdRequest$Outbound; } export declare function getApiV4SubnetsSubnetIdRequestToJSON(getApiV4SubnetsSubnetIdRequest: GetApiV4SubnetsSubnetIdRequest): string; export declare function getApiV4SubnetsSubnetIdRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiV4SubnetsSubnetIdResponse$inboundSchema: z.ZodType; /** @internal */ export type GetApiV4SubnetsSubnetIdResponse$Outbound = models.ErrorT$Outbound | models.Subnet$Outbound; /** @internal */ export declare const GetApiV4SubnetsSubnetIdResponse$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 GetApiV4SubnetsSubnetIdResponse$ { /** @deprecated use `GetApiV4SubnetsSubnetIdResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsSubnetIdResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV4SubnetsSubnetIdResponse$Outbound` instead. */ type Outbound = GetApiV4SubnetsSubnetIdResponse$Outbound; } export declare function getApiV4SubnetsSubnetIdResponseToJSON(getApiV4SubnetsSubnetIdResponse: GetApiV4SubnetsSubnetIdResponse): string; export declare function getApiV4SubnetsSubnetIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv4subnetssubnetid.d.ts.map