Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.53 KB

File metadata and controls

32 lines (24 loc) · 1.53 KB

ServersSoftwareRequirements

Требования к облачному серверу для установки ПО.

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_software_requirements import ServersSoftwareRequirements

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

# convert the object into a dict
servers_software_requirements_dict = servers_software_requirements_instance.to_dict()
# create an instance of ServersSoftwareRequirements from a dict
servers_software_requirements_form_dict = servers_software_requirements.from_dict(servers_software_requirements_dict)

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