| Name |
Type |
Description |
Notes |
| count |
int |
The total number of instances in the cluster (one primary and n-1 secondary). |
|
| ram |
int |
The amount of memory per instance in gigabytes (GB). |
|
| cores |
int |
The number of CPU cores per instance. |
|
| storage_size |
int |
The amount of storage per instance in gigabytes (GB). |
|
from ionoscloud_dbaas_postgres.models.instance_configuration import InstanceConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of InstanceConfiguration from a JSON string
instance_configuration_instance = InstanceConfiguration.from_json(json)
# print the JSON string representation of the object
print(InstanceConfiguration.to_json())
# convert the object into a dict
instance_configuration_dict = instance_configuration_instance.to_dict()
# create an instance of InstanceConfiguration from a dict
instance_configuration_from_dict = InstanceConfiguration.from_dict(instance_configuration_dict)
[Back to Model list] [Back to API list] [Back to README]