@nebius/js-sdk - v0.2.54
    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";
        finishedAt?: Dayjs;
        instances: JobInstanceStatus[];
        privateEndpoints: string[];
        publicEndpoints: string[];
        startedAt?: Dayjs;
        state: JobStatus_State;
        stateDetails?: JobStateDetails;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      JobStatus represents the status of a VM app.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • JobStatus represents the status of a VM app.

            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.JobStatus"

    Contains the fully qualified protobuf type name.

    finishedAt?: Dayjs

    Time when the job workload finished.

    instances: JobInstanceStatus[]

    Status of individual job instances.

    privateEndpoints: string[]

    Private endpoints to access the workload.

    publicEndpoints: string[]

    Public endpoints to access the workload.

    startedAt?: Dayjs

    Time when the job workload started.

    State of the job.

    stateDetails?: JobStateDetails

    Details of the job's state.