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

    Interface Artifact

    Represents the nebius.registry.v1.Artifact protobuf message.

    interface Artifact {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.registry.v1.Artifact";
        createdAt?: Dayjs;
        digest: string;
        id: string;
        mediaType: string;
        name: string;
        size: Long;
        status: Artifact_Status;
        tags: string[];
        type: Artifact_Type;
        updatedAt?: Dayjs;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the nebius.registry.v1.Artifact protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.registry.v1.Artifact protobuf message.

            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.registry.v1.Artifact"

    Contains the fully qualified protobuf type name.

    createdAt?: Dayjs

    Contains the created_at protobuf field.

    digest: string

    Contains the digest protobuf field.

    id: string

    Contains the id protobuf field.

    mediaType: string

    Contains the media_type protobuf field.

    name: string

    Contains the name protobuf field.

    size: Long

    Contains the size protobuf field.

    Contains the status protobuf field.

    tags: string[]

    List of tags associated with the artifact. Example: ["v1.0", "latest", "stable"].

    Contains the type protobuf field.

    updatedAt?: Dayjs

    Contains the updated_at protobuf field.