Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 1.2 KB

JobsUpdateRequest.md

File metadata and controls

30 lines (22 loc) · 1.2 KB

JobsUpdateRequest

Properties

Name Type Description Notes
job_id int The canonical identifier of the job to update. This field is required.
new_settings JobSettings [optional]
fields_to_remove List[str] Remove top-level fields in the job settings. Removing nested fields is not supported. This field is optional. [optional]

Example

from databricks_jobs.models.jobs_update_request import JobsUpdateRequest

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

# convert the object into a dict
jobs_update_request_dict = jobs_update_request_instance.to_dict()
# create an instance of JobsUpdateRequest from a dict
jobs_update_request_form_dict = jobs_update_request.from_dict(jobs_update_request_dict)

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