import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AutonomousSystem = { /** * The ASN (autonomous system number) of the host's autonomous system. */ asn?: number | undefined; /** * The autonomous system's CIDR. */ bgpPrefix?: string | undefined; /** * The autonomous system's two-letter ISO 3166-1 alpha-2 country code (US, CN, GB, RU, ...). */ countryCode?: string | undefined; /** * Brief description of the autonomous system. */ description?: string | undefined; /** * The friendly name of the autonomous system. */ name?: string | undefined; /** * The name of the organization managning the autonomous system. */ organization?: string | undefined; }; /** @internal */ export declare const AutonomousSystem$inboundSchema: z.ZodType; export declare function autonomousSystemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=autonomoussystem.d.ts.map