Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

ExpectedDiskSpaceSize

Properties

Name Type Description Notes
per_minute int Expected disk size that will be used by the current configuration per agent per minute
per_second int Expected disk size that will be used by the current configuration per agent per second
total int Total expected disk size that will be used by the current configuration per agent

Example

from cyperf.models.expected_disk_space_size import ExpectedDiskSpaceSize

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

# convert the object into a dict
expected_disk_space_size_dict = expected_disk_space_size_instance.to_dict()
# create an instance of ExpectedDiskSpaceSize from a dict
expected_disk_space_size_from_dict = ExpectedDiskSpaceSize.from_dict(expected_disk_space_size_dict)

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