Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

UpgradeAutoScalingType.md

File metadata and controls

30 lines (21 loc) · 1.14 KB

UpgradeAutoScalingType

Properties

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

Example

from pfruck_contabo.models.upgrade_auto_scaling_type import UpgradeAutoScalingType

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

# convert the object into a dict
upgrade_auto_scaling_type_dict = upgrade_auto_scaling_type_instance.to_dict()
# create an instance of UpgradeAutoScalingType from a dict
upgrade_auto_scaling_type_from_dict = UpgradeAutoScalingType.from_dict(upgrade_auto_scaling_type_dict)

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