Name | Type | Description | Notes |
---|---|---|---|
tasks | List[RunSubmitTaskSettings] | [optional] | |
run_name | str | An optional name for the run. The default value is `Untitled`. | [optional] |
webhook_notifications | WebhookNotifications | [optional] | |
git_source | GitSource | [optional] | |
timeout_seconds | int | An optional timeout applied to each run of this job. The default behavior is to have no timeout. | [optional] |
idempotency_token | str | An optional token that can be used to guarantee the idempotency of job run requests. If a run with the provided token already exists, the request does not create a new run but returns the ID of the existing run instead. If a run with the provided token is deleted, an error is returned. If you specify the idempotency token, upon failure you can retry until the request succeeds. Databricks guarantees that exactly one run is launched with that idempotency token. This token must have at most 64 characters. For more information, see How to ensure idempotency for jobs. | [optional] |
access_control_list | List[AccessControlRequest] | List of permissions to set on the job. | [optional] |
from databricks_jobs.models.jobs_runs_submit_request import JobsRunsSubmitRequest
# TODO update the JSON string below
json = "{}"
# create an instance of JobsRunsSubmitRequest from a JSON string
jobs_runs_submit_request_instance = JobsRunsSubmitRequest.from_json(json)
# print the JSON string representation of the object
print JobsRunsSubmitRequest.to_json()
# convert the object into a dict
jobs_runs_submit_request_dict = jobs_runs_submit_request_instance.to_dict()
# create an instance of JobsRunsSubmitRequest from a dict
jobs_runs_submit_request_form_dict = jobs_runs_submit_request.from_dict(jobs_runs_submit_request_dict)