Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

File metadata and controls

33 lines (24 loc) · 1.26 KB

ExecutionHistoryResponse

Cluster execution history response.

Properties

Name Type Description Notes
cluster_id str
time_range ApiAnalyticsClustersModelsTimeRange
results List[ClusterExecutionMetric]
summary Dict[str, object] [optional]

Example

from mixpeek.models.execution_history_response import ExecutionHistoryResponse

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

# convert the object into a dict
execution_history_response_dict = execution_history_response_instance.to_dict()
# create an instance of ExecutionHistoryResponse from a dict
execution_history_response_from_dict = ExecutionHistoryResponse.from_dict(execution_history_response_dict)

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