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

Latest commit

 

History

History
29 lines (21 loc) · 1.08 KB

JobCluster.md

File metadata and controls

29 lines (21 loc) · 1.08 KB

JobCluster

Properties

Name Type Description Notes
job_cluster_key str A unique name for the job cluster. This field is required and must be unique within the job. `JobTaskSettings` may refer to this field to determine which cluster to launch for the task execution.
new_cluster NewCluster [optional]

Example

from databricks_jobs.models.job_cluster import JobCluster

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

# convert the object into a dict
job_cluster_dict = job_cluster_instance.to_dict()
# create an instance of JobCluster from a dict
job_cluster_form_dict = job_cluster.from_dict(job_cluster_dict)

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