| Name | Type | Description | Notes |
|---|---|---|---|
| name | object | Название кластера базы данных. | |
| type | DbType | ||
| admin | CreateClusterAdmin | [optional] | |
| instance | CreateClusterInstance | [optional] | |
| hash_type | object | Тип хеширования базы данных (mysql | postgres). |
| preset_id | object | ID тарифа. Нельзя передавать вместе с `configurator_id` | [optional] |
| configurator_id | object | ID конфигуратора. Нельзя передавать вместе с `preset_id` | [optional] |
| project_id | object | ID проекта. | [optional] |
| config_parameters | ConfigParameters | [optional] | |
| replication | DbReplication | [optional] | |
| network | Network | [optional] | |
| description | object | Описание кластера базы данных | [optional] |
| availability_zone | AvailabilityZone | [optional] | |
| auto_backups | CreateDbAutoBackups | [optional] |
from timeweb_cloud_api.models.create_cluster import CreateCluster
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCluster from a JSON string
create_cluster_instance = CreateCluster.from_json(json)
# print the JSON string representation of the object
print CreateCluster.to_json()
# convert the object into a dict
create_cluster_dict = create_cluster_instance.to_dict()
# create an instance of CreateCluster from a dict
create_cluster_form_dict = create_cluster.from_dict(create_cluster_dict)