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

    Interface GetZoneRequest

    Request to get the DNS zone by its ID and, optionally, its resource version

    interface GetZoneRequest {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.dns.v1.GetZoneRequest";
        id: string;
        resourceVersion: Long;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

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

    Zone ID

    resourceVersion: Long

    Optional: expected zone version (metadata.resource_version)

    • If specified, the requested version will be returned if possible (if the version has changed, you will get a FAILED_PRECONDITION error)
    • If not specified or set to 0, the latest zone version will be returned