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) · 994 Bytes

ClusterLogConf.md

File metadata and controls

29 lines (21 loc) · 994 Bytes

ClusterLogConf

Properties

Name Type Description Notes
dbfs DbfsStorageInfo [optional]
s3 S3StorageInfo [optional]

Example

from databricks_jobs.models.cluster_log_conf import ClusterLogConf

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

# convert the object into a dict
cluster_log_conf_dict = cluster_log_conf_instance.to_dict()
# create an instance of ClusterLogConf from a dict
cluster_log_conf_form_dict = cluster_log_conf.from_dict(cluster_log_conf_dict)

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