Connection information of the PostgreSQL cluster.
| Name | Type | Description | Notes |
|---|---|---|---|
| datacenter_id | str | The datacenter to connect your instance to. | |
| lan_id | str | The numeric LAN ID to connect your instance to. | |
| primary_instance_address | str | Assigns the IP address and netmask to the cluster's primary instance. Note the following unavailable IP range: 10.208.0.0/12 |
from ionoscloud_dbaas_postgres.models.postgres_cluster_connection import PostgresClusterConnection
# TODO update the JSON string below
json = "{}"
# create an instance of PostgresClusterConnection from a JSON string
postgres_cluster_connection_instance = PostgresClusterConnection.from_json(json)
# print the JSON string representation of the object
print(PostgresClusterConnection.to_json())
# convert the object into a dict
postgres_cluster_connection_dict = postgres_cluster_connection_instance.to_dict()
# create an instance of PostgresClusterConnection from a dict
postgres_cluster_connection_from_dict = PostgresClusterConnection.from_dict(postgres_cluster_connection_dict)