Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.5 KB

File metadata and controls

32 lines (24 loc) · 1.5 KB

RegistryIn

Properties

Name Type Description Notes
name object Имя реестра. Должно быть уникальным, от 3 до 48 символов, начинаться и заканчиваться буквой или числом, содержать только латинские буквы в нижнем регистре, цифры и символ «-», без пробелов
description object Описание реестра [optional]
preset_id object ID тарифа. Нельзя передавать вместе с `configuration` [optional]
configuration RegistryInConfiguration [optional]
project_id object ID проекта [optional]

Example

from timeweb_cloud_api.models.registry_in import RegistryIn

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

# convert the object into a dict
registry_in_dict = registry_in_instance.to_dict()
# create an instance of RegistryIn from a dict
registry_in_form_dict = registry_in.from_dict(registry_in_dict)

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