iqm.iqm_client.models.Status#
- class iqm.iqm_client.models.Status(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)#
-
Status of a job.
Attributes
Job has been received but nothing has been done about it.
PROCESSING
Job has passed initial checks and will proceed to compilation.
Job has been queued for compilation.
Job has been compiled and is queued for execution.
Job has been compiled to a low-level representation.
Job has been executed and results are available.
Execution or compilation failed.
User caneceled the execution.
Job is set to be deleted.
Job was supposed to be deleted but deletion failed.
Job deleted from the database.
Job is in a state not recognized by this version of the client.
Methods
_generate_next_value_
(start, count, last_values)Generate the next value when not given.
Statuses from which the execution can't continue.
_new_member_
(**kwargs)Create and return a new object.
_value_repr_
()Return repr(self).
__format__
(format_spec)Return a formatted version of the string as described by format_spec.
__new__
(value)__repr__
()Return repr(self).
__str__
()Return str(self).
- RECEIVED = 'received'#
Job has been received but nothing has been done about it.
- ACCEPTED = 'accepted'#
Job has passed initial checks and will proceed to compilation.
- PENDING_COMPILATION = 'pending compilation'#
Job has been queued for compilation.
- PENDING_EXECUTION = 'pending execution'#
Job has been compiled and is queued for execution.
- COMPILED = 'compiled'#
Job has been compiled to a low-level representation.
- READY = 'ready'#
Job has been executed and results are available.
- FAILED = 'failed'#
Execution or compilation failed.
- ABORTED = 'aborted'#
User caneceled the execution.
- PENDING_DELETION = 'pending deletion'#
Job is set to be deleted.
- DELETION_FAILED = 'deletion failed'#
Job was supposed to be deleted but deletion failed.
- DELETED = 'deleted'#
Job deleted from the database.
- UNKNOWN = 'unknown'#
Job is in a state not recognized by this version of the client.