@nebius/js-sdk - v0.1.4
    Preparing search index...
    interface JobContainerSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.msp.serverless.v1alpha1.JobContainerSpec";
        args: string[];
        command: string;
        envs: { [key: string]: string };
        image: string;
        maxRetries: Long;
        replicaCount: Long;
        sensitiveEnvs: { [key: string]: string };
        template?: JobTemplateSpec;
        timeoutSeconds: Long;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.msp.serverless.v1alpha1.JobContainerSpec"
    args: string[]

    Command args

    command: string

    Job command

    envs: { [key: string]: string }

    Environment variables

    image: string

    Image name

    maxRetries: Long

    Max retries (0 - no retries)

    replicaCount: Long

    Replica count

    sensitiveEnvs: { [key: string]: string }

    Environment variables with sensitive data

    template?: JobTemplateSpec

    Container resource template

    timeoutSeconds: Long

    Job timeout in seconds (0 - no timeout)