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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Request to get the DNS zone by its ID and, optionally, its resource version

            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.GetZoneRequest"

    Contains the fully qualified protobuf type name.

    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