Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

ConnectionPooler

Configuration options for the connection pooler

Properties

Name Type Description Notes
enabled bool [optional]
pool_mode PoolMode [optional]

Example

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)

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