You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Total expected disk size per agent per minute in human-readable form
per_second
str
Total expected disk size per agent per second in human-readable form
total
str
Total expected disk size per agent in human-readable form
Example
fromcyperf.models.expected_disk_space_pretty_sizeimportExpectedDiskSpacePrettySize# TODO update the JSON string belowjson="{}"# create an instance of ExpectedDiskSpacePrettySize from a JSON stringexpected_disk_space_pretty_size_instance=ExpectedDiskSpacePrettySize.from_json(json)
# print the JSON string representation of the objectprint(ExpectedDiskSpacePrettySize.to_json())
# convert the object into a dictexpected_disk_space_pretty_size_dict=expected_disk_space_pretty_size_instance.to_dict()
# create an instance of ExpectedDiskSpacePrettySize from a dictexpected_disk_space_pretty_size_from_dict=ExpectedDiskSpacePrettySize.from_dict(expected_disk_space_pretty_size_dict)