@nebius/js-sdk - v0.1.41
    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;
        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 of an ID of Nebius Storage bucket or filesystem.

    sourcePath: string

    Path inside the source volume.

    Optional.