iqm.iqm_client.iqm_client.RunStatus#

class iqm.iqm_client.iqm_client.RunStatus(*, status, message=None, warnings=None)#

Bases: BaseModel

Status of a circuit execution job.

Attributes

model_computed_fields

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

model_fields

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

status

current status of the job, in {'pending compilation', 'pending execution', 'ready', 'failed', 'aborted'}

message

if the job failed, an error message

warnings

list of warning messages

Methods

from_dict(inp)

Parses the result from a dict.

Parameters:
status: Status#

current status of the job, in {'pending compilation', 'pending execution', 'ready', 'failed', 'aborted'}

message: str | None#

if the job failed, an error message

warnings: list[str] | None#

list of warning messages

static from_dict(inp)#

Parses the result from a dict.

Parameters:

inp (dict[str, str | dict]) – value to parse, has to map to RunResult

Returns:

parsed job status

Return type:

RunStatus

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}#

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

model_fields: ClassVar[dict[str, FieldInfo]] = {'message': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'status': FieldInfo(annotation=Status, required=True), 'warnings': FieldInfo(annotation=Union[list[str], NoneType], required=False, default=None)}#

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.