import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SnmpSystemServices } from "./snmpsystemservices.js"; export type SnmpSystem = { /** * 1.3.6.1.2.1.1.4 - Contact info */ contact?: string | undefined; /** * 1.3.6.1.2.1.1.1 - Description of entity */ desc?: string | undefined; /** * 1.3.6.1.2.1.1.3 - 1/100ths of sec */ initTime?: number | undefined; /** * 1.3.6.1.2.1.1.6 - Physical location */ location?: string | undefined; /** * 1.3.6.1.2.1.1.5 - Name, usually FQDN */ name?: string | undefined; /** * 1.3.6.1.2.1.1.2 - Vendor ID */ objectId?: string | undefined; services?: SnmpSystemServices | undefined; }; /** @internal */ export declare const SnmpSystem$inboundSchema: z.ZodType; export declare function snmpSystemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=snmpsystem.d.ts.map