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
Максимальное количество оперативной памяти (в Мб).
disk_min
object
Минимальный размер диска (в Мб).
disk_step
object
Размер шага диска
disk_max
object
Максимальный размер диска (в Мб).
network_bandwidth_min
object
Минимальныая пропускная способноть интернет-канала (в Мб)
network_bandwidth_step
object
Размер шага пропускной способноти интернет-канала (в Мб)
network_bandwidth_max
object
Максимальная пропускная способноть интернет-канала (в Мб)
gpu_min
object
Минимальное количество видеокарт
gpu_max
object
Максимальное количество видеокарт
gpu_step
object
Размер шага видеокарт
Example
fromtimeweb_cloud_api.models.servers_configurator_requirementsimportServersConfiguratorRequirements# TODO update the JSON string belowjson="{}"# create an instance of ServersConfiguratorRequirements from a JSON stringservers_configurator_requirements_instance=ServersConfiguratorRequirements.from_json(json)
# print the JSON string representation of the objectprintServersConfiguratorRequirements.to_json()
# convert the object into a dictservers_configurator_requirements_dict=servers_configurator_requirements_instance.to_dict()
# create an instance of ServersConfiguratorRequirements from a dictservers_configurator_requirements_form_dict=servers_configurator_requirements.from_dict(servers_configurator_requirements_dict)