Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
38 lines (29 loc) · 1.43 KB

File metadata and controls

38 lines (29 loc) · 1.43 KB

Connection

Full representation of the connection.

Properties

Name Type Description Notes
connection_id str The connection ID. [optional]
conn_type str The connection type. [optional]
description str The description of the connection. [optional]
host str Host of the connection. [optional]
login str Login of the connection. [optional]
var_schema str Schema of the connection. [optional]
port int Port of the connection. [optional]
password str Password of the connection. [optional]
extra str Other values that cannot be put into another field, e.g. RSA keys. [optional]

Example

from titanium_airflow_client.models.connection import Connection

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

# convert the object into a dict
connection_dict = connection_instance.to_dict()
# create an instance of Connection from a dict
connection_from_dict = Connection.from_dict(connection_dict)

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