ConnectionResponse

Connection serializer for responses.

Properties

NameTypeDescriptionNotes
conn_typestr
connection_idstr
descriptionstr[optional]
extrastr[optional]
hoststr[optional]
loginstr[optional]
passwordstr[optional]
portint[optional]
var_schemastr[optional]

Example

from airflow_client.client.models.connection_response import ConnectionResponse

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

# convert the object into a dict
connection_response_dict = connection_response_instance.to_dict()
# create an instance of ConnectionResponse from a dict
connection_response_from_dict = ConnectionResponse.from_dict(connection_response_dict)

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