Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

File metadata and controls

35 lines (26 loc) · 1.32 KB

ConnectionConfig

Connector connection parameters. password is write-only.

Properties

Name Type Description Notes
host str
port int [optional]
database str
username str
password str
ssl bool Encrypt the connection with TLS. Enable for managed cloud databases that require it (e.g. Alibaba/Tencent RDS); leave off for trusted private-network databases. Encryption only — the server certificate is not verified. [optional] [default to False]

Example

from ksapi.models.connection_config import ConnectionConfig

# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionConfig from a JSON string
connection_config_instance = ConnectionConfig.from_json(json)
# print the JSON string representation of the object
print(ConnectionConfig.to_json())

# convert the object into a dict
connection_config_dict = connection_config_instance.to_dict()
# create an instance of ConnectionConfig from a dict
connection_config_from_dict = ConnectionConfig.from_dict(connection_config_dict)

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