Skip to content

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 1.13 KB

JobArraySpec.md

File metadata and controls

executable file
·
32 lines (23 loc) · 1.13 KB

JobArraySpec

Properties

Name Type Description Notes
name str Name of job array - only required for more than one job [optional] [default to 'Job Array']
config JobConfiguration
jobs List[JobDataBinding] List of job specs to launch
common_data DataSpec [optional]

Example

from epiccore.models.job_array_spec import JobArraySpec

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

# convert the object into a dict
job_array_spec_dict = job_array_spec_instance.to_dict()
# create an instance of JobArraySpec from a dict
job_array_spec_form_dict = job_array_spec.from_dict(job_array_spec_dict)

[Back to Model list] [Back to API list] [Back to README]