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] |
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)