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
New monthly object storage size limit for autoscaling if enabled.
[optional]
total_purchased_space_tb
float
New total object storage limit. If this number is larger than before you will also be billed for the added storage space. No downgrade possible.
[optional]
Example
frompfruck_contabo.models.upgrade_object_storage_requestimportUpgradeObjectStorageRequest# TODO update the JSON string belowjson="{}"# create an instance of UpgradeObjectStorageRequest from a JSON stringupgrade_object_storage_request_instance=UpgradeObjectStorageRequest.from_json(json)
# print the JSON string representation of the objectprint(UpgradeObjectStorageRequest.to_json())
# convert the object into a dictupgrade_object_storage_request_dict=upgrade_object_storage_request_instance.to_dict()
# create an instance of UpgradeObjectStorageRequest from a dictupgrade_object_storage_request_from_dict=UpgradeObjectStorageRequest.from_dict(upgrade_object_storage_request_dict)