Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.12 KB

File metadata and controls

30 lines (22 loc) · 1.12 KB

RegistryEdit

Properties

Name Type Description Notes
description object Новое описание реестра [optional]
preset_id object ID тарифа. Нельзя передавать вместе с `configuration` [optional]
configuration RegistryInConfiguration [optional]

Example

from timeweb_cloud_api.models.registry_edit import RegistryEdit

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

# convert the object into a dict
registry_edit_dict = registry_edit_instance.to_dict()
# create an instance of RegistryEdit from a dict
registry_edit_form_dict = registry_edit.from_dict(registry_edit_dict)

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