@nebius/js-sdk - v0.1.4
    Preparing search index...

    Interface RecordSpec

    DNS record specification

    interface RecordSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.dns.v1.RecordSpec";
        data: string;
        deletionProtection: boolean;
        relativeName: string;
        ttl: Long;
        type: RecordSpec_RecordType;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.dns.v1.RecordSpec"
    data: string

    Record data in text format

    This should be the RDATA part of this Resource Record's presentation (zonefile) format. E.g., 10 xyz.tuv for a @ 600 IN MX 10 xyz.tuv. resource record in a zonefile

    deletionProtection: boolean

    Mark this record as delete-protected Delete-protected records can only be deleted by explicitly calling RecordService/Delete API with force flag set to true

    relativeName: string

    Zone-relative name of this record (e.g., www for www.<parent zone's domain name>) Use @ for records in zone apex (that is, records that have the same domain name as the zone itself) To see the resolved absolute domain name, see Record.status.effective_fqdn

    ttl: Long

    Record TTL. If absent or negative, will be assumed to be the default value (600)

    Record type