import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * An enumerated field indicating what type of data is in the "services.dns.additionals.response" field. For example, "A" signifies that the value in "services.dns.additionals.response" is an IPv4 address for the FQDN in "services.dns.additionals.name". */ export declare const DnsResourceRecordType: { readonly Unknown: ""; readonly A: "a"; readonly Txt: "txt"; readonly Ns: "ns"; }; /** * An enumerated field indicating what type of data is in the "services.dns.additionals.response" field. For example, "A" signifies that the value in "services.dns.additionals.response" is an IPv4 address for the FQDN in "services.dns.additionals.name". */ export type DnsResourceRecordType = OpenEnum; export type DnsResourceRecord = { /** * The Fully Qualified Domain Name (FQDN) this RR is for. */ name?: string | undefined; /** * The RDATA field of the RR. */ response?: string | undefined; /** * An enumerated field indicating what type of data is in the "services.dns.additionals.response" field. For example, "A" signifies that the value in "services.dns.additionals.response" is an IPv4 address for the FQDN in "services.dns.additionals.name". */ type?: DnsResourceRecordType | undefined; }; /** @internal */ export declare const DnsResourceRecordType$inboundSchema: z.ZodType; /** @internal */ export declare const DnsResourceRecord$inboundSchema: z.ZodType; export declare function dnsResourceRecordFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dnsresourcerecord.d.ts.map