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

Latest commit

 

History

History
36 lines (28 loc) · 1.54 KB

EventDetails.md

File metadata and controls

36 lines (28 loc) · 1.54 KB

EventDetails

Properties

Name Type Description Notes
current_num_workers int The number of nodes in the cluster. [optional]
target_num_workers int The targeted number of nodes in the cluster. [optional]
previous_attributes AzureAttributes [optional]
attributes AzureAttributes [optional]
previous_cluster_size ClusterSize [optional]
cluster_size ClusterSize [optional]
cause ResizeCause [optional]
reason TerminationReason [optional]
user str The user that caused the event to occur. (Empty if it was done by Azure Databricks.) [optional]

Example

from databricks_jobs.models.event_details import EventDetails

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

# convert the object into a dict
event_details_dict = event_details_instance.to_dict()
# create an instance of EventDetails from a dict
event_details_form_dict = event_details.from_dict(event_details_dict)

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