numerous.sdk.models.job module#

Jobs represent the things that run on the numerous platform, including the context in which code using the SDK is running.

This module contains the definition of Job and the implementation of its instances’ creation.

class numerous.sdk.models.job.Job(id, name, is_main, parameters, time)#

Bases: object

A job in a numerous.sdk.models.scenario.Scenario

static from_document(job_id, data, file_manager_client, status_handler, last_hibernate_time=None)#
Return type:

Job

id: str#
is_main: bool#
name: str#
parameters: dict[str, Parameter]#
time: JobTime#