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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • VolumeMount represents a volume mount for the endpoint's container.

            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.ai.v1.JobSpec.VolumeMount"

    Contains the fully qualified protobuf type name.

    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

    Type Declaration

    sourcePath: string

    Path inside the source volume.

    Optional.