Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.17 KB

File metadata and controls

30 lines (22 loc) · 1.17 KB

RegistryInConfiguration

Параметры конфигурации. Нельзя передавать вместе с preset_id.

Properties

Name Type Description Notes
id object ID конфигуратора
disk object Размер диска в ГБ

Example

from timeweb_cloud_api.models.registry_in_configuration import RegistryInConfiguration

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

# convert the object into a dict
registry_in_configuration_dict = registry_in_configuration_instance.to_dict()
# create an instance of RegistryInConfiguration from a dict
registry_in_configuration_form_dict = registry_in_configuration.from_dict(registry_in_configuration_dict)

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