AsyncConnectionTestResponse

Response returned when polling for the status of an enqueued connection test.

Properties

NameTypeDescriptionNotes
connection_idstr
created_atdatetime
result_messagestr[optional]
statestr
tokenstr

Example

from airflow_client.client.models.async_connection_test_response import AsyncConnectionTestResponse

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

# convert the object into a dict
async_connection_test_response_dict = async_connection_test_response_instance.to_dict()
# create an instance of AsyncConnectionTestResponse from a dict
async_connection_test_response_from_dict = AsyncConnectionTestResponse.from_dict(async_connection_test_response_dict)

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