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

    Cluster specification

    interface ClusterSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.msp.mlflow.v1alpha1.ClusterSpec";
        adminPassword: string;
        adminUsername: string;
        description: string;
        networkId: string;
        publicAccess: boolean;
        serviceAccountId: string;
        size: string;
        storageBucketName: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.msp.mlflow.v1alpha1.ClusterSpec"
    adminPassword: string

    MLflow admin password.

    adminUsername: string

    MLflow admin username.

    description: string

    Description of the cluster.

    networkId: string

    ID of the vpc network.

    publicAccess: boolean

    Either make cluster public accessible or accessible only via private VPC.

    serviceAccountId: string

    Id of the service account that will be used to access S3 bucket (and create one if not provided).

    size: string

    Size defines how much resources will be allocated to mlflow See supported sizes in the documentation. Default size is the smallest available in the region.

    storageBucketName: string

    Name of the Nebius S3 bucket for MLflow artifacts. If not provided, will be created under the same parent.