import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IpmiCapabilitiesAuthStatus = { /** * If true, the server allows anonymous login. */ anonymousLoginEnabled?: boolean | undefined; /** * If true, each message must be authenticated. */ authEachMessage?: boolean | undefined; /** * If true, the server has anonymous users. */ hasAnonymousUsers?: boolean | undefined; /** * If true, the server supports named users. */ hasNamedUsers?: boolean | undefined; /** * The KG field. */ twoKeyLoginRequired?: boolean | undefined; /** * If true, user authentication is disabled. */ userAuthDisabled?: boolean | undefined; }; /** @internal */ export declare const IpmiCapabilitiesAuthStatus$inboundSchema: z.ZodType; export declare function ipmiCapabilitiesAuthStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmicapabilitiesauthstatus.d.ts.map