Database Models
Deployments
Attributes of Deployment Data
Attribute |
Type |
Description |
|---|---|---|
deployment_id |
int |
Automatically generated database id. Use the id to fetch this information from the database. |
deployment_name |
str (optional) |
Optional name for a deployment |
user_id |
str |
A user_id associated to the deployment |
created |
Date |
Date of the creation of a deployment |
Jobs
Attributes of Job Data
Attribute |
Type |
Description |
|---|---|---|
job_id |
int |
Automatically generated database id. Use the id to fetch this information from the database. |
job_name |
str (optional) |
Optional name for a job |
user_id |
str |
A user_id associated to the job |
deployment_id |
int |
A deployment_id associated with the job |
started_at |
datetime (optional) |
The moment the job was scheduled. (default |
finished_at |
Optional[datetime] (optional) |
The moment the job finished successfully or with an error. |
task_status |
Optional[str] (optional) |
The status of a job, can only be |
results |
List[Job] (optional) |
The output data (files) of the job |