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.14 KB

ClusterLibraryStatuses.md

File metadata and controls

29 lines (21 loc) · 1.14 KB

ClusterLibraryStatuses

Properties

Name Type Description Notes
cluster_id str Unique identifier for the cluster. [optional]
library_statuses List[LibraryFullStatus] Status of all libraries on the cluster. [optional]

Example

from databricks_jobs.models.cluster_library_statuses import ClusterLibraryStatuses

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

# convert the object into a dict
cluster_library_statuses_dict = cluster_library_statuses_instance.to_dict()
# create an instance of ClusterLibraryStatuses from a dict
cluster_library_statuses_form_dict = cluster_library_statuses.from_dict(cluster_library_statuses_dict)

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