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

    Interface Record

    API Resource: DNS Resource Record (RR), an information entry about a specific domain

    Each record is contained within a DNS zone, which is a container for DNS data of a specific domain, and, possibly, its subdomains DNS zones are represented in this API by the Zone API Resource which is managed by the ZoneService

    interface Record {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.dns.v1.Record";
        metadata?: ResourceMetadata;
        spec?: RecordSpec;
        status?: RecordStatus;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.dns.v1.Record"
    metadata?: ResourceMetadata

    DNS record metadata metadata.parent_id must be a DNS zone ID

    spec?: RecordSpec

    DNS record specification, including its relative name, type, data and TTL

    status?: RecordStatus

    DNS record status, including e.g. its effective FQDN (fully-qualified domain name)