Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

JobConfigRequest

Optional per-job configuration overrides.

Properties

Name Type Description Notes
max_retries int [optional]
priority int Higher is claimed first within a queue (ties: oldest first). [optional]
queue str Override the destination queue. [optional]
timeout int Per-attempt timeout, in seconds. [optional]

Example

from queueflow.models.job_config_request import JobConfigRequest

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

# convert the object into a dict
job_config_request_dict = job_config_request_instance.to_dict()
# create an instance of JobConfigRequest from a dict
job_config_request_from_dict = JobConfigRequest.from_dict(job_config_request_dict)

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