Skip to content

TransformationJob

Properties

Name Type Description Notes
configuration_id int [optional]
create_time datetime
dry_run bool [optional] [default to False]
end_time datetime [optional]
id int
image_reference TransformationImageReference
input_accessions List[str]
memory_size str [optional]
status TransformationStatus
volume_size str [optional]

Example

from odm_api.models.transformation_job import TransformationJob

# TODO update the JSON string below
json = "{}"
# create an instance of TransformationJob from a JSON string
transformation_job_instance = TransformationJob.from_json(json)
# print the JSON string representation of the object
print(TransformationJob.to_json())

# convert the object into a dict
transformation_job_dict = transformation_job_instance.to_dict()
# create an instance of TransformationJob from a dict
transformation_job_from_dict = TransformationJob.from_dict(transformation_job_dict)
[Back to Model list] [Back to API list] [Back to README]