Skip to main content
Deprecated—use Atlan apps

The package workflows below are deprecated. New tenants run connector workflows as apps through client.app. Use Manage apps and Supported apps for the new API.

Supported packages

Connect docs via MCP

In this section, you'll find packages supported through the SDK. For each connector, example workflows show how to build and run a job from scratch.

If the package you need isn't listed, you can still run it by passing your workflow JSON directly to WorkflowClient.run() (Python) or ctx.WorkflowClient.Run() (Go):

workflow_run_example.py
from pyatlan.client.atlan import AtlanClient

client = AtlanClient()

workflow_json = r"""
{
"metadata": {"name": "test-name", "namespace": "test-namespace"},
"spec": {},
"payload": [{"parameter": "test-param", "type": "test-type", "body": {}}]
}
"""
response = client.workflow.run(workflow_json)

Connectors

  1. Athena assets
  2. BigQuery assets
  3. Connection delete
  4. Confluent Kafka assets
  5. dbt assets
  6. DynamoDB assets
  7. Databricks assets
  8. Databricks miner
  9. Fivetran enrichment
  10. Glue assets
  11. Looker assets
  12. Oracle assets
  13. Postgres assets
  14. PowerBI assets
  15. Redshift assets
  16. Snowflake assets
  17. Snowflake miner
  18. Sigma assets
  19. SQL Server assets
  20. Tableau assets
  21. MongoDB assets

Utilities

  1. Asset import
  2. Asset export (basic)
  3. API token connection admin
  4. Lineage builder
  5. Lineage generator (no transformation)
  6. Relational assets builder
Was this page helpful?