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

    Interface JobSpec_VolumeMount

    VolumeMount represents a volume mount for the endpoint's container.

    interface JobSpec_VolumeMount {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.ai.v1.JobSpec.VolumeMount";
        containerPath: string;
        mode: JobSpec_VolumeMount_Mode;
        source: string;
        sourceConfig?: {
            $case: "s3Config";
            s3Config: JobSpec_VolumeMount_S3Config;
        };
        sourcePath: string;
        [key: symbol]: Uint8Array<ArrayBufferLike>
        | (() => unknown)
        | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.ai.v1.JobSpec.VolumeMount"
    containerPath: string

    Path inside the endpoint's container where the volume is mounted.

    Must be an absolute path.

    Mount mode.

    source: string

    Source of the volume mount.

    Can be a name or an ID of Nebius Storage bucket or filesystem, or an S3 URI (e.g. "s3://bucket-name") when using external S3 storage.

    sourceConfig?: { $case: "s3Config"; s3Config: JobSpec_VolumeMount_S3Config }

    Source Config

    sourcePath: string

    Path inside the source volume.

    Optional.