| Name | Type | Description | Notes |
|---|---|---|---|
| name | object | Название кластера базы данных. | [optional] |
| preset_id | object | ID тарифа. Нельзя передавать вместе с `configuration` | [optional] |
| configuration | UpdateClusterConfiguration | [optional] | |
| config_parameters | Mysql | [optional] | |
| hash_type | object | Тип хеширования базы данных (mysql | postgres). |
| description | object | Описание кластера базы данных | [optional] |
| is_enabled_public_network | object | Доступность публичного IP-адреса | [optional] |
| is_enabled_public_ipv6 | object | Использование публичного IPv6-адреса. | [optional] |
| is_secure_connection_enable | object | Включить защищенное подключение к кластеру базы данных | [optional] |
| maintenance_slot | CreateClusterMaintenanceSlot | [optional] | |
| disk_autoscaling | CreateClusterDiskAutoscaling | [optional] |
from timeweb_cloud_api.models.update_cluster import UpdateCluster
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateCluster from a JSON string
update_cluster_instance = UpdateCluster.from_json(json)
# print the JSON string representation of the object
print UpdateCluster.to_json()
# convert the object into a dict
update_cluster_dict = update_cluster_instance.to_dict()
# create an instance of UpdateCluster from a dict
update_cluster_form_dict = update_cluster.from_dict(update_cluster_dict)