@nebius/js-sdk - v0.2.54
    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

      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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • 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

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.dns.v1.Record"

    Contains the fully qualified protobuf type name.

    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)