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

    Interface Zone

    API Resource: DNS zone, a container for DNS data

    Each DNS zone starts at a particular domain within the hierarchical DNS namespace tree, e.g., example.com., and can also include its subdomains, e.g., sales.example.com. DNS Zones contain Resource Records (RRs), which are individual information entries about the domain(s), e.g., a domain's IP address See the graphical explanation of DNS zones and Resource Records on Wikipedia

    A Resource Record is represented in this API by the Record API Resource which is managed by the RecordService

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

    Indexable

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

    Properties

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

    DNS zone metadata metadata.parent_id must be an IAM Container ID

    spec?: ZoneSpec

    DNS zone specification, including its domain name and scope

    status?: ZoneStatus

    DNS zone status, including e.g. the number of records in the zone