Configuration options for the connection pooler
| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | [optional] | |
| pool_mode | PoolMode | [optional] |
from ionoscloud_dbaas_postgres.models.connection_pooler import ConnectionPooler
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionPooler from a JSON string
connection_pooler_instance = ConnectionPooler.from_json(json)
# print the JSON string representation of the object
print(ConnectionPooler.to_json())
# convert the object into a dict
connection_pooler_dict = connection_pooler_instance.to_dict()
# create an instance of ConnectionPooler from a dict
connection_pooler_from_dict = ConnectionPooler.from_dict(connection_pooler_dict)