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

    Interface JobStatus

    JobStatus represents the status of a VM app.

    interface JobStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.ai.v1.JobStatus";
        instances: JobInstanceStatus[];
        privateEndpoints: string[];
        publicEndpoints: string[];
        state: JobStatus_State;
        stateDetails?: JobStateDetails;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.ai.v1.JobStatus"
    instances: JobInstanceStatus[]

    Status of individual job instances.

    privateEndpoints: string[]

    Private endpoints to access the workload.

    publicEndpoints: string[]

    Public endpoints to access the workload.

    State of the job.

    stateDetails?: JobStateDetails

    Details of the job's state.