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

    Interface JobStateDetails

    Job state details.

    interface JobStateDetails {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.ai.v1.JobStateDetails";
        code: string;
        message: string;
        serviceError?: ServiceError;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Job state details.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Job state details.

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

    Contains the fully qualified protobuf type name.

    code: string

    Short state description.

    message: string

    Detailed human-readable description.

    serviceError?: ServiceError

    Structured error details for the failure, if available. For quota-related failures, service_error.details.quota_failure is populated with the quota violations.