Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

UserEnhancedMetricsResponse

Properties

Name Type Description Notes
install_command str One-liner the user can run inside the VM to install the agent when enabling. Omitted when disabling. [optional]
message str [optional]
metrics UserEnhancedMetricsResponseFields [optional]
status bool [optional]

Example

from hyperstack.models.user_enhanced_metrics_response import UserEnhancedMetricsResponse

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

# convert the object into a dict
user_enhanced_metrics_response_dict = user_enhanced_metrics_response_instance.to_dict()
# create an instance of UserEnhancedMetricsResponse from a dict
user_enhanced_metrics_response_from_dict = UserEnhancedMetricsResponse.from_dict(user_enhanced_metrics_response_dict)

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