Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

AutoScalingTypeRequest.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

AutoScalingTypeRequest

Properties

Name Type Description Notes
state str State of the autoscaling for the current object storage.
size_limit_tb float Autoscaling size limit for the current object storage.

Example

from pfruck_contabo.models.auto_scaling_type_request import AutoScalingTypeRequest

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

# convert the object into a dict
auto_scaling_type_request_dict = auto_scaling_type_request_instance.to_dict()
# create an instance of AutoScalingTypeRequest from a dict
auto_scaling_type_request_from_dict = AutoScalingTypeRequest.from_dict(auto_scaling_type_request_dict)

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