Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(integrations): add support for databricks #2895

Merged
merged 5 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions docs-v2/integrations/all/databricks.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: Databricks
sidebarTitle: Databricks
---

API configurations: [`databricks-account`](https://nango.dev/providers.yaml), [`databricks-workspace`](https://nango.dev/providers.yaml)

## Features

| Features | Status |
| - | - |
| [Auth (OAuth)](/integrate/guides/authorize-an-api) | ✅ |
| [Sync data](/integrate/guides/sync-data-from-an-api) | ✅ |
| [Perform workflows](/integrate/guides/perform-workflows-with-an-api) | ✅ |
| [Proxy requests](/integrate/guides/proxy-requests-to-an-api) | ✅ |
| [Receive webhooks](/integrate/guides/receive-webhooks-from-an-api) | 🚫 (time to contribute: <48h) |

<Tip>We can implement missing features in &lt;48h, just ask for it in the [community](https://nango.dev/slack).</Tip>

## Getting started

- [OAuth related docs](https://docs.databricks.com/en/dev-tools/auth/oauth-m2m.html)
- [Databricks API docs](https://docs.databricks.com/api/workspace/introduction)

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

## API gotchas

- Databricks provides authentication at both the workspace and account levels.
- For the account level, the `accountId` can be obtained by clicking on the down arrow next to your username in the upper-right corner.
- For the workspace level, `databricksInstance` refers to the workspace URL of your Databricks deployment. For more details, please visit [Get identifiers for workspace objects](https://docs.databricks.com/en/workspace/workspace-details.html#workspace-url)

<Note>Add Getting Started links and Gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/databricks.mdx)</Note>
1 change: 1 addition & 0 deletions docs-v2/integrations/analytics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ sidebarTitle: Analytics

<CardGroup cols={4}>
<Card title="Amplitude" href="/integrations/all/amplitude" color="#68a063" />
<Card title="Databricks" href="/integrations/all/databricks" color="#68a063" />
<Card title="Datadog" href="/integrations/all/datadog" color="#68a063" />
<Card title="Fireflies" href="/integrations/all/fireflies" color="#68a063" />
<Card title="Google Analytics" href="/integrations/all/google-analytics" color="#68a063" />
Expand Down
1 change: 1 addition & 0 deletions docs-v2/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@
"integrations/all/contentstack",
"integrations/all/coupa-compass",
"integrations/all/coros",
"integrations/all/databricks",
"integrations/all/datev",
"integrations/all/datadog",
"integrations/all/deel",
Expand Down
38 changes: 38 additions & 0 deletions packages/shared/providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1476,6 +1476,44 @@ coupa-compass:
description: The domain of your Coupa Compass account
format: hostname

databricks-account:
display_name: Databricks (Account Level)
categories:
- analytics
auth_mode: OAUTH2_CC
token_url: https://accounts.cloud.databricks.com/oidc/accounts/${connectionConfig.accountId}/v1/token
token_params:
grant_type: client_credentials
proxy:
base_url: https://accounts.cloud.databricks.com/api/2.0/accounts/${connectionConfig.accountId}
docs: https://docs.nango.dev/integrations/all/databricks
connection_config:
accountId:
type: string
title: Account ID
description: The ID to your account
format: uuid
example: 123e4567-e89b-12d3-a456-426614174000

databricks-workspace:
display_name: Databricks (Workspace Level)
categories:
- analytics
auth_mode: OAUTH2_CC
token_url: https://${connectionConfig.databricksInstance}/oidc/v1/token
token_params:
grant_type: client_credentials
proxy:
base_url: https://${connectionConfig.databricksInstance}/api/2.0/
docs: https://docs.nango.dev/integrations/all/databricks
connection_config:
databricksInstance:
type: string
title: Databricks Instance
description: The instance to your databricks deployment
pattern: '^[a-z0-9_-]+(\.[a-z0-9_-]+)*$'
example: dbc-a1b2345c-d6e7.cloud.databricks.com

#Untested configuration. Please reach out if you have a test account that we can use to test it.
datev:
display_name: Datev
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading