Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.49 KB

File metadata and controls

32 lines (24 loc) · 1.49 KB

ServersOsRequirements

Требования к облачному серверу для установки операционной системы.

Properties

Name Type Description Notes
cpu_min object Минимальной значение процессора. [optional]
disk_min object Минимальное значение диска. [optional]
ram_min object Минимальное значение оперативной памяти. [optional]
bandwidth_min object Минимальное значение пропускной способности. [optional]

Example

from timeweb_cloud_api.models.servers_os_requirements import ServersOsRequirements

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

# convert the object into a dict
servers_os_requirements_dict = servers_os_requirements_instance.to_dict()
# create an instance of ServersOsRequirements from a dict
servers_os_requirements_form_dict = servers_os_requirements.from_dict(servers_os_requirements_dict)

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