nemo_microservices.types.deployment.model_deployment_status_details#

Module Contents#

Classes#

API#

class nemo_microservices.types.deployment.model_deployment_status_details.ModelDeploymentStatusDetails(/, **data: Any)#

Bases: nemo_microservices._models.BaseModel

description: str | None#

None

A description of the status.

status: nemo_microservices.types.shared.job_status.JobStatus#

None

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.