ModelDeploymentStatusDetails#

class nemo_microservices.types.deployment.ModelDeploymentStatusDetails(*args: Any, **kwargs: Any)

Bases: BaseModel

status: Literal['created', 'pending', 'running', 'cancelled', 'cancelling', 'failed', 'completed', 'ready', 'unknown']

Normalized statuses for all jobs.

  • CREATED: The job is created, but not yet scheduled.

  • PENDING: The job is waiting for resource allocation.

  • RUNNING: The job is currently running.

  • CANCELLING: The job is being cancelled at the user’s request.

  • CANCELLED: The job has been cancelled by the user.

  • CANCELLING: The job is being cancelled at the user’s request.

  • FAILED: The job failed to execute and terminated.

  • COMPLETED: The job has completed successfully.

  • READY: The job is ready to be used.

  • UNKNOWN: The job status is unknown.

description: str | None = None

A description of the status.