Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

LogVolumeUsageResult

Properties

Name Type Description Notes
log_volume_usage_items List[LogVolumeUsageItem]

Example

from instana_client.models.log_volume_usage_result import LogVolumeUsageResult

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

# convert the object into a dict
log_volume_usage_result_dict = log_volume_usage_result_instance.to_dict()
# create an instance of LogVolumeUsageResult from a dict
log_volume_usage_result_from_dict = LogVolumeUsageResult.from_dict(log_volume_usage_result_dict)

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