Apache Airflow · Arazzo Workflow
Apache Airflow Register a Connection After Testing It
Version 1.0.0
Test a connection's credentials against the target system before saving it, then create and verify the stored connection.
View Spec
View on GitHub
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflowArazzoWorkflows
Provider
Workflows
register-connection
Validate connection credentials, then persist and verify the connection.
Tests the candidate connection against the target system, creates it only on a successful test, reads it back, and confirms it appears in the connections list.
1
testConnection
test_connection
Ask Airflow to instantiate the hook for this connection type and actually attempt to reach the target system. Nothing is stored. Note that this endpoint is disabled unless the deployment sets test_connection to Enabled in the core config, so a 403 here means the feature is turned off rather than that the credentials are wrong.
2
createConnection
post_connection
Persist the connection now that the credentials are known to work.
3
readBackConnection
get_connection
Read the stored connection to confirm what Airflow persisted. The password is deliberately absent from the response; only the non-secret fields come back.
4
confirmInInventory
get_connections
List the connections to confirm the new one is present in the deployment's inventory, which is the view an operator audits against.