data
Databricks Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the Databricks KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.databricks.*.
Use lua_read_doc("integrations.databricks") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
Databricks workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.databricks.agentbricks_create_custom_llm({}))' --json kosmo integrations:lua --eval 'print(docs.read("databricks"))' --json
kosmo integrations:lua --eval 'print(docs.read("databricks.agentbricks_create_custom_llm"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local databricks = app.integrations.databricks
local result = databricks.agentbricks_create_custom_llm({})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.databricks, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.databricks.default.* or app.integrations.databricks.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need Databricks, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
Databricks Lua API
Generated from the official databricks-sdk-go REST surface, which Databricks marks as generated from OpenAPI specs. The namespace is app.integrations.databricks.
This package exposes 1098 endpoint-specific tools: 443 read tools and 655 write tools. Configure url with the workspace or account host and api_token with a Databricks token. Optional account_id and workspace_id values are used for account-level paths and the X-Databricks-Org-Id header.
Usage
local me = app.integrations.databricks.databricks_iam_me({})
local jobs = app.integrations.databricks.databricks_jobs_list({
query = { limit = 25 }
})
Request Shape
Path parameters are top-level snake_case fields, for example job_id or app_name. Query string values go under query; JSON request payloads go under body; uncommon additional headers go under headers.
Example Tools
| databricks_agentbricks_create_custom_llm | write | POST /api/2.0/custom-llms |
| databricks_agentbricks_delete_custom_llm | write | DELETE /api/2.0/custom-llms/{id} |
| databricks_agentbricks_get_custom_llm | read | GET /api/2.0/custom-llms/{id} |
| databricks_agentbricks_update_custom_llm | write | PATCH /api/2.0/custom-llms/{id} |
| databricks_agentbricks_start_optimize | write | POST /api/2.0/custom-llms/{id}/optimize |
| databricks_agentbricks_cancel_optimize | write | POST /api/2.0/custom-llms/{id}/optimize/cancel |
| databricks_apps_create_space | write | POST /api/2.0/app-spaces |
| databricks_apps_list_spaces | read | GET /api/2.0/app-spaces |
| databricks_apps_delete_space | write | DELETE /api/2.0/app-spaces/{name} |
| databricks_apps_get_space | read | GET /api/2.0/app-spaces/{name} |
| databricks_apps_update_space | write | PATCH /api/2.0/app-spaces/{name} |
| databricks_apps_get_space_operation | read | GET /api/2.0/app-spaces/{name}/operation |
| databricks_apps_create | write | POST /api/2.0/apps |
| databricks_apps_list | read | GET /api/2.0/apps |
| databricks_apps_create_custom_template | write | POST /api/2.0/apps-settings/templates |
| databricks_apps_list_custom_templates | read | GET /api/2.0/apps-settings/templates |
| databricks_apps_delete_custom_template | write | DELETE /api/2.0/apps-settings/templates/{name} |
| databricks_apps_get_custom_template | read | GET /api/2.0/apps-settings/templates/{name} |
| databricks_apps_update_custom_template | write | PUT /api/2.0/apps-settings/templates/{name} |
| databricks_apps_deploy | write | POST /api/2.0/apps/{app_name}/deployments |
| databricks_apps_list_deployments | read | GET /api/2.0/apps/{app_name}/deployments |
| databricks_apps_get_deployment | read | GET /api/2.0/apps/{app_name}/deployments/{deployment_id} |
| databricks_apps_create_update | write | POST /api/2.0/apps/{app_name}/update |
| databricks_apps_get_update | read | GET /api/2.0/apps/{app_name}/update |
| databricks_apps_delete | write | DELETE /api/2.0/apps/{name} |
| databricks_apps_get | read | GET /api/2.0/apps/{name} |
| databricks_apps_update | write | PATCH /api/2.0/apps/{name} |
| databricks_apps_start | write | POST /api/2.0/apps/{name}/start |
| databricks_apps_stop | write | POST /api/2.0/apps/{name}/stop |
| databricks_apps_delete_app_thumbnail | write | DELETE /api/2.0/apps/{name}/thumbnail |
| databricks_apps_update_app_thumbnail | write | PATCH /api/2.0/apps/{name}/thumbnail |
| databricks_apps_get_permissions | read | GET /api/2.0/permissions/apps/{app_name} |
| databricks_apps_set_permissions | write | PUT /api/2.0/permissions/apps/{app_name} |
| databricks_apps_update_permissions | write | PATCH /api/2.0/permissions/apps/{app_name} |
| databricks_apps_get_permission_levels | read | GET /api/2.0/permissions/apps/{app_name}/permissionLevels |
| databricks_billing_create_4 | write | POST /api/2.0/accounts/{account_id}/dashboard |
| databricks_billing_get_4 | read | GET /api/2.0/accounts/{account_id}/dashboard |
| databricks_billing_create_3 | write | POST /api/2.0/accounts/{account_id}/log-delivery |
| databricks_billing_list_3 | read | GET /api/2.0/accounts/{account_id}/log-delivery |
| databricks_billing_get_3 | read | GET /api/2.0/accounts/{account_id}/log-delivery/{log_delivery_configuration_id} |
Notes
- Databricks APIs are host-specific; set
urlto your workspace or account host. - Authentication uses
Authorization: Bearer <api_token>. - Account paths can use configured
account_id; callers can also passaccount_idexplicitly where a path requires it. - Returned data is the parsed JSON response from Databricks.
Raw agent markdown
# Databricks Lua API
Generated from the official `databricks-sdk-go` REST surface, which Databricks marks as generated from OpenAPI specs. The namespace is `app.integrations.databricks`.
This package exposes 1098 endpoint-specific tools: 443 read tools and 655 write tools. Configure `url` with the workspace or account host and `api_token` with a Databricks token. Optional `account_id` and `workspace_id` values are used for account-level paths and the `X-Databricks-Org-Id` header.
## Usage
```lua
local me = app.integrations.databricks.databricks_iam_me({})
local jobs = app.integrations.databricks.databricks_jobs_list({
query = { limit = 25 }
})
```
## Request Shape
Path parameters are top-level snake_case fields, for example `job_id` or `app_name`. Query string values go under `query`; JSON request payloads go under `body`; uncommon additional headers go under `headers`.
## Example Tools
| `databricks_agentbricks_create_custom_llm` | write | POST `/api/2.0/custom-llms` |
| `databricks_agentbricks_delete_custom_llm` | write | DELETE `/api/2.0/custom-llms/{id}` |
| `databricks_agentbricks_get_custom_llm` | read | GET `/api/2.0/custom-llms/{id}` |
| `databricks_agentbricks_update_custom_llm` | write | PATCH `/api/2.0/custom-llms/{id}` |
| `databricks_agentbricks_start_optimize` | write | POST `/api/2.0/custom-llms/{id}/optimize` |
| `databricks_agentbricks_cancel_optimize` | write | POST `/api/2.0/custom-llms/{id}/optimize/cancel` |
| `databricks_apps_create_space` | write | POST `/api/2.0/app-spaces` |
| `databricks_apps_list_spaces` | read | GET `/api/2.0/app-spaces` |
| `databricks_apps_delete_space` | write | DELETE `/api/2.0/app-spaces/{name}` |
| `databricks_apps_get_space` | read | GET `/api/2.0/app-spaces/{name}` |
| `databricks_apps_update_space` | write | PATCH `/api/2.0/app-spaces/{name}` |
| `databricks_apps_get_space_operation` | read | GET `/api/2.0/app-spaces/{name}/operation` |
| `databricks_apps_create` | write | POST `/api/2.0/apps` |
| `databricks_apps_list` | read | GET `/api/2.0/apps` |
| `databricks_apps_create_custom_template` | write | POST `/api/2.0/apps-settings/templates` |
| `databricks_apps_list_custom_templates` | read | GET `/api/2.0/apps-settings/templates` |
| `databricks_apps_delete_custom_template` | write | DELETE `/api/2.0/apps-settings/templates/{name}` |
| `databricks_apps_get_custom_template` | read | GET `/api/2.0/apps-settings/templates/{name}` |
| `databricks_apps_update_custom_template` | write | PUT `/api/2.0/apps-settings/templates/{name}` |
| `databricks_apps_deploy` | write | POST `/api/2.0/apps/{app_name}/deployments` |
| `databricks_apps_list_deployments` | read | GET `/api/2.0/apps/{app_name}/deployments` |
| `databricks_apps_get_deployment` | read | GET `/api/2.0/apps/{app_name}/deployments/{deployment_id}` |
| `databricks_apps_create_update` | write | POST `/api/2.0/apps/{app_name}/update` |
| `databricks_apps_get_update` | read | GET `/api/2.0/apps/{app_name}/update` |
| `databricks_apps_delete` | write | DELETE `/api/2.0/apps/{name}` |
| `databricks_apps_get` | read | GET `/api/2.0/apps/{name}` |
| `databricks_apps_update` | write | PATCH `/api/2.0/apps/{name}` |
| `databricks_apps_start` | write | POST `/api/2.0/apps/{name}/start` |
| `databricks_apps_stop` | write | POST `/api/2.0/apps/{name}/stop` |
| `databricks_apps_delete_app_thumbnail` | write | DELETE `/api/2.0/apps/{name}/thumbnail` |
| `databricks_apps_update_app_thumbnail` | write | PATCH `/api/2.0/apps/{name}/thumbnail` |
| `databricks_apps_get_permissions` | read | GET `/api/2.0/permissions/apps/{app_name}` |
| `databricks_apps_set_permissions` | write | PUT `/api/2.0/permissions/apps/{app_name}` |
| `databricks_apps_update_permissions` | write | PATCH `/api/2.0/permissions/apps/{app_name}` |
| `databricks_apps_get_permission_levels` | read | GET `/api/2.0/permissions/apps/{app_name}/permissionLevels` |
| `databricks_billing_create_4` | write | POST `/api/2.0/accounts/{account_id}/dashboard` |
| `databricks_billing_get_4` | read | GET `/api/2.0/accounts/{account_id}/dashboard` |
| `databricks_billing_create_3` | write | POST `/api/2.0/accounts/{account_id}/log-delivery` |
| `databricks_billing_list_3` | read | GET `/api/2.0/accounts/{account_id}/log-delivery` |
| `databricks_billing_get_3` | read | GET `/api/2.0/accounts/{account_id}/log-delivery/{log_delivery_configuration_id}` |
## Notes
- Databricks APIs are host-specific; set `url` to your workspace or account host.
- Authentication uses `Authorization: Bearer <api_token>`.
- Account paths can use configured `account_id`; callers can also pass `account_id` explicitly where a path requires it.
- Returned data is the parsed JSON response from Databricks. local result = app.integrations.databricks.agentbricks_create_custom_llm({})
print(result) Functions
agentbricks_create_custom_llm Write
Agentbricks Create Custom Llm Official Databricks SDK endpoint: POST /api/2.0/custom-llms Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.agentbricks_create_custom_llm- Full name
databricks.databricks_agentbricks_create_custom_llm
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
agentbricks_delete_custom_llm Write
Agentbricks Delete Custom Llm Official Databricks SDK endpoint: DELETE /api/2.0/custom-llms/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.agentbricks_delete_custom_llm- Full name
databricks.databricks_agentbricks_delete_custom_llm
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
agentbricks_get_custom_llm Read
Agentbricks Get Custom Llm Official Databricks SDK endpoint: GET /api/2.0/custom-llms/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.agentbricks_get_custom_llm- Full name
databricks.databricks_agentbricks_get_custom_llm
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
agentbricks_update_custom_llm Write
Agentbricks Update Custom Llm Official Databricks SDK endpoint: PATCH /api/2.0/custom-llms/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.agentbricks_update_custom_llm- Full name
databricks.databricks_agentbricks_update_custom_llm
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
agentbricks_start_optimize Write
Agentbricks Start Optimize Official Databricks SDK endpoint: POST /api/2.0/custom-llms/{id}/optimize Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.agentbricks_start_optimize- Full name
databricks.databricks_agentbricks_start_optimize
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
agentbricks_cancel_optimize Write
Agentbricks Cancel Optimize Official Databricks SDK endpoint: POST /api/2.0/custom-llms/{id}/optimize/cancel Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.agentbricks_cancel_optimize- Full name
databricks.databricks_agentbricks_cancel_optimize
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_create_space Write
Apps Create Space Official Databricks SDK endpoint: POST /api/2.0/app-spaces Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_create_space- Full name
databricks.databricks_apps_create_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_list_spaces Read
Apps List Spaces Official Databricks SDK endpoint: GET /api/2.0/app-spaces Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_list_spaces- Full name
databricks.databricks_apps_list_spaces
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_delete_space Write
Apps Delete Space Official Databricks SDK endpoint: DELETE /api/2.0/app-spaces/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_delete_space- Full name
databricks.databricks_apps_delete_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get_space Read
Apps Get Space Official Databricks SDK endpoint: GET /api/2.0/app-spaces/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get_space- Full name
databricks.databricks_apps_get_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_update_space Write
Apps Update Space Official Databricks SDK endpoint: PATCH /api/2.0/app-spaces/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_update_space- Full name
databricks.databricks_apps_update_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get_space_operation Read
Apps Get Space Operation Official Databricks SDK endpoint: GET /api/2.0/app-spaces/{name}/operation Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get_space_operation- Full name
databricks.databricks_apps_get_space_operation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_create Write
Apps Create Official Databricks SDK endpoint: POST /api/2.0/apps Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_create- Full name
databricks.databricks_apps_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_list Read
Apps List Official Databricks SDK endpoint: GET /api/2.0/apps Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_list- Full name
databricks.databricks_apps_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_create_custom_template Write
Apps Create Custom Template Official Databricks SDK endpoint: POST /api/2.0/apps-settings/templates Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_create_custom_template- Full name
databricks.databricks_apps_create_custom_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_list_custom_templates Read
Apps List Custom Templates Official Databricks SDK endpoint: GET /api/2.0/apps-settings/templates Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_list_custom_templates- Full name
databricks.databricks_apps_list_custom_templates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_delete_custom_template Write
Apps Delete Custom Template Official Databricks SDK endpoint: DELETE /api/2.0/apps-settings/templates/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_delete_custom_template- Full name
databricks.databricks_apps_delete_custom_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get_custom_template Read
Apps Get Custom Template Official Databricks SDK endpoint: GET /api/2.0/apps-settings/templates/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get_custom_template- Full name
databricks.databricks_apps_get_custom_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_update_custom_template Write
Apps Update Custom Template Official Databricks SDK endpoint: PUT /api/2.0/apps-settings/templates/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_update_custom_template- Full name
databricks.databricks_apps_update_custom_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_deploy Write
Apps Deploy Official Databricks SDK endpoint: POST /api/2.0/apps/{app_name}/deployments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_deploy- Full name
databricks.databricks_apps_deploy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_list_deployments Read
Apps List Deployments Official Databricks SDK endpoint: GET /api/2.0/apps/{app_name}/deployments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_list_deployments- Full name
databricks.databricks_apps_list_deployments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get_deployment Read
Apps Get Deployment Official Databricks SDK endpoint: GET /api/2.0/apps/{app_name}/deployments/{deployment_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get_deployment- Full name
databricks.databricks_apps_get_deployment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_create_update Write
Apps Create Update Official Databricks SDK endpoint: POST /api/2.0/apps/{app_name}/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_create_update- Full name
databricks.databricks_apps_create_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get_update Read
Apps Get Update Official Databricks SDK endpoint: GET /api/2.0/apps/{app_name}/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get_update- Full name
databricks.databricks_apps_get_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_delete Write
Apps Delete Official Databricks SDK endpoint: DELETE /api/2.0/apps/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_delete- Full name
databricks.databricks_apps_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get Read
Apps Get Official Databricks SDK endpoint: GET /api/2.0/apps/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get- Full name
databricks.databricks_apps_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_update Write
Apps Update Official Databricks SDK endpoint: PATCH /api/2.0/apps/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_update- Full name
databricks.databricks_apps_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_start Write
Apps Start Official Databricks SDK endpoint: POST /api/2.0/apps/{name}/start Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_start- Full name
databricks.databricks_apps_start
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_stop Write
Apps Stop Official Databricks SDK endpoint: POST /api/2.0/apps/{name}/stop Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_stop- Full name
databricks.databricks_apps_stop
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_delete_app_thumbnail Write
Apps Delete App Thumbnail Official Databricks SDK endpoint: DELETE /api/2.0/apps/{name}/thumbnail Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_delete_app_thumbnail- Full name
databricks.databricks_apps_delete_app_thumbnail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_update_app_thumbnail Write
Apps Update App Thumbnail Official Databricks SDK endpoint: PATCH /api/2.0/apps/{name}/thumbnail Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_update_app_thumbnail- Full name
databricks.databricks_apps_update_app_thumbnail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get_permissions Read
Apps Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/apps/{app_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get_permissions- Full name
databricks.databricks_apps_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_set_permissions Write
Apps Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/apps/{app_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_set_permissions- Full name
databricks.databricks_apps_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_update_permissions Write
Apps Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/apps/{app_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_update_permissions- Full name
databricks.databricks_apps_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apps_get_permission_levels Read
Apps Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/apps/{app_name}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.apps_get_permission_levels- Full name
databricks.databricks_apps_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_create Write
Billing Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/dashboard Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_create- Full name
databricks.databricks_billing_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_get Read
Billing Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/dashboard Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_get- Full name
databricks.databricks_billing_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_create Write
Billing Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/log-delivery Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_create- Full name
databricks.databricks_billing_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_list Read
Billing List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/log-delivery Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_list- Full name
databricks.databricks_billing_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_get Read
Billing Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/log-delivery/{log_delivery_configuration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_get- Full name
databricks.databricks_billing_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_patch_status Write
Billing Patch Status Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/log-delivery/{log_delivery_configuration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.billing_patch_status- Full name
databricks.databricks_billing_patch_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_download Read
Billing Download Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/usage/download Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_download- Full name
databricks.databricks_billing_download
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_create Write
Billing Create Official Databricks SDK endpoint: POST /api/2.1/accounts/{account_id}/budget-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_create- Full name
databricks.databricks_billing_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_list Read
Billing List Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/budget-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_list- Full name
databricks.databricks_billing_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_delete Write
Billing Delete Official Databricks SDK endpoint: DELETE /api/2.1/accounts/{account_id}/budget-policies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_delete- Full name
databricks.databricks_billing_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_get Read
Billing Get Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/budget-policies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_get- Full name
databricks.databricks_billing_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_update Write
Billing Update Official Databricks SDK endpoint: PATCH /api/2.1/accounts/{account_id}/budget-policies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_update- Full name
databricks.databricks_billing_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_create Write
Billing Create Official Databricks SDK endpoint: POST /api/2.1/accounts/{account_id}/budgets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_create- Full name
databricks.databricks_billing_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_list Read
Billing List Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/budgets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_list- Full name
databricks.databricks_billing_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_delete Write
Billing Delete Official Databricks SDK endpoint: DELETE /api/2.1/accounts/{account_id}/budgets/{budget_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_delete- Full name
databricks.databricks_billing_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_get Read
Billing Get Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/budgets/{budget_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_get- Full name
databricks.databricks_billing_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
billing_update Write
Billing Update Official Databricks SDK endpoint: PUT /api/2.1/accounts/{account_id}/budgets/{budget_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.billing_update- Full name
databricks.databricks_billing_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/metastores Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/metastores Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/metastores/{metastore_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/metastores/{metastore_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/metastores/{metastore_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/metastores/{metastore_id}/storage-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/metastores/{metastore_id}/storage-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/metastores/{metastore_id}/storage-credentials/{storage_credential_name} Generated from the official databricks-sdk-go surface, which is generated from Da
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/metastores/{metastore_id}/storage-credentials/{storage_credential_name} Generated from the official databricks-sdk-go surface, which is generated from Databric
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/metastores/{metastore_id}/storage-credentials/{storage_credential_name} Generated from the official databricks-sdk-go surface, which is generated from Datab
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/metastores/{metastore_id}/workspaces Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/metastore Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/metastores/{metastore_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/metastores/{metastore_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spe
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/metastores/{metastore_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create_external_lineage_relationship Write
Catalog Create External Lineage Relationship Official Databricks SDK endpoint: POST /api/2.0/lineage-tracking/external-lineage Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create_external_lineage_relationship- Full name
databricks.databricks_catalog_create_external_lineage_relationship
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete_external_lineage_relationship Write
Catalog Delete External Lineage Relationship Official Databricks SDK endpoint: DELETE /api/2.0/lineage-tracking/external-lineage Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete_external_lineage_relationship- Full name
databricks.databricks_catalog_delete_external_lineage_relationship
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_external_lineage_relationships Read
Catalog List External Lineage Relationships Official Databricks SDK endpoint: GET /api/2.0/lineage-tracking/external-lineage Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_external_lineage_relationships- Full name
databricks.databricks_catalog_list_external_lineage_relationships
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_external_lineage_relationship Write
Catalog Update External Lineage Relationship Official Databricks SDK endpoint: PATCH /api/2.0/lineage-tracking/external-lineage Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update_external_lineage_relationship- Full name
databricks.databricks_catalog_update_external_lineage_relationship
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create_external_metadata Write
Catalog Create External Metadata Official Databricks SDK endpoint: POST /api/2.0/lineage-tracking/external-metadata Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create_external_metadata- Full name
databricks.databricks_catalog_create_external_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_external_metadata Read
Catalog List External Metadata Official Databricks SDK endpoint: GET /api/2.0/lineage-tracking/external-metadata Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_external_metadata- Full name
databricks.databricks_catalog_list_external_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete_external_metadata Write
Catalog Delete External Metadata Official Databricks SDK endpoint: DELETE /api/2.0/lineage-tracking/external-metadata/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete_external_metadata- Full name
databricks.databricks_catalog_delete_external_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_external_metadata Read
Catalog Get External Metadata Official Databricks SDK endpoint: GET /api/2.0/lineage-tracking/external-metadata/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_external_metadata- Full name
databricks.databricks_catalog_get_external_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_external_metadata Write
Catalog Update External Metadata Official Databricks SDK endpoint: PATCH /api/2.0/lineage-tracking/external-metadata/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update_external_metadata- Full name
databricks.databricks_catalog_update_external_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.0/online-tables Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.0/online-tables/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.0/online-tables/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_generate_temporary_path_credentials Write
Catalog Generate Temporary Path Credentials Official Databricks SDK endpoint: POST /api/2.0/unity-catalog/temporary-path-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_generate_temporary_path_credentials- Full name
databricks.databricks_catalog_generate_temporary_path_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_generate_temporary_table_credentials Write
Catalog Generate Temporary Table Credentials Official Databricks SDK endpoint: POST /api/2.0/unity-catalog/temporary-table-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_generate_temporary_table_credentials- Full name
databricks.databricks_catalog_generate_temporary_table_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_generate_temporary_volume_credentials Write
Catalog Generate Temporary Volume Credentials Official Databricks SDK endpoint: POST /api/2.0/unity-catalog/temporary-volume-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.catalog_generate_temporary_volume_credentials- Full name
databricks.databricks_catalog_generate_temporary_volume_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_regenerate_dashboard Write
Catalog Regenerate Dashboard Official Databricks SDK endpoint: POST /api/2.1/quality-monitoring/tables/{table_name}/monitor/dashboard Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_regenerate_dashboard- Full name
databricks.databricks_catalog_regenerate_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/artifact-allowlists/{artifact_type} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PUT /api/2.1/unity-catalog/artifact-allowlists/{artifact_type} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_bindings Read
Catalog Get Bindings Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/bindings/{securable_type}/{securable_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_bindings- Full name
databricks.databricks_catalog_get_bindings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_bindings Write
Catalog Update Bindings Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/bindings/{securable_type}/{securable_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update_bindings- Full name
databricks.databricks_catalog_update_bindings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/catalogs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/catalogs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/connections Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/connections Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/connections/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/connections/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/connections/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/constraints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/constraints/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create_credential Write
Catalog Create Credential Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create_credential- Full name
databricks.databricks_catalog_create_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_credentials Read
Catalog List Credentials Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_credentials- Full name
databricks.databricks_catalog_list_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete_credential Write
Catalog Delete Credential Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/credentials/{name_arg} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete_credential- Full name
databricks.databricks_catalog_delete_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_credential Read
Catalog Get Credential Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/credentials/{name_arg} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_credential- Full name
databricks.databricks_catalog_get_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_credential Write
Catalog Update Credential Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/credentials/{name_arg} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update_credential- Full name
databricks.databricks_catalog_update_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_current Read
Catalog Current Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/current-metastore-assignment Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_current- Full name
databricks.databricks_catalog_current
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_effective Read
Catalog Get Effective Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/effective-permissions/{securable_type}/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_effective- Full name
databricks.databricks_catalog_get_effective
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/entity-tag-assignments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/entity-tag-assignments/{entity_type}/{entity_name}/tags Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/entity-tag-assignments/{entity_type}/{entity_name}/tags/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenA
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/entity-tag-assignments/{entity_type}/{entity_name}/tags/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spe
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/entity-tag-assignments/{entity_type}/{entity_name}/tags/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAP
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/external-locations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/external-locations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/external-locations/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/external-locations/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/external-locations/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/functions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/functions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/functions/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/functions/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/functions/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_summary Read
Catalog Summary Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/metastore_summary Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_summary- Full name
databricks.databricks_catalog_summary
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/metastores Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/metastores Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/metastores/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/metastores/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/metastores/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/metastores/{metastore_id}/systemschemas Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_disable Write
Catalog Disable Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/metastores/{metastore_id}/systemschemas/{schema_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_disable- Full name
databricks.databricks_catalog_disable
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_enable Write
Catalog Enable Official Databricks SDK endpoint: PUT /api/2.1/unity-catalog/metastores/{metastore_id}/systemschemas/{schema_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_enable- Full name
databricks.databricks_catalog_enable
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/models Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/models Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/models/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/models/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/models/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete_alias Write
Catalog Delete Alias Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/models/{full_name}/aliases/{alias} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete_alias- Full name
databricks.databricks_catalog_delete_alias
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_by_alias Read
Catalog Get By Alias Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/models/{full_name}/aliases/{alias} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_by_alias- Full name
databricks.databricks_catalog_get_by_alias
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_set_alias Write
Catalog Set Alias Official Databricks SDK endpoint: PUT /api/2.1/unity-catalog/models/{full_name}/aliases/{alias} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_set_alias- Full name
databricks.databricks_catalog_set_alias
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/models/{full_name}/versions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/models/{full_name}/versions/{version} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/models/{full_name}/versions/{version} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/models/{full_name}/versions/{version} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/permissions/{securable_type}/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/permissions/{securable_type}/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create_policy Write
Catalog Create Policy Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create_policy- Full name
databricks.databricks_catalog_create_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_policies Read
Catalog List Policies Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/policies/{on_securable_type}/{on_securable_fullname} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_policies- Full name
databricks.databricks_catalog_list_policies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete_policy Write
Catalog Delete Policy Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/policies/{on_securable_type}/{on_securable_fullname}/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks Open
- Lua path
app.integrations.databricks.catalog_delete_policy- Full name
databricks.databricks_catalog_delete_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_policy Read
Catalog Get Policy Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/policies/{on_securable_type}/{on_securable_fullname}/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI sp
- Lua path
app.integrations.databricks.catalog_get_policy- Full name
databricks.databricks_catalog_get_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_policy Write
Catalog Update Policy Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/policies/{on_securable_type}/{on_securable_fullname}/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenA
- Lua path
app.integrations.databricks.catalog_update_policy- Full name
databricks.databricks_catalog_update_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_quotas Read
Catalog List Quotas Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/resource-quotas/all-resource-quotas Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_quotas- Full name
databricks.databricks_catalog_list_quotas
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_quota Read
Catalog Get Quota Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/resource-quotas/{parent_securable_type}/{parent_full_name}/{quota_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks
- Lua path
app.integrations.databricks.catalog_get_quota- Full name
databricks.databricks_catalog_get_quota
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/schemas Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/schemas Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/schemas/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/schemas/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/schemas/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create_secret Write
Catalog Create Secret Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/secrets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create_secret- Full name
databricks.databricks_catalog_create_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_secrets Read
Catalog List Secrets Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/secrets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_secrets- Full name
databricks.databricks_catalog_list_secrets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete_secret Write
Catalog Delete Secret Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/secrets/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete_secret- Full name
databricks.databricks_catalog_delete_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_secret Read
Catalog Get Secret Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/secrets/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_secret- Full name
databricks.databricks_catalog_get_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_secret Write
Catalog Update Secret Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/secrets/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update_secret- Full name
databricks.databricks_catalog_update_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/storage-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/storage-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/storage-credentials/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/storage-credentials/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_17
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/storage-credentials/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_summaries Read
Catalog List Summaries Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/table-summaries Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_summaries- Full name
databricks.databricks_catalog_list_summaries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/tables Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/tables Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/tables/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_17
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/tables/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_18
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/tables/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_17
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_exists Read
Catalog Exists Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/tables/{full_name}/exists Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_exists- Full name
databricks.databricks_catalog_exists
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/tables/{table_name}/monitor Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/tables/{table_name}/monitor Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/tables/{table_name}/monitor Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PUT /api/2.1/unity-catalog/tables/{table_name}/monitor Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list_refreshes Read
Catalog List Refreshes Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/tables/{table_name}/monitor/refreshes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list_refreshes- Full name
databricks.databricks_catalog_list_refreshes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_run_refresh Write
Catalog Run Refresh Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/tables/{table_name}/monitor/refreshes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_run_refresh- Full name
databricks.databricks_catalog_run_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_refresh Read
Catalog Get Refresh Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/tables/{table_name}/monitor/refreshes/{refresh_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_refresh- Full name
databricks.databricks_catalog_get_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_cancel_refresh Write
Catalog Cancel Refresh Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/tables/{table_name}/monitor/refreshes/{refresh_id}/cancel Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.catalog_cancel_refresh- Full name
databricks.databricks_catalog_cancel_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_generate_temporary_service_credential Write
Catalog Generate Temporary Service Credential Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/temporary-service-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spec
- Lua path
app.integrations.databricks.catalog_generate_temporary_service_credential- Full name
databricks.databricks_catalog_generate_temporary_service_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_validate_credential Write
Catalog Validate Credential Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/validate-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_validate_credential- Full name
databricks.databricks_catalog_validate_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_validate Write
Catalog Validate Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/validate-storage-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_validate- Full name
databricks.databricks_catalog_validate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_create Write
Catalog Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/volumes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_create- Full name
databricks.databricks_catalog_create_17
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_list Read
Catalog List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/volumes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_list- Full name
databricks.databricks_catalog_list_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_delete Write
Catalog Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/volumes/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_delete- Full name
databricks.databricks_catalog_delete_18
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_read Read
Catalog Read Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/volumes/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_read- Full name
databricks.databricks_catalog_read
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/volumes/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_18
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get Read
Catalog Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/workspace-bindings/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get- Full name
databricks.databricks_catalog_get_19
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update Write
Catalog Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/workspace-bindings/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update- Full name
databricks.databricks_catalog_update_19
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_assign Write
Catalog Assign Official Databricks SDK endpoint: PUT /api/2.1/unity-catalog/workspaces/{workspace_id}/metastore Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_assign- Full name
databricks.databricks_catalog_assign
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_unassign Write
Catalog Unassign Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/workspaces/{workspace_id}/metastore Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_unassign- Full name
databricks.databricks_catalog_unassign
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_assignment Write
Catalog Update Assignment Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/workspaces/{workspace_id}/metastore Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update_assignment- Full name
databricks.databricks_catalog_update_assignment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_update_access_request_destinations Write
Catalog Update Access Request Destinations Official Databricks SDK endpoint: PATCH /api/3.0/rfa/destinations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_update_access_request_destinations- Full name
databricks.databricks_catalog_update_access_request_destinations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_get_access_request_destinations Read
Catalog Get Access Request Destinations Official Databricks SDK endpoint: GET /api/3.0/rfa/destinations/{securable_type}/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_get_access_request_destinations- Full name
databricks.databricks_catalog_get_access_request_destinations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
catalog_batch_create_access_requests Write
Catalog Batch Create Access Requests Official Databricks SDK endpoint: POST /api/3.0/rfa/requests Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.catalog_batch_create_access_requests- Full name
databricks.databricks_catalog_batch_create_access_requests
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_create Write
Cleanrooms Create Official Databricks SDK endpoint: POST /api/2.0/clean-rooms Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_create- Full name
databricks.databricks_cleanrooms_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_list Read
Cleanrooms List Official Databricks SDK endpoint: GET /api/2.0/clean-rooms Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_list- Full name
databricks.databricks_cleanrooms_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_create Write
Cleanrooms Create Official Databricks SDK endpoint: POST /api/2.0/clean-rooms/{clean_room_name}/assets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_create- Full name
databricks.databricks_cleanrooms_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_list Read
Cleanrooms List Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{clean_room_name}/assets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_list- Full name
databricks.databricks_cleanrooms_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_delete Write
Cleanrooms Delete Official Databricks SDK endpoint: DELETE /api/2.0/clean-rooms/{clean_room_name}/assets/{asset_type}/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_delete- Full name
databricks.databricks_cleanrooms_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_get Read
Cleanrooms Get Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{clean_room_name}/assets/{asset_type}/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_get- Full name
databricks.databricks_cleanrooms_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_update Write
Cleanrooms Update Official Databricks SDK endpoint: PATCH /api/2.0/clean-rooms/{clean_room_name}/assets/{asset_type}/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_update- Full name
databricks.databricks_cleanrooms_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_create_clean_room_asset_review Write
Cleanrooms Create Clean Room Asset Review Official Databricks SDK endpoint: POST /api/2.0/clean-rooms/{clean_room_name}/assets/{asset_type}/{name}/reviews Generated from the official databricks-sdk-go surface, which is generated from Databr
- Lua path
app.integrations.databricks.cleanrooms_create_clean_room_asset_review- Full name
databricks.databricks_cleanrooms_create_clean_room_asset_review
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_list Read
Cleanrooms List Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{clean_room_name}/assets/{asset_type}/{name}/revisions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_list- Full name
databricks.databricks_cleanrooms_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_get Read
Cleanrooms Get Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{clean_room_name}/assets/{asset_type}/{name}/revisions/{etag} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_get- Full name
databricks.databricks_cleanrooms_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_create Write
Cleanrooms Create Official Databricks SDK endpoint: POST /api/2.0/clean-rooms/{clean_room_name}/auto-approval-rules Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_create- Full name
databricks.databricks_cleanrooms_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_list Read
Cleanrooms List Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{clean_room_name}/auto-approval-rules Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_list- Full name
databricks.databricks_cleanrooms_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_delete Write
Cleanrooms Delete Official Databricks SDK endpoint: DELETE /api/2.0/clean-rooms/{clean_room_name}/auto-approval-rules/{rule_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_delete- Full name
databricks.databricks_cleanrooms_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_get Read
Cleanrooms Get Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{clean_room_name}/auto-approval-rules/{rule_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_get- Full name
databricks.databricks_cleanrooms_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_update Write
Cleanrooms Update Official Databricks SDK endpoint: PATCH /api/2.0/clean-rooms/{clean_room_name}/auto-approval-rules/{rule_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_update- Full name
databricks.databricks_cleanrooms_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_create_output_catalog Write
Cleanrooms Create Output Catalog Official Databricks SDK endpoint: POST /api/2.0/clean-rooms/{clean_room_name}/output-catalogs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_create_output_catalog- Full name
databricks.databricks_cleanrooms_create_output_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_list Read
Cleanrooms List Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{clean_room_name}/runs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_list- Full name
databricks.databricks_cleanrooms_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_delete Write
Cleanrooms Delete Official Databricks SDK endpoint: DELETE /api/2.0/clean-rooms/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_delete- Full name
databricks.databricks_cleanrooms_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_get Read
Cleanrooms Get Official Databricks SDK endpoint: GET /api/2.0/clean-rooms/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_get- Full name
databricks.databricks_cleanrooms_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cleanrooms_update Write
Cleanrooms Update Official Databricks SDK endpoint: PATCH /api/2.0/clean-rooms/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.cleanrooms_update- Full name
databricks.databricks_cleanrooms_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_cancel Write
Compute Cancel Official Databricks SDK endpoint: POST /api/1.2/commands/cancel Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_cancel- Full name
databricks.databricks_compute_cancel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_execute Write
Compute Execute Official Databricks SDK endpoint: POST /api/1.2/commands/execute Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_execute- Full name
databricks.databricks_compute_execute
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_command_status Read
Compute Command Status Official Databricks SDK endpoint: GET /api/1.2/commands/status Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_command_status- Full name
databricks.databricks_compute_command_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_create Write
Compute Create Official Databricks SDK endpoint: POST /api/1.2/contexts/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_create- Full name
databricks.databricks_compute_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_destroy Write
Compute Destroy Official Databricks SDK endpoint: POST /api/1.2/contexts/destroy Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_destroy- Full name
databricks.databricks_compute_destroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_context_status Read
Compute Context Status Official Databricks SDK endpoint: GET /api/1.2/contexts/status Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_context_status- Full name
databricks.databricks_compute_context_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_create Write
Compute Create Official Databricks SDK endpoint: POST /api/2.0/global-init-scripts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_create- Full name
databricks.databricks_compute_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list Read
Compute List Official Databricks SDK endpoint: GET /api/2.0/global-init-scripts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list- Full name
databricks.databricks_compute_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_delete Write
Compute Delete Official Databricks SDK endpoint: DELETE /api/2.0/global-init-scripts/{script_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_delete- Full name
databricks.databricks_compute_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get Read
Compute Get Official Databricks SDK endpoint: GET /api/2.0/global-init-scripts/{script_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get- Full name
databricks.databricks_compute_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_update Write
Compute Update Official Databricks SDK endpoint: PATCH /api/2.0/global-init-scripts/{script_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_update- Full name
databricks.databricks_compute_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_create Write
Compute Create Official Databricks SDK endpoint: POST /api/2.0/instance-pools/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_create- Full name
databricks.databricks_compute_create_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_delete Write
Compute Delete Official Databricks SDK endpoint: POST /api/2.0/instance-pools/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_delete- Full name
databricks.databricks_compute_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_edit Write
Compute Edit Official Databricks SDK endpoint: POST /api/2.0/instance-pools/edit Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_edit- Full name
databricks.databricks_compute_edit_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get Read
Compute Get Official Databricks SDK endpoint: GET /api/2.0/instance-pools/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get- Full name
databricks.databricks_compute_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list Read
Compute List Official Databricks SDK endpoint: GET /api/2.0/instance-pools/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list- Full name
databricks.databricks_compute_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_add Write
Compute Add Official Databricks SDK endpoint: POST /api/2.0/instance-profiles/add Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_add- Full name
databricks.databricks_compute_add
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_edit Write
Compute Edit Official Databricks SDK endpoint: POST /api/2.0/instance-profiles/edit Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_edit- Full name
databricks.databricks_compute_edit_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list Read
Compute List Official Databricks SDK endpoint: GET /api/2.0/instance-profiles/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list- Full name
databricks.databricks_compute_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_remove Write
Compute Remove Official Databricks SDK endpoint: POST /api/2.0/instance-profiles/remove Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_remove- Full name
databricks.databricks_compute_remove
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_all_cluster_statuses Read
Compute All Cluster Statuses Official Databricks SDK endpoint: GET /api/2.0/libraries/all-cluster-statuses Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_all_cluster_statuses- Full name
databricks.databricks_compute_all_cluster_statuses
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_cluster_status Read
Compute Cluster Status Official Databricks SDK endpoint: GET /api/2.0/libraries/cluster-status Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_cluster_status- Full name
databricks.databricks_compute_cluster_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_install Write
Compute Install Official Databricks SDK endpoint: POST /api/2.0/libraries/install Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_install- Full name
databricks.databricks_compute_install
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_uninstall Write
Compute Uninstall Official Databricks SDK endpoint: POST /api/2.0/libraries/uninstall Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_uninstall- Full name
databricks.databricks_compute_uninstall
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get_permissions Read
Compute Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/cluster-policies/{cluster_policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get_permissions- Full name
databricks.databricks_compute_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_set_permissions Write
Compute Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/cluster-policies/{cluster_policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_set_permissions- Full name
databricks.databricks_compute_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_update_permissions Write
Compute Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/cluster-policies/{cluster_policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_update_permissions- Full name
databricks.databricks_compute_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get_permission_levels Read
Compute Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/cluster-policies/{cluster_policy_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.compute_get_permission_levels- Full name
databricks.databricks_compute_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get_permissions Read
Compute Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/clusters/{cluster_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get_permissions- Full name
databricks.databricks_compute_get_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_set_permissions Write
Compute Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/clusters/{cluster_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_set_permissions- Full name
databricks.databricks_compute_set_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_update_permissions Write
Compute Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/clusters/{cluster_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_update_permissions- Full name
databricks.databricks_compute_update_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get_permission_levels Read
Compute Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/clusters/{cluster_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get_permission_levels- Full name
databricks.databricks_compute_get_permission_levels_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get_permissions Read
Compute Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/instance-pools/{instance_pool_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get_permissions- Full name
databricks.databricks_compute_get_permissions_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_set_permissions Write
Compute Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/instance-pools/{instance_pool_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_set_permissions- Full name
databricks.databricks_compute_set_permissions_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_update_permissions Write
Compute Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/instance-pools/{instance_pool_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_update_permissions- Full name
databricks.databricks_compute_update_permissions_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get_permission_levels Read
Compute Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/instance-pools/{instance_pool_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI sp
- Lua path
app.integrations.databricks.compute_get_permission_levels- Full name
databricks.databricks_compute_get_permission_levels_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_create Write
Compute Create Official Databricks SDK endpoint: POST /api/2.0/policies/clusters/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_create- Full name
databricks.databricks_compute_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_delete Write
Compute Delete Official Databricks SDK endpoint: POST /api/2.0/policies/clusters/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_delete- Full name
databricks.databricks_compute_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_edit Write
Compute Edit Official Databricks SDK endpoint: POST /api/2.0/policies/clusters/edit Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_edit- Full name
databricks.databricks_compute_edit
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_enforce_compliance Write
Compute Enforce Compliance Official Databricks SDK endpoint: POST /api/2.0/policies/clusters/enforce-compliance Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_enforce_compliance- Full name
databricks.databricks_compute_enforce_compliance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get Read
Compute Get Official Databricks SDK endpoint: GET /api/2.0/policies/clusters/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get- Full name
databricks.databricks_compute_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get_compliance Read
Compute Get Compliance Official Databricks SDK endpoint: GET /api/2.0/policies/clusters/get-compliance Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get_compliance- Full name
databricks.databricks_compute_get_compliance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list Read
Compute List Official Databricks SDK endpoint: GET /api/2.0/policies/clusters/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list- Full name
databricks.databricks_compute_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list_compliance Read
Compute List Compliance Official Databricks SDK endpoint: GET /api/2.0/policies/clusters/list-compliance Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list_compliance- Full name
databricks.databricks_compute_list_compliance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list Read
Compute List Official Databricks SDK endpoint: GET /api/2.0/policy-families Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list- Full name
databricks.databricks_compute_list_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get Read
Compute Get Official Databricks SDK endpoint: GET /api/2.0/policy-families/{policy_family_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get- Full name
databricks.databricks_compute_get_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_change_owner Write
Compute Change Owner Official Databricks SDK endpoint: POST /api/2.1/clusters/change-owner Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_change_owner- Full name
databricks.databricks_compute_change_owner
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_create Write
Compute Create Official Databricks SDK endpoint: POST /api/2.1/clusters/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_create- Full name
databricks.databricks_compute_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_delete Write
Compute Delete Official Databricks SDK endpoint: POST /api/2.1/clusters/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_delete- Full name
databricks.databricks_compute_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_edit Write
Compute Edit Official Databricks SDK endpoint: POST /api/2.1/clusters/edit Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_edit- Full name
databricks.databricks_compute_edit_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_events Write
Compute Events Official Databricks SDK endpoint: POST /api/2.1/clusters/events Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_events- Full name
databricks.databricks_compute_events
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_get Read
Compute Get Official Databricks SDK endpoint: GET /api/2.1/clusters/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_get- Full name
databricks.databricks_compute_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list Read
Compute List Official Databricks SDK endpoint: GET /api/2.1/clusters/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list- Full name
databricks.databricks_compute_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list_node_types Read
Compute List Node Types Official Databricks SDK endpoint: GET /api/2.1/clusters/list-node-types Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list_node_types- Full name
databricks.databricks_compute_list_node_types
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_list_zones Read
Compute List Zones Official Databricks SDK endpoint: GET /api/2.1/clusters/list-zones Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_list_zones- Full name
databricks.databricks_compute_list_zones
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_permanent_delete Write
Compute Permanent Delete Official Databricks SDK endpoint: POST /api/2.1/clusters/permanent-delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_permanent_delete- Full name
databricks.databricks_compute_permanent_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_pin Write
Compute Pin Official Databricks SDK endpoint: POST /api/2.1/clusters/pin Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_pin- Full name
databricks.databricks_compute_pin
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_resize Write
Compute Resize Official Databricks SDK endpoint: POST /api/2.1/clusters/resize Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_resize- Full name
databricks.databricks_compute_resize
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_restart Write
Compute Restart Official Databricks SDK endpoint: POST /api/2.1/clusters/restart Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_restart- Full name
databricks.databricks_compute_restart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_spark_versions Read
Compute Spark Versions Official Databricks SDK endpoint: GET /api/2.1/clusters/spark-versions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_spark_versions- Full name
databricks.databricks_compute_spark_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_start Write
Compute Start Official Databricks SDK endpoint: POST /api/2.1/clusters/start Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_start- Full name
databricks.databricks_compute_start
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_unpin Write
Compute Unpin Official Databricks SDK endpoint: POST /api/2.1/clusters/unpin Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_unpin- Full name
databricks.databricks_compute_unpin
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
compute_update Write
Compute Update Official Databricks SDK endpoint: POST /api/2.1/clusters/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.compute_update- Full name
databricks.databricks_compute_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_create_space Write
Dashboards Create Space Official Databricks SDK endpoint: POST /api/2.0/genie/spaces Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_create_space- Full name
databricks.databricks_dashboards_create_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list_spaces Read
Dashboards List Spaces Official Databricks SDK endpoint: GET /api/2.0/genie/spaces Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_list_spaces- Full name
databricks.databricks_dashboards_list_spaces
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_space Read
Dashboards Get Space Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_get_space- Full name
databricks.databricks_dashboards_get_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_trash_space Write
Dashboards Trash Space Official Databricks SDK endpoint: DELETE /api/2.0/genie/spaces/{space_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_trash_space- Full name
databricks.databricks_dashboards_trash_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_update_space Write
Dashboards Update Space Official Databricks SDK endpoint: PATCH /api/2.0/genie/spaces/{space_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_update_space- Full name
databricks.databricks_dashboards_update_space
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list_conversations Read
Dashboards List Conversations Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_list_conversations- Full name
databricks.databricks_dashboards_list_conversations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_delete_conversation Write
Dashboards Delete Conversation Official Databricks SDK endpoint: DELETE /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.dashboards_delete_conversation- Full name
databricks.databricks_dashboards_delete_conversation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list_conversation_comments Read
Dashboards List Conversation Comments Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/list-comments Generated from the official databricks-sdk-go surface, which is generated from Databr
- Lua path
app.integrations.databricks.dashboards_list_conversation_comments- Full name
databricks.databricks_dashboards_list_conversation_comments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_create_message Write
Dashboards Create Message Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spe
- Lua path
app.integrations.databricks.dashboards_create_message- Full name
databricks.databricks_dashboards_create_message
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list_conversation_messages Read
Dashboards List Conversation Messages Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages Generated from the official databricks-sdk-go surface, which is generated from Databricks
- Lua path
app.integrations.databricks.dashboards_list_conversation_messages- Full name
databricks.databricks_dashboards_list_conversation_messages
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_delete_conversation_message Write
Dashboards Delete Conversation Message Official Databricks SDK endpoint: DELETE /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id} Generated from the official databricks-sdk-go surface, which is generated
- Lua path
app.integrations.databricks.dashboards_delete_conversation_message- Full name
databricks.databricks_dashboards_delete_conversation_message
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_message Read
Dashboards Get Message Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks Op
- Lua path
app.integrations.databricks.dashboards_get_message- Full name
databricks.databricks_dashboards_get_message
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_generate_download_full_query_result Write
Dashboards Generate Download Full Query Result Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/attachments/{attachment_id}/downloads Generated from the official d
- Lua path
app.integrations.databricks.dashboards_generate_download_full_query_result- Full name
databricks.databricks_dashboards_generate_download_full_query_result
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_download_full_query_result Read
Dashboards Get Download Full Query Result Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/attachments/{attachment_id}/downloads/{download_id} Generated from the of
- Lua path
app.integrations.databricks.dashboards_get_download_full_query_result- Full name
databricks.databricks_dashboards_get_download_full_query_result
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_execute_message_attachment_query Write
Dashboards Execute Message Attachment Query Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/attachments/{attachment_id}/execute-query Generated from the official
- Lua path
app.integrations.databricks.dashboards_execute_message_attachment_query- Full name
databricks.databricks_dashboards_execute_message_attachment_query
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_message_attachment_query_result Read
Dashboards Get Message Attachment Query Result Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/attachments/{attachment_id}/query-result Generated from the official
- Lua path
app.integrations.databricks.dashboards_get_message_attachment_query_result- Full name
databricks.databricks_dashboards_get_message_attachment_query_result
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_create_message_comment Write
Dashboards Create Message Comment Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/comments Generated from the official databricks-sdk-go surface, which is generat
- Lua path
app.integrations.databricks.dashboards_create_message_comment- Full name
databricks.databricks_dashboards_create_message_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list_message_comments Read
Dashboards List Message Comments Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/comments Generated from the official databricks-sdk-go surface, which is generated
- Lua path
app.integrations.databricks.dashboards_list_message_comments- Full name
databricks.databricks_dashboards_list_message_comments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_execute_message_query Write
Dashboards Execute Message Query Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/execute-query Generated from the official databricks-sdk-go surface, which is gen
- Lua path
app.integrations.databricks.dashboards_execute_message_query- Full name
databricks.databricks_dashboards_execute_message_query
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_send_message_feedback Write
Dashboards Send Message Feedback Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/feedback Generated from the official databricks-sdk-go surface, which is generate
- Lua path
app.integrations.databricks.dashboards_send_message_feedback- Full name
databricks.databricks_dashboards_send_message_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_message_query_result Read
Dashboards Get Message Query Result Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/query-result Generated from the official databricks-sdk-go surface, which is ge
- Lua path
app.integrations.databricks.dashboards_get_message_query_result- Full name
databricks.databricks_dashboards_get_message_query_result
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_message_query_result_by_attachment Read
Dashboards Get Message Query Result By Attachment Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/conversations/{conversation_id}/messages/{message_id}/query-result/{attachment_id} Generated from the official databric
- Lua path
app.integrations.databricks.dashboards_get_message_query_result_by_attachment- Full name
databricks.databricks_dashboards_get_message_query_result_by_attachment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_genie_create_eval_run Write
Dashboards Genie Create Eval Run Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/eval-runs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_genie_create_eval_run- Full name
databricks.databricks_dashboards_genie_create_eval_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_genie_list_eval_runs Read
Dashboards Genie List Eval Runs Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/eval-runs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_genie_list_eval_runs- Full name
databricks.databricks_dashboards_genie_list_eval_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_genie_get_eval_run Read
Dashboards Genie Get Eval Run Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/eval-runs/{eval_run_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_genie_get_eval_run- Full name
databricks.databricks_dashboards_genie_get_eval_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_genie_list_eval_results Read
Dashboards Genie List Eval Results Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/eval-runs/{eval_run_id}/results Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spec
- Lua path
app.integrations.databricks.dashboards_genie_list_eval_results- Full name
databricks.databricks_dashboards_genie_list_eval_results
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_genie_get_eval_result_details Read
Dashboards Genie Get Eval Result Details Official Databricks SDK endpoint: GET /api/2.0/genie/spaces/{space_id}/eval-runs/{eval_run_id}/results/{result_id} Generated from the official databricks-sdk-go surface, which is generated from Datab
- Lua path
app.integrations.databricks.dashboards_genie_get_eval_result_details- Full name
databricks.databricks_dashboards_genie_get_eval_result_details
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_start_conversation Write
Dashboards Start Conversation Official Databricks SDK endpoint: POST /api/2.0/genie/spaces/{space_id}/start-conversation Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_start_conversation- Full name
databricks.databricks_dashboards_start_conversation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_create Write
Dashboards Create Official Databricks SDK endpoint: POST /api/2.0/lakeview/dashboards Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_create- Full name
databricks.databricks_dashboards_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list Read
Dashboards List Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_list- Full name
databricks.databricks_dashboards_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_migrate Write
Dashboards Migrate Official Databricks SDK endpoint: POST /api/2.0/lakeview/dashboards/migrate Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_migrate- Full name
databricks.databricks_dashboards_migrate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get Read
Dashboards Get Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards/{dashboard_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_get- Full name
databricks.databricks_dashboards_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_trash Write
Dashboards Trash Official Databricks SDK endpoint: DELETE /api/2.0/lakeview/dashboards/{dashboard_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_trash- Full name
databricks.databricks_dashboards_trash
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_update Write
Dashboards Update Official Databricks SDK endpoint: PATCH /api/2.0/lakeview/dashboards/{dashboard_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_update- Full name
databricks.databricks_dashboards_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_published Read
Dashboards Get Published Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards/{dashboard_id}/published Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_get_published- Full name
databricks.databricks_dashboards_get_published
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_publish Write
Dashboards Publish Official Databricks SDK endpoint: POST /api/2.0/lakeview/dashboards/{dashboard_id}/published Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_publish- Full name
databricks.databricks_dashboards_publish
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_unpublish Write
Dashboards Unpublish Official Databricks SDK endpoint: DELETE /api/2.0/lakeview/dashboards/{dashboard_id}/published Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_unpublish- Full name
databricks.databricks_dashboards_unpublish
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_published_dashboard_token_info Read
Dashboards Get Published Dashboard Token Info Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards/{dashboard_id}/published/tokeninfo Generated from the official databricks-sdk-go surface, which is generated from Databricks Op
- Lua path
app.integrations.databricks.dashboards_get_published_dashboard_token_info- Full name
databricks.databricks_dashboards_get_published_dashboard_token_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_create_schedule Write
Dashboards Create Schedule Official Databricks SDK endpoint: POST /api/2.0/lakeview/dashboards/{dashboard_id}/schedules Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_create_schedule- Full name
databricks.databricks_dashboards_create_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list_schedules Read
Dashboards List Schedules Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards/{dashboard_id}/schedules Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_list_schedules- Full name
databricks.databricks_dashboards_list_schedules
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_delete_schedule Write
Dashboards Delete Schedule Official Databricks SDK endpoint: DELETE /api/2.0/lakeview/dashboards/{dashboard_id}/schedules/{schedule_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_delete_schedule- Full name
databricks.databricks_dashboards_delete_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_schedule Read
Dashboards Get Schedule Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards/{dashboard_id}/schedules/{schedule_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_get_schedule- Full name
databricks.databricks_dashboards_get_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_update_schedule Write
Dashboards Update Schedule Official Databricks SDK endpoint: PUT /api/2.0/lakeview/dashboards/{dashboard_id}/schedules/{schedule_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dashboards_update_schedule- Full name
databricks.databricks_dashboards_update_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_create_subscription Write
Dashboards Create Subscription Official Databricks SDK endpoint: POST /api/2.0/lakeview/dashboards/{dashboard_id}/schedules/{schedule_id}/subscriptions Generated from the official databricks-sdk-go surface, which is generated from Databrick
- Lua path
app.integrations.databricks.dashboards_create_subscription- Full name
databricks.databricks_dashboards_create_subscription
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_list_subscriptions Read
Dashboards List Subscriptions Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards/{dashboard_id}/schedules/{schedule_id}/subscriptions Generated from the official databricks-sdk-go surface, which is generated from Databricks
- Lua path
app.integrations.databricks.dashboards_list_subscriptions- Full name
databricks.databricks_dashboards_list_subscriptions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_delete_subscription Write
Dashboards Delete Subscription Official Databricks SDK endpoint: DELETE /api/2.0/lakeview/dashboards/{dashboard_id}/schedules/{schedule_id}/subscriptions/{subscription_id} Generated from the official databricks-sdk-go surface, which is gene
- Lua path
app.integrations.databricks.dashboards_delete_subscription- Full name
databricks.databricks_dashboards_delete_subscription
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboards_get_subscription Read
Dashboards Get Subscription Official Databricks SDK endpoint: GET /api/2.0/lakeview/dashboards/{dashboard_id}/schedules/{schedule_id}/subscriptions/{subscription_id} Generated from the official databricks-sdk-go surface, which is generated
- Lua path
app.integrations.databricks.dashboards_get_subscription- Full name
databricks.databricks_dashboards_get_subscription
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_create_database_catalog Write
Database Create Database Catalog Official Databricks SDK endpoint: POST /api/2.0/database/catalogs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_create_database_catalog- Full name
databricks.databricks_database_create_database_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_delete_database_catalog Write
Database Delete Database Catalog Official Databricks SDK endpoint: DELETE /api/2.0/database/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_delete_database_catalog- Full name
databricks.databricks_database_delete_database_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_get_database_catalog Read
Database Get Database Catalog Official Databricks SDK endpoint: GET /api/2.0/database/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_get_database_catalog- Full name
databricks.databricks_database_get_database_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_update_database_catalog Write
Database Update Database Catalog Official Databricks SDK endpoint: PATCH /api/2.0/database/catalogs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_update_database_catalog- Full name
databricks.databricks_database_update_database_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_generate_database_credential Write
Database Generate Database Credential Official Databricks SDK endpoint: POST /api/2.0/database/credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_generate_database_credential- Full name
databricks.databricks_database_generate_database_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_create_database_instance Write
Database Create Database Instance Official Databricks SDK endpoint: POST /api/2.0/database/instances Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_create_database_instance- Full name
databricks.databricks_database_create_database_instance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_list_database_instances Read
Database List Database Instances Official Databricks SDK endpoint: GET /api/2.0/database/instances Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_list_database_instances- Full name
databricks.databricks_database_list_database_instances
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_list_database_catalogs Read
Database List Database Catalogs Official Databricks SDK endpoint: GET /api/2.0/database/instances/{instance_name}/catalogs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_list_database_catalogs- Full name
databricks.databricks_database_list_database_catalogs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_create_database_instance_role Write
Database Create Database Instance Role Official Databricks SDK endpoint: POST /api/2.0/database/instances/{instance_name}/roles Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_create_database_instance_role- Full name
databricks.databricks_database_create_database_instance_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_list_database_instance_roles Read
Database List Database Instance Roles Official Databricks SDK endpoint: GET /api/2.0/database/instances/{instance_name}/roles Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_list_database_instance_roles- Full name
databricks.databricks_database_list_database_instance_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_delete_database_instance_role Write
Database Delete Database Instance Role Official Databricks SDK endpoint: DELETE /api/2.0/database/instances/{instance_name}/roles/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.database_delete_database_instance_role- Full name
databricks.databricks_database_delete_database_instance_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_get_database_instance_role Read
Database Get Database Instance Role Official Databricks SDK endpoint: GET /api/2.0/database/instances/{instance_name}/roles/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_get_database_instance_role- Full name
databricks.databricks_database_get_database_instance_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_list_synced_database_tables Read
Database List Synced Database Tables Official Databricks SDK endpoint: GET /api/2.0/database/instances/{instance_name}/synced_tables Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_list_synced_database_tables- Full name
databricks.databricks_database_list_synced_database_tables
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_delete_database_instance Write
Database Delete Database Instance Official Databricks SDK endpoint: DELETE /api/2.0/database/instances/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_delete_database_instance- Full name
databricks.databricks_database_delete_database_instance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_get_database_instance Read
Database Get Database Instance Official Databricks SDK endpoint: GET /api/2.0/database/instances/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_get_database_instance- Full name
databricks.databricks_database_get_database_instance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_update_database_instance Write
Database Update Database Instance Official Databricks SDK endpoint: PATCH /api/2.0/database/instances/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_update_database_instance- Full name
databricks.databricks_database_update_database_instance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_find_database_instance_by_uid Read
Database Find Database Instance By Uid Official Databricks SDK endpoint: GET /api/2.0/database/instances:findByUid Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_find_database_instance_by_uid- Full name
databricks.databricks_database_find_database_instance_by_uid
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_create_synced_database_table Write
Database Create Synced Database Table Official Databricks SDK endpoint: POST /api/2.0/database/synced_tables Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_create_synced_database_table- Full name
databricks.databricks_database_create_synced_database_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_delete_synced_database_table Write
Database Delete Synced Database Table Official Databricks SDK endpoint: DELETE /api/2.0/database/synced_tables/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_delete_synced_database_table- Full name
databricks.databricks_database_delete_synced_database_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_get_synced_database_table Read
Database Get Synced Database Table Official Databricks SDK endpoint: GET /api/2.0/database/synced_tables/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_get_synced_database_table- Full name
databricks.databricks_database_get_synced_database_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_update_synced_database_table Write
Database Update Synced Database Table Official Databricks SDK endpoint: PATCH /api/2.0/database/synced_tables/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_update_synced_database_table- Full name
databricks.databricks_database_update_synced_database_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_create_database_table Write
Database Create Database Table Official Databricks SDK endpoint: POST /api/2.0/database/tables Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_create_database_table- Full name
databricks.databricks_database_create_database_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_delete_database_table Write
Database Delete Database Table Official Databricks SDK endpoint: DELETE /api/2.0/database/tables/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_delete_database_table- Full name
databricks.databricks_database_delete_database_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
database_get_database_table Read
Database Get Database Table Official Databricks SDK endpoint: GET /api/2.0/database/tables/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.database_get_database_table- Full name
databricks.databricks_database_get_database_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataclassification_delete_catalog_config Write
Dataclassification Delete Catalog Config Official Databricks SDK endpoint: DELETE /api/data-classification/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataclassification_delete_catalog_config- Full name
databricks.databricks_dataclassification_delete_catalog_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataclassification_get_catalog_config Read
Dataclassification Get Catalog Config Official Databricks SDK endpoint: GET /api/data-classification/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataclassification_get_catalog_config- Full name
databricks.databricks_dataclassification_get_catalog_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataclassification_update_catalog_config Write
Dataclassification Update Catalog Config Official Databricks SDK endpoint: PATCH /api/data-classification/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataclassification_update_catalog_config- Full name
databricks.databricks_dataclassification_update_catalog_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataclassification_create_catalog_config Write
Dataclassification Create Catalog Config Official Databricks SDK endpoint: POST /api/data-classification/v1/{parent}/config Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataclassification_create_catalog_config- Full name
databricks.databricks_dataclassification_create_catalog_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_create_monitor Write
Dataquality Create Monitor Official Databricks SDK endpoint: POST /api/data-quality/v1/monitors Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataquality_create_monitor- Full name
databricks.databricks_dataquality_create_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_list_monitor Read
Dataquality List Monitor Official Databricks SDK endpoint: GET /api/data-quality/v1/monitors Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataquality_list_monitor- Full name
databricks.databricks_dataquality_list_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_delete_monitor Write
Dataquality Delete Monitor Official Databricks SDK endpoint: DELETE /api/data-quality/v1/monitors/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataquality_delete_monitor- Full name
databricks.databricks_dataquality_delete_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_get_monitor Read
Dataquality Get Monitor Official Databricks SDK endpoint: GET /api/data-quality/v1/monitors/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataquality_get_monitor- Full name
databricks.databricks_dataquality_get_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_update_monitor Write
Dataquality Update Monitor Official Databricks SDK endpoint: PATCH /api/data-quality/v1/monitors/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataquality_update_monitor- Full name
databricks.databricks_dataquality_update_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_create_refresh Write
Dataquality Create Refresh Official Databricks SDK endpoint: POST /api/data-quality/v1/monitors/{object_type}/{object_id}/refreshes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataquality_create_refresh- Full name
databricks.databricks_dataquality_create_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_list_refresh Read
Dataquality List Refresh Official Databricks SDK endpoint: GET /api/data-quality/v1/monitors/{object_type}/{object_id}/refreshes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.dataquality_list_refresh- Full name
databricks.databricks_dataquality_list_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_delete_refresh Write
Dataquality Delete Refresh Official Databricks SDK endpoint: DELETE /api/data-quality/v1/monitors/{object_type}/{object_id}/refreshes/{refresh_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks Ope
- Lua path
app.integrations.databricks.dataquality_delete_refresh- Full name
databricks.databricks_dataquality_delete_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_get_refresh Read
Dataquality Get Refresh Official Databricks SDK endpoint: GET /api/data-quality/v1/monitors/{object_type}/{object_id}/refreshes/{refresh_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.dataquality_get_refresh- Full name
databricks.databricks_dataquality_get_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_update_refresh Write
Dataquality Update Refresh Official Databricks SDK endpoint: PATCH /api/data-quality/v1/monitors/{object_type}/{object_id}/refreshes/{refresh_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks Open
- Lua path
app.integrations.databricks.dataquality_update_refresh- Full name
databricks.databricks_dataquality_update_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataquality_cancel_refresh Write
Dataquality Cancel Refresh Official Databricks SDK endpoint: POST /api/data-quality/v1/monitors/{object_type}/{object_id}/refreshes/{refresh_id}/cancel Generated from the official databricks-sdk-go surface, which is generated from Databrick
- Lua path
app.integrations.databricks.dataquality_cancel_refresh- Full name
databricks.databricks_dataquality_cancel_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_delete_failover_group Write
Disasterrecovery Delete Failover Group Official Databricks SDK endpoint: DELETE /api/disaster-recovery/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_delete_failover_group- Full name
databricks.databricks_disasterrecovery_delete_failover_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_delete_stable_url Write
Disasterrecovery Delete Stable Url Official Databricks SDK endpoint: DELETE /api/disaster-recovery/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_delete_stable_url- Full name
databricks.databricks_disasterrecovery_delete_stable_url
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_get_failover_group Read
Disasterrecovery Get Failover Group Official Databricks SDK endpoint: GET /api/disaster-recovery/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_get_failover_group- Full name
databricks.databricks_disasterrecovery_get_failover_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_get_stable_url Read
Disasterrecovery Get Stable Url Official Databricks SDK endpoint: GET /api/disaster-recovery/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_get_stable_url- Full name
databricks.databricks_disasterrecovery_get_stable_url
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_update_failover_group Write
Disasterrecovery Update Failover Group Official Databricks SDK endpoint: PATCH /api/disaster-recovery/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_update_failover_group- Full name
databricks.databricks_disasterrecovery_update_failover_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_failover_failover_group Write
Disasterrecovery Failover Failover Group Official Databricks SDK endpoint: POST /api/disaster-recovery/v1/{name}/failover Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_failover_failover_group- Full name
databricks.databricks_disasterrecovery_failover_failover_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_create_failover_group Write
Disasterrecovery Create Failover Group Official Databricks SDK endpoint: POST /api/disaster-recovery/v1/{parent}/failover-groups Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_create_failover_group- Full name
databricks.databricks_disasterrecovery_create_failover_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_list_failover_groups Read
Disasterrecovery List Failover Groups Official Databricks SDK endpoint: GET /api/disaster-recovery/v1/{parent}/failover-groups Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_list_failover_groups- Full name
databricks.databricks_disasterrecovery_list_failover_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_create_stable_url Write
Disasterrecovery Create Stable Url Official Databricks SDK endpoint: POST /api/disaster-recovery/v1/{parent}/stable-urls Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_create_stable_url- Full name
databricks.databricks_disasterrecovery_create_stable_url
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disasterrecovery_list_stable_urls Read
Disasterrecovery List Stable Urls Official Databricks SDK endpoint: GET /api/disaster-recovery/v1/{parent}/stable-urls Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.disasterrecovery_list_stable_urls- Full name
databricks.databricks_disasterrecovery_list_stable_urls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_create_workspace_base_environment Write
Environments Create Workspace Base Environment Official Databricks SDK endpoint: POST /api/environments/v1/workspace-base-environments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_create_workspace_base_environment- Full name
databricks.databricks_environments_create_workspace_base_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_list_workspace_base_environments Read
Environments List Workspace Base Environments Official Databricks SDK endpoint: GET /api/environments/v1/workspace-base-environments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_list_workspace_base_environments- Full name
databricks.databricks_environments_list_workspace_base_environments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_delete_workspace_base_environment Write
Environments Delete Workspace Base Environment Official Databricks SDK endpoint: DELETE /api/environments/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_delete_workspace_base_environment- Full name
databricks.databricks_environments_delete_workspace_base_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_get_default_workspace_base_environment Read
Environments Get Default Workspace Base Environment Official Databricks SDK endpoint: GET /api/environments/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_get_default_workspace_base_environment- Full name
databricks.databricks_environments_get_default_workspace_base_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_get_operation Read
Environments Get Operation Official Databricks SDK endpoint: GET /api/environments/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_get_operation- Full name
databricks.databricks_environments_get_operation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_get_workspace_base_environment Read
Environments Get Workspace Base Environment Official Databricks SDK endpoint: GET /api/environments/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_get_workspace_base_environment- Full name
databricks.databricks_environments_get_workspace_base_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_update_default_workspace_base_environment Write
Environments Update Default Workspace Base Environment Official Databricks SDK endpoint: PATCH /api/environments/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_update_default_workspace_base_environment- Full name
databricks.databricks_environments_update_default_workspace_base_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_update_workspace_base_environment Write
Environments Update Workspace Base Environment Official Databricks SDK endpoint: PATCH /api/environments/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_update_workspace_base_environment- Full name
databricks.databricks_environments_update_workspace_base_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environments_refresh_workspace_base_environment Write
Environments Refresh Workspace Base Environment Official Databricks SDK endpoint: POST /api/environments/v1/{name}/refresh Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.environments_refresh_workspace_base_environment- Full name
databricks.databricks_environments_refresh_workspace_base_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_add_block Write
Files Add Block Official Databricks SDK endpoint: POST /api/2.0/dbfs/add-block Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_add_block- Full name
databricks.databricks_files_add_block
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_close Write
Files Close Official Databricks SDK endpoint: POST /api/2.0/dbfs/close Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_close- Full name
databricks.databricks_files_close
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_create Write
Files Create Official Databricks SDK endpoint: POST /api/2.0/dbfs/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_create- Full name
databricks.databricks_files_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_delete Write
Files Delete Official Databricks SDK endpoint: POST /api/2.0/dbfs/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_delete- Full name
databricks.databricks_files_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_get_status Read
Files Get Status Official Databricks SDK endpoint: GET /api/2.0/dbfs/get-status Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_get_status- Full name
databricks.databricks_files_get_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_list Read
Files List Official Databricks SDK endpoint: GET /api/2.0/dbfs/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_list- Full name
databricks.databricks_files_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_mkdirs Write
Files Mkdirs Official Databricks SDK endpoint: POST /api/2.0/dbfs/mkdirs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_mkdirs- Full name
databricks.databricks_files_mkdirs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_move Write
Files Move Official Databricks SDK endpoint: POST /api/2.0/dbfs/move Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_move- Full name
databricks.databricks_files_move
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_put Write
Files Put Official Databricks SDK endpoint: POST /api/2.0/dbfs/put Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_put- Full name
databricks.databricks_files_put
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_read Read
Files Read Official Databricks SDK endpoint: GET /api/2.0/dbfs/read Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_read- Full name
databricks.databricks_files_read
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_create_directory Write
Files Create Directory Official Databricks SDK endpoint: PUT /api/2.0/fs/directories{directory_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_create_directory- Full name
databricks.databricks_files_create_directory
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_delete_directory Write
Files Delete Directory Official Databricks SDK endpoint: DELETE /api/2.0/fs/directories{directory_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_delete_directory- Full name
databricks.databricks_files_delete_directory
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_get_directory_metadata Write
Files Get Directory Metadata Official Databricks SDK endpoint: HEAD /api/2.0/fs/directories{directory_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_get_directory_metadata- Full name
databricks.databricks_files_get_directory_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_list_directory_contents Read
Files List Directory Contents Official Databricks SDK endpoint: GET /api/2.0/fs/directories{directory_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_list_directory_contents- Full name
databricks.databricks_files_list_directory_contents
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_delete Write
Files Delete Official Databricks SDK endpoint: DELETE /api/2.0/fs/files{file_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_delete- Full name
databricks.databricks_files_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_download Read
Files Download Official Databricks SDK endpoint: GET /api/2.0/fs/files{file_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_download- Full name
databricks.databricks_files_download
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_get_metadata Write
Files Get Metadata Official Databricks SDK endpoint: HEAD /api/2.0/fs/files{file_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_get_metadata- Full name
databricks.databricks_files_get_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
files_upload Write
Files Upload Official Databricks SDK endpoint: PUT /api/2.0/fs/files{file_path} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.files_upload- Full name
databricks.databricks_files_upload
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_check_policy Read
Iam Check Policy Official Databricks SDK endpoint: GET /api/2.0/access-control/check-policy-v2 Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_check_policy- Full name
databricks.databricks_iam_check_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_create Write
Iam Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/scim/v2/Groups Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_create- Full name
databricks.databricks_iam_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_list Read
Iam List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/scim/v2/Groups Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_list- Full name
databricks.databricks_iam_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_delete Write
Iam Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_delete- Full name
databricks.databricks_iam_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_patch Write
Iam Patch Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_patch- Full name
databricks.databricks_iam_patch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_create Write
Iam Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/scim/v2/ServicePrincipals Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_create- Full name
databricks.databricks_iam_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_list Read
Iam List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/scim/v2/ServicePrincipals Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_list- Full name
databricks.databricks_iam_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_delete Write
Iam Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_delete- Full name
databricks.databricks_iam_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_patch Write
Iam Patch Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_patch- Full name
databricks.databricks_iam_patch_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_create Write
Iam Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/scim/v2/Users Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_create- Full name
databricks.databricks_iam_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_list Read
Iam List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/scim/v2/Users Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_list- Full name
databricks.databricks_iam_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_delete Write
Iam Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_delete- Full name
databricks.databricks_iam_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_patch Write
Iam Patch Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_patch- Full name
databricks.databricks_iam_patch_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_list Read
Iam List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/permissionassignments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_list- Full name
databricks.databricks_iam_list_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/permissionassignments/permissions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_delete Write
Iam Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/permissionassignments/principals/{principal_id} Generated from the official databricks-sdk-go surface, which is generated from Data
- Lua path
app.integrations.databricks.iam_delete- Full name
databricks.databricks_iam_delete_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/permissionassignments/principals/{principal_id} Generated from the official databricks-sdk-go surface, which is generated from Databri
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_migrate_permissions Write
Iam Migrate Permissions Official Databricks SDK endpoint: POST /api/2.0/permissionmigration Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_migrate_permissions- Full name
databricks.databricks_iam_migrate_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get_permissions Read
Iam Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/authorization/passwords Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get_permissions- Full name
databricks.databricks_iam_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_set_permissions Write
Iam Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/authorization/passwords Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_set_permissions- Full name
databricks.databricks_iam_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update_permissions Write
Iam Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/authorization/passwords Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update_permissions- Full name
databricks.databricks_iam_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get_permission_levels Read
Iam Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/authorization/passwords/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get_permission_levels- Full name
databricks.databricks_iam_get_permission_levels_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/permissions/{request_object_type}/{request_object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_set Write
Iam Set Official Databricks SDK endpoint: PUT /api/2.0/permissions/{request_object_type}/{request_object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_set- Full name
databricks.databricks_iam_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PATCH /api/2.0/permissions/{request_object_type}/{request_object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get_permission_levels Read
Iam Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/{request_object_type}/{request_object_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAP
- Lua path
app.integrations.databricks.iam_get_permission_levels- Full name
databricks.databricks_iam_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get_assignable_roles_resource Read
Iam Get Assignable Roles For Resource Official Databricks SDK endpoint: GET /api/2.0/preview/accounts/access-control/assignable-roles Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get_assignable_roles_resource- Full name
databricks.databricks_iam_get_assignable_roles_for_resource_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get_rule_set Read
Iam Get Rule Set Official Databricks SDK endpoint: GET /api/2.0/preview/accounts/access-control/rule-sets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get_rule_set- Full name
databricks.databricks_iam_get_rule_set_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update_rule_set Write
Iam Update Rule Set Official Databricks SDK endpoint: PUT /api/2.0/preview/accounts/access-control/rule-sets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update_rule_set- Full name
databricks.databricks_iam_update_rule_set_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get_assignable_roles_resource Read
Iam Get Assignable Roles For Resource Official Databricks SDK endpoint: GET /api/2.0/preview/accounts/{account_id}/access-control/assignable-roles Generated from the official databricks-sdk-go surface, which is generated from Databricks Ope
- Lua path
app.integrations.databricks.iam_get_assignable_roles_resource- Full name
databricks.databricks_iam_get_assignable_roles_for_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get_rule_set Read
Iam Get Rule Set Official Databricks SDK endpoint: GET /api/2.0/preview/accounts/{account_id}/access-control/rule-sets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get_rule_set- Full name
databricks.databricks_iam_get_rule_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update_rule_set Write
Iam Update Rule Set Official Databricks SDK endpoint: PUT /api/2.0/preview/accounts/{account_id}/access-control/rule-sets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update_rule_set- Full name
databricks.databricks_iam_update_rule_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_create Write
Iam Create Official Databricks SDK endpoint: POST /api/2.0/preview/scim/v2/Groups Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_create- Full name
databricks.databricks_iam_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_list Read
Iam List Official Databricks SDK endpoint: GET /api/2.0/preview/scim/v2/Groups Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_list- Full name
databricks.databricks_iam_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_delete Write
Iam Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_delete- Full name
databricks.databricks_iam_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/preview/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_patch Write
Iam Patch Official Databricks SDK endpoint: PATCH /api/2.0/preview/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_patch- Full name
databricks.databricks_iam_patch_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PUT /api/2.0/preview/scim/v2/Groups/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_me Read
Iam Me Official Databricks SDK endpoint: GET /api/2.0/preview/scim/v2/Me Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_me- Full name
databricks.databricks_iam_me
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_create Write
Iam Create Official Databricks SDK endpoint: POST /api/2.0/preview/scim/v2/ServicePrincipals Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_create- Full name
databricks.databricks_iam_create_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_list Read
Iam List Official Databricks SDK endpoint: GET /api/2.0/preview/scim/v2/ServicePrincipals Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_list- Full name
databricks.databricks_iam_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_delete Write
Iam Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_delete- Full name
databricks.databricks_iam_delete_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/preview/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_patch Write
Iam Patch Official Databricks SDK endpoint: PATCH /api/2.0/preview/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_patch- Full name
databricks.databricks_iam_patch_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PUT /api/2.0/preview/scim/v2/ServicePrincipals/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_create Write
Iam Create Official Databricks SDK endpoint: POST /api/2.0/preview/scim/v2/Users Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_create- Full name
databricks.databricks_iam_create_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_list Read
Iam List Official Databricks SDK endpoint: GET /api/2.0/preview/scim/v2/Users Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_list- Full name
databricks.databricks_iam_list_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_delete Write
Iam Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_delete- Full name
databricks.databricks_iam_delete_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_get Read
Iam Get Official Databricks SDK endpoint: GET /api/2.0/preview/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_get- Full name
databricks.databricks_iam_get_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_patch Write
Iam Patch Official Databricks SDK endpoint: PATCH /api/2.0/preview/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_patch- Full name
databricks.databricks_iam_patch_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iam_update Write
Iam Update Official Databricks SDK endpoint: PUT /api/2.0/preview/scim/v2/Users/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iam_update- Full name
databricks.databricks_iam_update_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_resolve_group Write
Iamv2 Resolve Group Official Databricks SDK endpoint: POST /api/2.0/identity/accounts/{account_id}/groups/resolveByExternalId Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iamv2_resolve_group- Full name
databricks.databricks_iamv2_resolve_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_resolve_service_principal Write
Iamv2 Resolve Service Principal Official Databricks SDK endpoint: POST /api/2.0/identity/accounts/{account_id}/servicePrincipals/resolveByExternalId Generated from the official databricks-sdk-go surface, which is generated from Databricks O
- Lua path
app.integrations.databricks.iamv2_resolve_service_principal- Full name
databricks.databricks_iamv2_resolve_service_principal
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_resolve_user Write
Iamv2 Resolve User Official Databricks SDK endpoint: POST /api/2.0/identity/accounts/{account_id}/users/resolveByExternalId Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iamv2_resolve_user- Full name
databricks.databricks_iamv2_resolve_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_get_workspace_access_detail Read
Iamv2 Get Workspace Access Detail Official Databricks SDK endpoint: GET /api/2.0/identity/accounts/{account_id}/workspaces/{workspace_id}/workspaceAccessDetails/{principal_id} Generated from the official databricks-sdk-go surface, which is
- Lua path
app.integrations.databricks.iamv2_get_workspace_access_detail- Full name
databricks.databricks_iamv2_get_workspace_access_detail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_resolve_group_proxy Write
Iamv2 Resolve Group Proxy Official Databricks SDK endpoint: POST /api/2.0/identity/groups/resolveByExternalId Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iamv2_resolve_group_proxy- Full name
databricks.databricks_iamv2_resolve_group_proxy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_resolve_service_principal_proxy Write
Iamv2 Resolve Service Principal Proxy Official Databricks SDK endpoint: POST /api/2.0/identity/servicePrincipals/resolveByExternalId Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iamv2_resolve_service_principal_proxy- Full name
databricks.databricks_iamv2_resolve_service_principal_proxy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_resolve_user_proxy Write
Iamv2 Resolve User Proxy Official Databricks SDK endpoint: POST /api/2.0/identity/users/resolveByExternalId Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iamv2_resolve_user_proxy- Full name
databricks.databricks_iamv2_resolve_user_proxy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
iamv2_get_workspace_access_detail_local Read
Iamv2 Get Workspace Access Detail Local Official Databricks SDK endpoint: GET /api/2.0/identity/workspaceAccessDetails/{principal_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.iamv2_get_workspace_access_detail_local- Full name
databricks.databricks_iamv2_get_workspace_access_detail_local
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_get_permissions Read
Jobs Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/jobs/{job_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_get_permissions- Full name
databricks.databricks_jobs_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_set_permissions Write
Jobs Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/jobs/{job_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_set_permissions- Full name
databricks.databricks_jobs_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_update_permissions Write
Jobs Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/jobs/{job_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_update_permissions- Full name
databricks.databricks_jobs_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_get_permission_levels Read
Jobs Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/jobs/{job_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_get_permission_levels- Full name
databricks.databricks_jobs_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_enforce_compliance Write
Jobs Enforce Compliance Official Databricks SDK endpoint: POST /api/2.0/policies/jobs/enforce-compliance Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_enforce_compliance- Full name
databricks.databricks_jobs_enforce_compliance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_get_compliance Read
Jobs Get Compliance Official Databricks SDK endpoint: GET /api/2.0/policies/jobs/get-compliance Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_get_compliance- Full name
databricks.databricks_jobs_get_compliance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_list_compliance Read
Jobs List Compliance Official Databricks SDK endpoint: GET /api/2.0/policies/jobs/list-compliance Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_list_compliance- Full name
databricks.databricks_jobs_list_compliance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_create Write
Jobs Create Official Databricks SDK endpoint: POST /api/2.2/jobs/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_create- Full name
databricks.databricks_jobs_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_delete Write
Jobs Delete Official Databricks SDK endpoint: POST /api/2.2/jobs/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_delete- Full name
databricks.databricks_jobs_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_get Read
Jobs Get Official Databricks SDK endpoint: GET /api/2.2/jobs/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_get- Full name
databricks.databricks_jobs_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_list Read
Jobs List Official Databricks SDK endpoint: GET /api/2.2/jobs/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_list- Full name
databricks.databricks_jobs_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_reset Write
Jobs Reset Official Databricks SDK endpoint: POST /api/2.2/jobs/reset Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_reset- Full name
databricks.databricks_jobs_reset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_run_now Write
Jobs Run Now Official Databricks SDK endpoint: POST /api/2.2/jobs/run-now Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_run_now- Full name
databricks.databricks_jobs_run_now
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_cancel_run Write
Jobs Cancel Run Official Databricks SDK endpoint: POST /api/2.2/jobs/runs/cancel Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_cancel_run- Full name
databricks.databricks_jobs_cancel_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_cancel_all_runs Write
Jobs Cancel All Runs Official Databricks SDK endpoint: POST /api/2.2/jobs/runs/cancel-all Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_cancel_all_runs- Full name
databricks.databricks_jobs_cancel_all_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_delete_run Write
Jobs Delete Run Official Databricks SDK endpoint: POST /api/2.2/jobs/runs/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_delete_run- Full name
databricks.databricks_jobs_delete_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_export_run Read
Jobs Export Run Official Databricks SDK endpoint: GET /api/2.2/jobs/runs/export Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_export_run- Full name
databricks.databricks_jobs_export_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_get_run Read
Jobs Get Run Official Databricks SDK endpoint: GET /api/2.2/jobs/runs/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_get_run- Full name
databricks.databricks_jobs_get_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_get_run_output Read
Jobs Get Run Output Official Databricks SDK endpoint: GET /api/2.2/jobs/runs/get-output Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_get_run_output- Full name
databricks.databricks_jobs_get_run_output
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_list_runs Read
Jobs List Runs Official Databricks SDK endpoint: GET /api/2.2/jobs/runs/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_list_runs- Full name
databricks.databricks_jobs_list_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_repair_run Write
Jobs Repair Run Official Databricks SDK endpoint: POST /api/2.2/jobs/runs/repair Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_repair_run- Full name
databricks.databricks_jobs_repair_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_submit Write
Jobs Submit Official Databricks SDK endpoint: POST /api/2.2/jobs/runs/submit Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_submit- Full name
databricks.databricks_jobs_submit
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jobs_update Write
Jobs Update Official Databricks SDK endpoint: POST /api/2.2/jobs/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.jobs_update- Full name
databricks.databricks_jobs_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_get_permissions Read
Knowledgeassistants Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/knowledge-assistants/{knowledge_assistant_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.knowledgeassistants_get_permissions- Full name
databricks.databricks_knowledgeassistants_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_set_permissions Write
Knowledgeassistants Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/knowledge-assistants/{knowledge_assistant_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.knowledgeassistants_set_permissions- Full name
databricks.databricks_knowledgeassistants_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_update_permissions Write
Knowledgeassistants Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/knowledge-assistants/{knowledge_assistant_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks Open
- Lua path
app.integrations.databricks.knowledgeassistants_update_permissions- Full name
databricks.databricks_knowledgeassistants_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_get_permission_levels Read
Knowledgeassistants Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/knowledge-assistants/{knowledge_assistant_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated fr
- Lua path
app.integrations.databricks.knowledgeassistants_get_permission_levels- Full name
databricks.databricks_knowledgeassistants_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_create_knowledge_assistant Write
Knowledgeassistants Create Knowledge Assistant Official Databricks SDK endpoint: POST /api/2.1/knowledge-assistants Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_create_knowledge_assistant- Full name
databricks.databricks_knowledgeassistants_create_knowledge_assistant
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_list_knowledge_assistants Read
Knowledgeassistants List Knowledge Assistants Official Databricks SDK endpoint: GET /api/2.1/knowledge-assistants Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_list_knowledge_assistants- Full name
databricks.databricks_knowledgeassistants_list_knowledge_assistants
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_delete_example Write
Knowledgeassistants Delete Example Official Databricks SDK endpoint: DELETE /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_delete_example- Full name
databricks.databricks_knowledgeassistants_delete_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_delete_knowledge_assistant Write
Knowledgeassistants Delete Knowledge Assistant Official Databricks SDK endpoint: DELETE /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_delete_knowledge_assistant- Full name
databricks.databricks_knowledgeassistants_delete_knowledge_assistant
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_delete_knowledge_source Write
Knowledgeassistants Delete Knowledge Source Official Databricks SDK endpoint: DELETE /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_delete_knowledge_source- Full name
databricks.databricks_knowledgeassistants_delete_knowledge_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_get_example Read
Knowledgeassistants Get Example Official Databricks SDK endpoint: GET /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_get_example- Full name
databricks.databricks_knowledgeassistants_get_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_get_knowledge_assistant Read
Knowledgeassistants Get Knowledge Assistant Official Databricks SDK endpoint: GET /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_get_knowledge_assistant- Full name
databricks.databricks_knowledgeassistants_get_knowledge_assistant
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_get_knowledge_source Read
Knowledgeassistants Get Knowledge Source Official Databricks SDK endpoint: GET /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_get_knowledge_source- Full name
databricks.databricks_knowledgeassistants_get_knowledge_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_update_example Write
Knowledgeassistants Update Example Official Databricks SDK endpoint: PATCH /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_update_example- Full name
databricks.databricks_knowledgeassistants_update_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_update_knowledge_assistant Write
Knowledgeassistants Update Knowledge Assistant Official Databricks SDK endpoint: PATCH /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_update_knowledge_assistant- Full name
databricks.databricks_knowledgeassistants_update_knowledge_assistant
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_update_knowledge_source Write
Knowledgeassistants Update Knowledge Source Official Databricks SDK endpoint: PATCH /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_update_knowledge_source- Full name
databricks.databricks_knowledgeassistants_update_knowledge_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_sync_knowledge_sources Write
Knowledgeassistants Sync Knowledge Sources Official Databricks SDK endpoint: POST /api/2.1/{name}/knowledge-sources:sync Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_sync_knowledge_sources- Full name
databricks.databricks_knowledgeassistants_sync_knowledge_sources
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_create_example Write
Knowledgeassistants Create Example Official Databricks SDK endpoint: POST /api/2.1/{parent}/examples Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_create_example- Full name
databricks.databricks_knowledgeassistants_create_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_list_examples Read
Knowledgeassistants List Examples Official Databricks SDK endpoint: GET /api/2.1/{parent}/examples Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_list_examples- Full name
databricks.databricks_knowledgeassistants_list_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_create_knowledge_source Write
Knowledgeassistants Create Knowledge Source Official Databricks SDK endpoint: POST /api/2.1/{parent}/knowledge-sources Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_create_knowledge_source- Full name
databricks.databricks_knowledgeassistants_create_knowledge_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
knowledgeassistants_list_knowledge_sources Read
Knowledgeassistants List Knowledge Sources Official Databricks SDK endpoint: GET /api/2.1/{parent}/knowledge-sources Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.knowledgeassistants_list_knowledge_sources- Full name
databricks.databricks_knowledgeassistants_list_knowledge_sources
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.0/marketplace-exchange/exchanges Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.0/marketplace-exchange/exchanges Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_add_listing_exchange Write
Marketplace Add Listing To Exchange Official Databricks SDK endpoint: POST /api/2.0/marketplace-exchange/exchanges-for-listing Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_add_listing_exchange- Full name
databricks.databricks_marketplace_add_listing_to_exchange
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list_exchanges_listing Read
Marketplace List Exchanges For Listing Official Databricks SDK endpoint: GET /api/2.0/marketplace-exchange/exchanges-for-listing Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list_exchanges_listing- Full name
databricks.databricks_marketplace_list_exchanges_for_listing
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_delete_listing_from_exchange Write
Marketplace Delete Listing From Exchange Official Databricks SDK endpoint: DELETE /api/2.0/marketplace-exchange/exchanges-for-listing/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spe
- Lua path
app.integrations.databricks.marketplace_delete_listing_from_exchange- Full name
databricks.databricks_marketplace_delete_listing_from_exchange
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_delete Write
Marketplace Delete Official Databricks SDK endpoint: DELETE /api/2.0/marketplace-exchange/exchanges/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_delete- Full name
databricks.databricks_marketplace_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.0/marketplace-exchange/exchanges/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_update Write
Marketplace Update Official Databricks SDK endpoint: PUT /api/2.0/marketplace-exchange/exchanges/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_update- Full name
databricks.databricks_marketplace_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.0/marketplace-exchange/filters Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.0/marketplace-exchange/filters Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_delete Write
Marketplace Delete Official Databricks SDK endpoint: DELETE /api/2.0/marketplace-exchange/filters/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_delete- Full name
databricks.databricks_marketplace_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_update Write
Marketplace Update Official Databricks SDK endpoint: PUT /api/2.0/marketplace-exchange/filters/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_update- Full name
databricks.databricks_marketplace_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list_listings_exchange Read
Marketplace List Listings For Exchange Official Databricks SDK endpoint: GET /api/2.0/marketplace-exchange/listings-for-exchange Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list_listings_exchange- Full name
databricks.databricks_marketplace_list_listings_for_exchange
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.0/marketplace-provider/analytics_dashboard Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/analytics_dashboard Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get_latest_version Read
Marketplace Get Latest Version Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/analytics_dashboard/latest Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get_latest_version- Full name
databricks.databricks_marketplace_get_latest_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_update Write
Marketplace Update Official Databricks SDK endpoint: PUT /api/2.0/marketplace-provider/analytics_dashboard/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_update- Full name
databricks.databricks_marketplace_update_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.0/marketplace-provider/files Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/files Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_delete Write
Marketplace Delete Official Databricks SDK endpoint: DELETE /api/2.0/marketplace-provider/files/{file_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_delete- Full name
databricks.databricks_marketplace_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/files/{file_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.0/marketplace-provider/listing Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/listings Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_delete Write
Marketplace Delete Official Databricks SDK endpoint: DELETE /api/2.0/marketplace-provider/listings/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_delete- Full name
databricks.databricks_marketplace_delete_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/listings/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_update Write
Marketplace Update Official Databricks SDK endpoint: PUT /api/2.0/marketplace-provider/listings/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_update- Full name
databricks.databricks_marketplace_update_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_update Write
Marketplace Update Official Databricks SDK endpoint: PUT /api/2.0/marketplace-provider/listings/{listing_id}/personalization-requests/{request_id}/request-status Generated from the official databricks-sdk-go surface, which is generated from
- Lua path
app.integrations.databricks.marketplace_update- Full name
databricks.databricks_marketplace_update_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/personalization-requests Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.0/marketplace-provider/provider Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/providers Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_delete Write
Marketplace Delete Official Databricks SDK endpoint: DELETE /api/2.0/marketplace-provider/providers/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_delete- Full name
databricks.databricks_marketplace_delete_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.0/marketplace-provider/providers/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_update Write
Marketplace Update Official Databricks SDK endpoint: PUT /api/2.0/marketplace-provider/providers/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_update- Full name
databricks.databricks_marketplace_update_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/installations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/listings Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/listings/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/listings/{listing_id}/content Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/listings/{listing_id}/fulfillments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.1/marketplace-consumer/listings/{listing_id}/installations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list_listing_installations Read
Marketplace List Listing Installations Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/listings/{listing_id}/installations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.marketplace_list_listing_installations- Full name
databricks.databricks_marketplace_list_listing_installations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_delete Write
Marketplace Delete Official Databricks SDK endpoint: DELETE /api/2.1/marketplace-consumer/listings/{listing_id}/installations/{installation_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAP
- Lua path
app.integrations.databricks.marketplace_delete- Full name
databricks.databricks_marketplace_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_update Write
Marketplace Update Official Databricks SDK endpoint: PUT /api/2.1/marketplace-consumer/listings/{listing_id}/installations/{installation_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.marketplace_update- Full name
databricks.databricks_marketplace_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_create Write
Marketplace Create Official Databricks SDK endpoint: POST /api/2.1/marketplace-consumer/listings/{listing_id}/personalization-requests Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_create- Full name
databricks.databricks_marketplace_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/listings/{listing_id}/personalization-requests Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_batch_get Read
Marketplace Batch Get Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/listings:batchGet Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_batch_get- Full name
databricks.databricks_marketplace_batch_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/personalization-requests Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_list Read
Marketplace List Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/providers Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_list- Full name
databricks.databricks_marketplace_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_get Read
Marketplace Get Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/providers/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_get- Full name
databricks.databricks_marketplace_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_batch_get Read
Marketplace Batch Get Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/providers:batchGet Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_batch_get- Full name
databricks.databricks_marketplace_batch_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
marketplace_search Read
Marketplace Search Official Databricks SDK endpoint: GET /api/2.1/marketplace-consumer/search-listings Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.marketplace_search- Full name
databricks.databricks_marketplace_search
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_experiment Write
Ml Create Experiment Official Databricks SDK endpoint: POST /api/2.0/automl/create-forecasting-experiment Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_experiment- Full name
databricks.databricks_ml_create_experiment_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_experiment Read
Ml Get Experiment Official Databricks SDK endpoint: GET /api/2.0/automl/get-forecasting-experiment/{experiment_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_experiment- Full name
databricks.databricks_ml_get_experiment_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_feature Write
Ml Create Feature Official Databricks SDK endpoint: POST /api/2.0/feature-engineering/features Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_feature- Full name
databricks.databricks_ml_create_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_features Read
Ml List Features Official Databricks SDK endpoint: GET /api/2.0/feature-engineering/features Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_features- Full name
databricks.databricks_ml_list_features
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_kafka_config Write
Ml Create Kafka Config Official Databricks SDK endpoint: POST /api/2.0/feature-engineering/features/kafka-configs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_kafka_config- Full name
databricks.databricks_ml_create_kafka_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_kafka_configs Read
Ml List Kafka Configs Official Databricks SDK endpoint: GET /api/2.0/feature-engineering/features/kafka-configs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_kafka_configs- Full name
databricks.databricks_ml_list_kafka_configs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_kafka_config Write
Ml Delete Kafka Config Official Databricks SDK endpoint: DELETE /api/2.0/feature-engineering/features/kafka-configs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_kafka_config- Full name
databricks.databricks_ml_delete_kafka_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_kafka_config Read
Ml Get Kafka Config Official Databricks SDK endpoint: GET /api/2.0/feature-engineering/features/kafka-configs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_kafka_config- Full name
databricks.databricks_ml_get_kafka_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_kafka_config Write
Ml Update Kafka Config Official Databricks SDK endpoint: PATCH /api/2.0/feature-engineering/features/kafka-configs/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_kafka_config- Full name
databricks.databricks_ml_update_kafka_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_feature Write
Ml Delete Feature Official Databricks SDK endpoint: DELETE /api/2.0/feature-engineering/features/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_feature- Full name
databricks.databricks_ml_delete_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_feature Read
Ml Get Feature Official Databricks SDK endpoint: GET /api/2.0/feature-engineering/features/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_feature- Full name
databricks.databricks_ml_get_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_feature Write
Ml Update Feature Official Databricks SDK endpoint: PATCH /api/2.0/feature-engineering/features/{full_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_feature- Full name
databricks.databricks_ml_update_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_materialized_feature Write
Ml Create Materialized Feature Official Databricks SDK endpoint: POST /api/2.0/feature-engineering/materialized-features Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_materialized_feature- Full name
databricks.databricks_ml_create_materialized_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_materialized_features Read
Ml List Materialized Features Official Databricks SDK endpoint: GET /api/2.0/feature-engineering/materialized-features Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_materialized_features- Full name
databricks.databricks_ml_list_materialized_features
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_materialized_feature Write
Ml Delete Materialized Feature Official Databricks SDK endpoint: DELETE /api/2.0/feature-engineering/materialized-features/{materialized_feature_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks O
- Lua path
app.integrations.databricks.ml_delete_materialized_feature- Full name
databricks.databricks_ml_delete_materialized_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_materialized_feature Read
Ml Get Materialized Feature Official Databricks SDK endpoint: GET /api/2.0/feature-engineering/materialized-features/{materialized_feature_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.ml_get_materialized_feature- Full name
databricks.databricks_ml_get_materialized_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_materialized_feature Write
Ml Update Materialized Feature Official Databricks SDK endpoint: PATCH /api/2.0/feature-engineering/materialized-features/{materialized_feature_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks Op
- Lua path
app.integrations.databricks.ml_update_materialized_feature- Full name
databricks.databricks_ml_update_materialized_feature
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_batch_create_materialized_features Write
Ml Batch Create Materialized Features Official Databricks SDK endpoint: POST /api/2.0/feature-engineering/materialized-features:batchCreate Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI sp
- Lua path
app.integrations.databricks.ml_batch_create_materialized_features- Full name
databricks.databricks_ml_batch_create_materialized_features
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_feature_lineage Read
Ml Get Feature Lineage Official Databricks SDK endpoint: GET /api/2.0/feature-store/feature-tables/{table_name}/features/{feature_name}/lineage Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAP
- Lua path
app.integrations.databricks.ml_get_feature_lineage- Full name
databricks.databricks_ml_get_feature_lineage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_feature_tag Write
Ml Create Feature Tag Official Databricks SDK endpoint: POST /api/2.0/feature-store/feature-tables/{table_name}/features/{feature_name}/tags Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.ml_create_feature_tag- Full name
databricks.databricks_ml_create_feature_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_feature_tags Read
Ml List Feature Tags Official Databricks SDK endpoint: GET /api/2.0/feature-store/feature-tables/{table_name}/features/{feature_name}/tags Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spe
- Lua path
app.integrations.databricks.ml_list_feature_tags- Full name
databricks.databricks_ml_list_feature_tags
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_feature_tag Write
Ml Delete Feature Tag Official Databricks SDK endpoint: DELETE /api/2.0/feature-store/feature-tables/{table_name}/features/{feature_name}/tags/{key} Generated from the official databricks-sdk-go surface, which is generated from Databricks O
- Lua path
app.integrations.databricks.ml_delete_feature_tag- Full name
databricks.databricks_ml_delete_feature_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_feature_tag Read
Ml Get Feature Tag Official Databricks SDK endpoint: GET /api/2.0/feature-store/feature-tables/{table_name}/features/{feature_name}/tags/{key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.ml_get_feature_tag- Full name
databricks.databricks_ml_get_feature_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_feature_tag Write
Ml Update Feature Tag Official Databricks SDK endpoint: PATCH /api/2.0/feature-store/feature-tables/{table_name}/features/{feature_name}/tags/{key} Generated from the official databricks-sdk-go surface, which is generated from Databricks Op
- Lua path
app.integrations.databricks.ml_update_feature_tag- Full name
databricks.databricks_ml_update_feature_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_online_store Write
Ml Create Online Store Official Databricks SDK endpoint: POST /api/2.0/feature-store/online-stores Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_online_store- Full name
databricks.databricks_ml_create_online_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_online_stores Read
Ml List Online Stores Official Databricks SDK endpoint: GET /api/2.0/feature-store/online-stores Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_online_stores- Full name
databricks.databricks_ml_list_online_stores
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_online_store Write
Ml Delete Online Store Official Databricks SDK endpoint: DELETE /api/2.0/feature-store/online-stores/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_online_store- Full name
databricks.databricks_ml_delete_online_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_online_store Read
Ml Get Online Store Official Databricks SDK endpoint: GET /api/2.0/feature-store/online-stores/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_online_store- Full name
databricks.databricks_ml_get_online_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_online_store Write
Ml Update Online Store Official Databricks SDK endpoint: PATCH /api/2.0/feature-store/online-stores/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_online_store- Full name
databricks.databricks_ml_update_online_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_online_table Write
Ml Delete Online Table Official Databricks SDK endpoint: DELETE /api/2.0/feature-store/online-tables/{online_table_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_online_table- Full name
databricks.databricks_ml_delete_online_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_publish_table Write
Ml Publish Table Official Databricks SDK endpoint: POST /api/2.0/feature-store/tables/{source_table_name}/publish Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_publish_table- Full name
databricks.databricks_ml_publish_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_artifacts Read
Ml List Artifacts Official Databricks SDK endpoint: GET /api/2.0/mlflow/artifacts/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_artifacts- Full name
databricks.databricks_ml_list_artifacts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_comment Write
Ml Create Comment Official Databricks SDK endpoint: POST /api/2.0/mlflow/comments/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_comment- Full name
databricks.databricks_ml_create_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_comment Write
Ml Delete Comment Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/comments/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_comment- Full name
databricks.databricks_ml_delete_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_comment Write
Ml Update Comment Official Databricks SDK endpoint: PATCH /api/2.0/mlflow/comments/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_comment- Full name
databricks.databricks_ml_update_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_transition_stage Write
Ml Transition Stage Official Databricks SDK endpoint: POST /api/2.0/mlflow/databricks/model-versions/transition-stage Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_transition_stage- Full name
databricks.databricks_ml_transition_stage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_model Read
Ml Get Model Official Databricks SDK endpoint: GET /api/2.0/mlflow/databricks/registered-models/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_model- Full name
databricks.databricks_ml_get_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_runs Write
Ml Delete Runs Official Databricks SDK endpoint: POST /api/2.0/mlflow/databricks/runs/delete-runs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_runs- Full name
databricks.databricks_ml_delete_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_restore_runs Write
Ml Restore Runs Official Databricks SDK endpoint: POST /api/2.0/mlflow/databricks/runs/restore-runs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_restore_runs- Full name
databricks.databricks_ml_restore_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_experiment Write
Ml Create Experiment Official Databricks SDK endpoint: POST /api/2.0/mlflow/experiments/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_experiment- Full name
databricks.databricks_ml_create_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_experiment Write
Ml Delete Experiment Official Databricks SDK endpoint: POST /api/2.0/mlflow/experiments/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_experiment- Full name
databricks.databricks_ml_delete_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_experiment Read
Ml Get Experiment Official Databricks SDK endpoint: GET /api/2.0/mlflow/experiments/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_experiment- Full name
databricks.databricks_ml_get_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_by_name Read
Ml Get By Name Official Databricks SDK endpoint: GET /api/2.0/mlflow/experiments/get-by-name Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_by_name- Full name
databricks.databricks_ml_get_by_name
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_experiments Read
Ml List Experiments Official Databricks SDK endpoint: GET /api/2.0/mlflow/experiments/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_experiments- Full name
databricks.databricks_ml_list_experiments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_restore_experiment Write
Ml Restore Experiment Official Databricks SDK endpoint: POST /api/2.0/mlflow/experiments/restore Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_restore_experiment- Full name
databricks.databricks_ml_restore_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_search_experiments Write
Ml Search Experiments Official Databricks SDK endpoint: POST /api/2.0/mlflow/experiments/search Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_search_experiments- Full name
databricks.databricks_ml_search_experiments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_set_experiment_tag Write
Ml Set Experiment Tag Official Databricks SDK endpoint: POST /api/2.0/mlflow/experiments/set-experiment-tag Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_set_experiment_tag- Full name
databricks.databricks_ml_set_experiment_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_experiment Write
Ml Update Experiment Official Databricks SDK endpoint: POST /api/2.0/mlflow/experiments/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_experiment- Full name
databricks.databricks_ml_update_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_logged_model Write
Ml Create Logged Model Official Databricks SDK endpoint: POST /api/2.0/mlflow/logged-models Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_logged_model- Full name
databricks.databricks_ml_create_logged_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_search_logged_models Write
Ml Search Logged Models Official Databricks SDK endpoint: POST /api/2.0/mlflow/logged-models/search Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_search_logged_models- Full name
databricks.databricks_ml_search_logged_models
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_logged_model Write
Ml Delete Logged Model Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/logged-models/{model_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_logged_model- Full name
databricks.databricks_ml_delete_logged_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_finalize_logged_model Write
Ml Finalize Logged Model Official Databricks SDK endpoint: PATCH /api/2.0/mlflow/logged-models/{model_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_finalize_logged_model- Full name
databricks.databricks_ml_finalize_logged_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_logged_model Read
Ml Get Logged Model Official Databricks SDK endpoint: GET /api/2.0/mlflow/logged-models/{model_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_logged_model- Full name
databricks.databricks_ml_get_logged_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_log_logged_model_params Write
Ml Log Logged Model Params Official Databricks SDK endpoint: POST /api/2.0/mlflow/logged-models/{model_id}/params Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_log_logged_model_params- Full name
databricks.databricks_ml_log_logged_model_params
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_set_logged_model_tags Write
Ml Set Logged Model Tags Official Databricks SDK endpoint: PATCH /api/2.0/mlflow/logged-models/{model_id}/tags Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_set_logged_model_tags- Full name
databricks.databricks_ml_set_logged_model_tags
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_logged_model_tag Write
Ml Delete Logged Model Tag Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/logged-models/{model_id}/tags/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_logged_model_tag- Full name
databricks.databricks_ml_delete_logged_model_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_history Read
Ml Get History Official Databricks SDK endpoint: GET /api/2.0/mlflow/metrics/get-history Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_history- Full name
databricks.databricks_ml_get_history
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_model_version Write
Ml Create Model Version Official Databricks SDK endpoint: POST /api/2.0/mlflow/model-versions/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_model_version- Full name
databricks.databricks_ml_create_model_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_model_version Write
Ml Delete Model Version Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/model-versions/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_model_version- Full name
databricks.databricks_ml_delete_model_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_model_version_tag Write
Ml Delete Model Version Tag Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/model-versions/delete-tag Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_model_version_tag- Full name
databricks.databricks_ml_delete_model_version_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_model_version Read
Ml Get Model Version Official Databricks SDK endpoint: GET /api/2.0/mlflow/model-versions/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_model_version- Full name
databricks.databricks_ml_get_model_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_model_version_download_uri Read
Ml Get Model Version Download Uri Official Databricks SDK endpoint: GET /api/2.0/mlflow/model-versions/get-download-uri Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_model_version_download_uri- Full name
databricks.databricks_ml_get_model_version_download_uri
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_search_model_versions Read
Ml Search Model Versions Official Databricks SDK endpoint: GET /api/2.0/mlflow/model-versions/search Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_search_model_versions- Full name
databricks.databricks_ml_search_model_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_set_model_version_tag Write
Ml Set Model Version Tag Official Databricks SDK endpoint: POST /api/2.0/mlflow/model-versions/set-tag Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_set_model_version_tag- Full name
databricks.databricks_ml_set_model_version_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_model_version Write
Ml Update Model Version Official Databricks SDK endpoint: PATCH /api/2.0/mlflow/model-versions/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_model_version- Full name
databricks.databricks_ml_update_model_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_model Write
Ml Create Model Official Databricks SDK endpoint: POST /api/2.0/mlflow/registered-models/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_model- Full name
databricks.databricks_ml_create_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_model Write
Ml Delete Model Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/registered-models/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_model- Full name
databricks.databricks_ml_delete_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_model_tag Write
Ml Delete Model Tag Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/registered-models/delete-tag Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_model_tag- Full name
databricks.databricks_ml_delete_model_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_latest_versions Write
Ml Get Latest Versions Official Databricks SDK endpoint: POST /api/2.0/mlflow/registered-models/get-latest-versions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_latest_versions- Full name
databricks.databricks_ml_get_latest_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_models Read
Ml List Models Official Databricks SDK endpoint: GET /api/2.0/mlflow/registered-models/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_models- Full name
databricks.databricks_ml_list_models
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_rename_model Write
Ml Rename Model Official Databricks SDK endpoint: POST /api/2.0/mlflow/registered-models/rename Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_rename_model- Full name
databricks.databricks_ml_rename_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_search_models Read
Ml Search Models Official Databricks SDK endpoint: GET /api/2.0/mlflow/registered-models/search Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_search_models- Full name
databricks.databricks_ml_search_models
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_set_model_tag Write
Ml Set Model Tag Official Databricks SDK endpoint: POST /api/2.0/mlflow/registered-models/set-tag Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_set_model_tag- Full name
databricks.databricks_ml_set_model_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_model Write
Ml Update Model Official Databricks SDK endpoint: PATCH /api/2.0/mlflow/registered-models/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_model- Full name
databricks.databricks_ml_update_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_webhook Write
Ml Create Webhook Official Databricks SDK endpoint: POST /api/2.0/mlflow/registry-webhooks/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_webhook- Full name
databricks.databricks_ml_create_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_webhook Write
Ml Delete Webhook Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/registry-webhooks/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_webhook- Full name
databricks.databricks_ml_delete_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_webhooks Read
Ml List Webhooks Official Databricks SDK endpoint: GET /api/2.0/mlflow/registry-webhooks/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_webhooks- Full name
databricks.databricks_ml_list_webhooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_test_registry_webhook Write
Ml Test Registry Webhook Official Databricks SDK endpoint: POST /api/2.0/mlflow/registry-webhooks/test Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_test_registry_webhook- Full name
databricks.databricks_ml_test_registry_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_webhook Write
Ml Update Webhook Official Databricks SDK endpoint: PATCH /api/2.0/mlflow/registry-webhooks/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_webhook- Full name
databricks.databricks_ml_update_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_run Write
Ml Create Run Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_run- Full name
databricks.databricks_ml_create_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_run Write
Ml Delete Run Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_run- Full name
databricks.databricks_ml_delete_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_tag Write
Ml Delete Tag Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/delete-tag Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_tag- Full name
databricks.databricks_ml_delete_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_run Read
Ml Get Run Official Databricks SDK endpoint: GET /api/2.0/mlflow/runs/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_run- Full name
databricks.databricks_ml_get_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_log_batch Write
Ml Log Batch Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/log-batch Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_log_batch- Full name
databricks.databricks_ml_log_batch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_log_inputs Write
Ml Log Inputs Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/log-inputs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_log_inputs- Full name
databricks.databricks_ml_log_inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_log_metric Write
Ml Log Metric Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/log-metric Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_log_metric- Full name
databricks.databricks_ml_log_metric
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_log_model Write
Ml Log Model Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/log-model Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_log_model- Full name
databricks.databricks_ml_log_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_log_param Write
Ml Log Param Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/log-parameter Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_log_param- Full name
databricks.databricks_ml_log_param
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_log_outputs Write
Ml Log Outputs Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/outputs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_log_outputs- Full name
databricks.databricks_ml_log_outputs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_restore_run Write
Ml Restore Run Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/restore Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_restore_run- Full name
databricks.databricks_ml_restore_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_search_runs Write
Ml Search Runs Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/search Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_search_runs- Full name
databricks.databricks_ml_search_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_set_tag Write
Ml Set Tag Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/set-tag Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_set_tag- Full name
databricks.databricks_ml_set_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_run Write
Ml Update Run Official Databricks SDK endpoint: POST /api/2.0/mlflow/runs/update Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_run- Full name
databricks.databricks_ml_update_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_approve_transition_request Write
Ml Approve Transition Request Official Databricks SDK endpoint: POST /api/2.0/mlflow/transition-requests/approve Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_approve_transition_request- Full name
databricks.databricks_ml_approve_transition_request
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_create_transition_request Write
Ml Create Transition Request Official Databricks SDK endpoint: POST /api/2.0/mlflow/transition-requests/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_create_transition_request- Full name
databricks.databricks_ml_create_transition_request
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_delete_transition_request Write
Ml Delete Transition Request Official Databricks SDK endpoint: DELETE /api/2.0/mlflow/transition-requests/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_delete_transition_request- Full name
databricks.databricks_ml_delete_transition_request
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_list_transition_requests Read
Ml List Transition Requests Official Databricks SDK endpoint: GET /api/2.0/mlflow/transition-requests/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_list_transition_requests- Full name
databricks.databricks_ml_list_transition_requests
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_reject_transition_request Write
Ml Reject Transition Request Official Databricks SDK endpoint: POST /api/2.0/mlflow/transition-requests/reject Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_reject_transition_request- Full name
databricks.databricks_ml_reject_transition_request
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_permissions Read
Ml Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/experiments/{experiment_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_permissions- Full name
databricks.databricks_ml_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_set_permissions Write
Ml Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/experiments/{experiment_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_set_permissions- Full name
databricks.databricks_ml_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_permissions Write
Ml Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/experiments/{experiment_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_permissions- Full name
databricks.databricks_ml_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_permission_levels Read
Ml Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/experiments/{experiment_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_permission_levels- Full name
databricks.databricks_ml_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_permissions Read
Ml Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/registered-models/{registered_model_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_get_permissions- Full name
databricks.databricks_ml_get_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_set_permissions Write
Ml Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/registered-models/{registered_model_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_set_permissions- Full name
databricks.databricks_ml_set_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_update_permissions Write
Ml Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/registered-models/{registered_model_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.ml_update_permissions- Full name
databricks.databricks_ml_update_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ml_get_permission_levels Read
Ml Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/registered-models/{registered_model_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.ml_get_permission_levels- Full name
databricks.databricks_ml_get_permission_levels_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
networking_delete_endpoint Write
Networking Delete Endpoint Official Databricks SDK endpoint: DELETE /api/networking/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.networking_delete_endpoint- Full name
databricks.databricks_networking_delete_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
networking_get_endpoint Read
Networking Get Endpoint Official Databricks SDK endpoint: GET /api/networking/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.networking_get_endpoint- Full name
databricks.databricks_networking_get_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
networking_create_endpoint Write
Networking Create Endpoint Official Databricks SDK endpoint: POST /api/networking/v1/{parent}/endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.networking_create_endpoint- Full name
databricks.databricks_networking_create_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
networking_list_endpoints Read
Networking List Endpoints Official Databricks SDK endpoint: GET /api/networking/v1/{parent}/endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.networking_list_endpoints- Full name
databricks.databricks_networking_list_endpoints
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_create Write
Oauth2 Create Official Databricks SDK endpoint: POST /api/2.0/accounts/servicePrincipals/{service_principal_id}/credentials/secrets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_create- Full name
databricks.databricks_oauth2_create_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_list Read
Oauth2 List Official Databricks SDK endpoint: GET /api/2.0/accounts/servicePrincipals/{service_principal_id}/credentials/secrets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_list- Full name
databricks.databricks_oauth2_list_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_delete Write
Oauth2 Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/servicePrincipals/{service_principal_id}/credentials/secrets/{secret_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks Open
- Lua path
app.integrations.databricks.oauth2_delete- Full name
databricks.databricks_oauth2_delete_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_create Write
Oauth2 Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/federationPolicies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_create- Full name
databricks.databricks_oauth2_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_list Read
Oauth2 List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/federationPolicies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_list- Full name
databricks.databricks_oauth2_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_delete Write
Oauth2 Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/federationPolicies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_delete- Full name
databricks.databricks_oauth2_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_get Read
Oauth2 Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/federationPolicies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_get- Full name
databricks.databricks_oauth2_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_update Write
Oauth2 Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/federationPolicies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_update- Full name
databricks.databricks_oauth2_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_create Write
Oauth2 Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/oauth2/custom-app-integrations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_create- Full name
databricks.databricks_oauth2_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_list Read
Oauth2 List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/oauth2/custom-app-integrations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_list- Full name
databricks.databricks_oauth2_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_delete Write
Oauth2 Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/oauth2/custom-app-integrations/{integration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_delete- Full name
databricks.databricks_oauth2_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_get Read
Oauth2 Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/oauth2/custom-app-integrations/{integration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_get- Full name
databricks.databricks_oauth2_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_update Write
Oauth2 Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/oauth2/custom-app-integrations/{integration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_update- Full name
databricks.databricks_oauth2_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_create Write
Oauth2 Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/oauth2/published-app-integrations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_create- Full name
databricks.databricks_oauth2_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_list Read
Oauth2 List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/oauth2/published-app-integrations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_list- Full name
databricks.databricks_oauth2_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_delete Write
Oauth2 Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/oauth2/published-app-integrations/{integration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.oauth2_delete- Full name
databricks.databricks_oauth2_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_get Read
Oauth2 Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/oauth2/published-app-integrations/{integration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_get- Full name
databricks.databricks_oauth2_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_update Write
Oauth2 Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/oauth2/published-app-integrations/{integration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_update- Full name
databricks.databricks_oauth2_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_list Read
Oauth2 List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/oauth2/published-apps Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.oauth2_list- Full name
databricks.databricks_oauth2_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_create Write
Oauth2 Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/credentials/secrets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenA
- Lua path
app.integrations.databricks.oauth2_create- Full name
databricks.databricks_oauth2_create_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_list Read
Oauth2 List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/credentials/secrets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.oauth2_list- Full name
databricks.databricks_oauth2_list_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_delete Write
Oauth2 Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/credentials/secrets/{secret_id} Generated from the official databricks-sdk-go surface, which is generated from Da
- Lua path
app.integrations.databricks.oauth2_delete- Full name
databricks.databricks_oauth2_delete_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_create Write
Oauth2 Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/federationPolicies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAP
- Lua path
app.integrations.databricks.oauth2_create- Full name
databricks.databricks_oauth2_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_list Read
Oauth2 List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/federationPolicies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.oauth2_list- Full name
databricks.databricks_oauth2_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_delete Write
Oauth2 Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/federationPolicies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Dat
- Lua path
app.integrations.databricks.oauth2_delete- Full name
databricks.databricks_oauth2_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_get Read
Oauth2 Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/federationPolicies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databrick
- Lua path
app.integrations.databricks.oauth2_get- Full name
databricks.databricks_oauth2_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauth2_update Write
Oauth2 Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/servicePrincipals/{service_principal_id}/federationPolicies/{policy_id} Generated from the official databricks-sdk-go surface, which is generated from Data
- Lua path
app.integrations.databricks.oauth2_update- Full name
databricks.databricks_oauth2_update_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_get_permissions Read
Pipelines Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/pipelines/{pipeline_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_get_permissions- Full name
databricks.databricks_pipelines_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_set_permissions Write
Pipelines Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/pipelines/{pipeline_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_set_permissions- Full name
databricks.databricks_pipelines_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_update_permissions Write
Pipelines Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/pipelines/{pipeline_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_update_permissions- Full name
databricks.databricks_pipelines_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_get_permission_levels Read
Pipelines Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/pipelines/{pipeline_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_get_permission_levels- Full name
databricks.databricks_pipelines_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_create Write
Pipelines Create Official Databricks SDK endpoint: POST /api/2.0/pipelines Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_create- Full name
databricks.databricks_pipelines_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_list_pipelines Read
Pipelines List Pipelines Official Databricks SDK endpoint: GET /api/2.0/pipelines Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_list_pipelines- Full name
databricks.databricks_pipelines_list_pipelines
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_delete Write
Pipelines Delete Official Databricks SDK endpoint: DELETE /api/2.0/pipelines/{pipeline_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_delete- Full name
databricks.databricks_pipelines_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_get Read
Pipelines Get Official Databricks SDK endpoint: GET /api/2.0/pipelines/{pipeline_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_get- Full name
databricks.databricks_pipelines_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_update Write
Pipelines Update Official Databricks SDK endpoint: PUT /api/2.0/pipelines/{pipeline_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_update- Full name
databricks.databricks_pipelines_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_clone Write
Pipelines Clone Official Databricks SDK endpoint: POST /api/2.0/pipelines/{pipeline_id}/clone Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_clone- Full name
databricks.databricks_pipelines_clone
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_apply_environment Write
Pipelines Apply Environment Official Databricks SDK endpoint: POST /api/2.0/pipelines/{pipeline_id}/environment/apply Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_apply_environment- Full name
databricks.databricks_pipelines_apply_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_list_pipeline_events Read
Pipelines List Pipeline Events Official Databricks SDK endpoint: GET /api/2.0/pipelines/{pipeline_id}/events Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_list_pipeline_events- Full name
databricks.databricks_pipelines_list_pipeline_events
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_stop Write
Pipelines Stop Official Databricks SDK endpoint: POST /api/2.0/pipelines/{pipeline_id}/stop Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_stop- Full name
databricks.databricks_pipelines_stop
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_list_updates Read
Pipelines List Updates Official Databricks SDK endpoint: GET /api/2.0/pipelines/{pipeline_id}/updates Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_list_updates- Full name
databricks.databricks_pipelines_list_updates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_start_update Write
Pipelines Start Update Official Databricks SDK endpoint: POST /api/2.0/pipelines/{pipeline_id}/updates Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_start_update- Full name
databricks.databricks_pipelines_start_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pipelines_get_update Read
Pipelines Get Update Official Databricks SDK endpoint: GET /api/2.0/pipelines/{pipeline_id}/updates/{update_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.pipelines_get_update- Full name
databricks.databricks_pipelines_get_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_create_catalog Write
Postgres Create Catalog Official Databricks SDK endpoint: POST /api/2.0/postgres/catalogs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_create_catalog- Full name
databricks.databricks_postgres_create_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_generate_database_credential Write
Postgres Generate Database Credential Official Databricks SDK endpoint: POST /api/2.0/postgres/credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_generate_database_credential- Full name
databricks.databricks_postgres_generate_database_credential
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_create_project Write
Postgres Create Project Official Databricks SDK endpoint: POST /api/2.0/postgres/projects Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_create_project- Full name
databricks.databricks_postgres_create_project
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_list_projects Read
Postgres List Projects Official Databricks SDK endpoint: GET /api/2.0/postgres/projects Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_list_projects- Full name
databricks.databricks_postgres_list_projects
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_create_synced_table Write
Postgres Create Synced Table Official Databricks SDK endpoint: POST /api/2.0/postgres/synced_tables Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_create_synced_table- Full name
databricks.databricks_postgres_create_synced_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_delete_branch Write
Postgres Delete Branch Official Databricks SDK endpoint: DELETE /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_delete_branch- Full name
databricks.databricks_postgres_delete_branch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_delete_catalog Write
Postgres Delete Catalog Official Databricks SDK endpoint: DELETE /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_delete_catalog- Full name
databricks.databricks_postgres_delete_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_delete_database Write
Postgres Delete Database Official Databricks SDK endpoint: DELETE /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_delete_database- Full name
databricks.databricks_postgres_delete_database
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_delete_endpoint Write
Postgres Delete Endpoint Official Databricks SDK endpoint: DELETE /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_delete_endpoint- Full name
databricks.databricks_postgres_delete_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_delete_project Write
Postgres Delete Project Official Databricks SDK endpoint: DELETE /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_delete_project- Full name
databricks.databricks_postgres_delete_project
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_delete_role Write
Postgres Delete Role Official Databricks SDK endpoint: DELETE /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_delete_role- Full name
databricks.databricks_postgres_delete_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_delete_synced_table Write
Postgres Delete Synced Table Official Databricks SDK endpoint: DELETE /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_delete_synced_table- Full name
databricks.databricks_postgres_delete_synced_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_branch Read
Postgres Get Branch Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_branch- Full name
databricks.databricks_postgres_get_branch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_catalog Read
Postgres Get Catalog Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_catalog- Full name
databricks.databricks_postgres_get_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_database Read
Postgres Get Database Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_database- Full name
databricks.databricks_postgres_get_database
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_endpoint Read
Postgres Get Endpoint Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_endpoint- Full name
databricks.databricks_postgres_get_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_operation Read
Postgres Get Operation Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_operation- Full name
databricks.databricks_postgres_get_operation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_project Read
Postgres Get Project Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_project- Full name
databricks.databricks_postgres_get_project
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_role Read
Postgres Get Role Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_role- Full name
databricks.databricks_postgres_get_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_get_synced_table Read
Postgres Get Synced Table Official Databricks SDK endpoint: GET /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_get_synced_table- Full name
databricks.databricks_postgres_get_synced_table
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_update_branch Write
Postgres Update Branch Official Databricks SDK endpoint: PATCH /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_update_branch- Full name
databricks.databricks_postgres_update_branch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_update_database Write
Postgres Update Database Official Databricks SDK endpoint: PATCH /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_update_database- Full name
databricks.databricks_postgres_update_database
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_update_endpoint Write
Postgres Update Endpoint Official Databricks SDK endpoint: PATCH /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_update_endpoint- Full name
databricks.databricks_postgres_update_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_update_project Write
Postgres Update Project Official Databricks SDK endpoint: PATCH /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_update_project- Full name
databricks.databricks_postgres_update_project
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_update_role Write
Postgres Update Role Official Databricks SDK endpoint: PATCH /api/2.0/postgres/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_update_role- Full name
databricks.databricks_postgres_update_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_undelete_project Write
Postgres Undelete Project Official Databricks SDK endpoint: POST /api/2.0/postgres/{name}/undelete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_undelete_project- Full name
databricks.databricks_postgres_undelete_project
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_create_branch Write
Postgres Create Branch Official Databricks SDK endpoint: POST /api/2.0/postgres/{parent}/branches Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_create_branch- Full name
databricks.databricks_postgres_create_branch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_list_branches Read
Postgres List Branches Official Databricks SDK endpoint: GET /api/2.0/postgres/{parent}/branches Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_list_branches- Full name
databricks.databricks_postgres_list_branches
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_create_database Write
Postgres Create Database Official Databricks SDK endpoint: POST /api/2.0/postgres/{parent}/databases Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_create_database- Full name
databricks.databricks_postgres_create_database
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_list_databases Read
Postgres List Databases Official Databricks SDK endpoint: GET /api/2.0/postgres/{parent}/databases Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_list_databases- Full name
databricks.databricks_postgres_list_databases
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_create_endpoint Write
Postgres Create Endpoint Official Databricks SDK endpoint: POST /api/2.0/postgres/{parent}/endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_create_endpoint- Full name
databricks.databricks_postgres_create_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_list_endpoints Read
Postgres List Endpoints Official Databricks SDK endpoint: GET /api/2.0/postgres/{parent}/endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_list_endpoints- Full name
databricks.databricks_postgres_list_endpoints
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_create_role Write
Postgres Create Role Official Databricks SDK endpoint: POST /api/2.0/postgres/{parent}/roles Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_create_role- Full name
databricks.databricks_postgres_create_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
postgres_list_roles Read
Postgres List Roles Official Databricks SDK endpoint: GET /api/2.0/postgres/{parent}/roles Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.postgres_list_roles- Full name
databricks.databricks_postgres_list_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_create Write
Provisioning Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_create- Full name
databricks.databricks_provisioning_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_list Read
Provisioning List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_list- Full name
databricks.databricks_provisioning_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_delete Write
Provisioning Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/credentials/{credentials_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_delete- Full name
databricks.databricks_provisioning_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_get Read
Provisioning Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/credentials/{credentials_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_get- Full name
databricks.databricks_provisioning_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_create Write
Provisioning Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/customer-managed-keys Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_create- Full name
databricks.databricks_provisioning_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_list Read
Provisioning List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/customer-managed-keys Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_list- Full name
databricks.databricks_provisioning_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_delete Write
Provisioning Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/customer-managed-keys/{customer_managed_key_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI sp
- Lua path
app.integrations.databricks.provisioning_delete- Full name
databricks.databricks_provisioning_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_get Read
Provisioning Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/customer-managed-keys/{customer_managed_key_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_get- Full name
databricks.databricks_provisioning_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_create Write
Provisioning Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/networks Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_create- Full name
databricks.databricks_provisioning_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_list Read
Provisioning List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/networks Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_list- Full name
databricks.databricks_provisioning_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_delete Write
Provisioning Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/networks/{network_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_delete- Full name
databricks.databricks_provisioning_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_get Read
Provisioning Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/networks/{network_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_get- Full name
databricks.databricks_provisioning_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_create Write
Provisioning Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/private-access-settings Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_create- Full name
databricks.databricks_provisioning_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_list Read
Provisioning List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/private-access-settings Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_list- Full name
databricks.databricks_provisioning_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_delete Write
Provisioning Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/private-access-settings/{private_access_settings_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenA
- Lua path
app.integrations.databricks.provisioning_delete- Full name
databricks.databricks_provisioning_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_get Read
Provisioning Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/private-access-settings/{private_access_settings_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spe
- Lua path
app.integrations.databricks.provisioning_get- Full name
databricks.databricks_provisioning_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_replace Write
Provisioning Replace Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/private-access-settings/{private_access_settings_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.provisioning_replace- Full name
databricks.databricks_provisioning_replace
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_create Write
Provisioning Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/storage-configurations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_create- Full name
databricks.databricks_provisioning_create_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_list Read
Provisioning List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/storage-configurations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_list- Full name
databricks.databricks_provisioning_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_delete Write
Provisioning Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/storage-configurations/{storage_configuration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.provisioning_delete- Full name
databricks.databricks_provisioning_delete_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_get Read
Provisioning Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/storage-configurations/{storage_configuration_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_get- Full name
databricks.databricks_provisioning_get_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_create Write
Provisioning Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/vpc-endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_create- Full name
databricks.databricks_provisioning_create_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_list Read
Provisioning List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/vpc-endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_list- Full name
databricks.databricks_provisioning_list_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_delete Write
Provisioning Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/vpc-endpoints/{vpc_endpoint_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_delete- Full name
databricks.databricks_provisioning_delete_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_get Read
Provisioning Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/vpc-endpoints/{vpc_endpoint_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_get- Full name
databricks.databricks_provisioning_get_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_create Write
Provisioning Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/workspaces Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_create- Full name
databricks.databricks_provisioning_create_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_list Read
Provisioning List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/workspaces Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_list- Full name
databricks.databricks_provisioning_list_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_delete Write
Provisioning Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/workspaces/{workspace_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_delete- Full name
databricks.databricks_provisioning_delete_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_get Read
Provisioning Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/workspaces/{workspace_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_get- Full name
databricks.databricks_provisioning_get_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
provisioning_update Write
Provisioning Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/workspaces/{workspace_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.provisioning_update- Full name
databricks.databricks_provisioning_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
qualitymonitorv2_create_quality_monitor Write
Qualitymonitorv2 Create Quality Monitor Official Databricks SDK endpoint: POST /api/2.0/quality-monitors Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.qualitymonitorv2_create_quality_monitor- Full name
databricks.databricks_qualitymonitorv2_create_quality_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
qualitymonitorv2_list_quality_monitor Read
Qualitymonitorv2 List Quality Monitor Official Databricks SDK endpoint: GET /api/2.0/quality-monitors Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.qualitymonitorv2_list_quality_monitor- Full name
databricks.databricks_qualitymonitorv2_list_quality_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
qualitymonitorv2_delete_quality_monitor Write
Qualitymonitorv2 Delete Quality Monitor Official Databricks SDK endpoint: DELETE /api/2.0/quality-monitors/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.qualitymonitorv2_delete_quality_monitor- Full name
databricks.databricks_qualitymonitorv2_delete_quality_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
qualitymonitorv2_get_quality_monitor Read
Qualitymonitorv2 Get Quality Monitor Official Databricks SDK endpoint: GET /api/2.0/quality-monitors/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.qualitymonitorv2_get_quality_monitor- Full name
databricks.databricks_qualitymonitorv2_get_quality_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
qualitymonitorv2_update_quality_monitor Write
Qualitymonitorv2 Update Quality Monitor Official Databricks SDK endpoint: PUT /api/2.0/quality-monitors/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.qualitymonitorv2_update_quality_monitor- Full name
databricks.databricks_qualitymonitorv2_update_quality_monitor
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_http_request Write
Serving Http Request Official Databricks SDK endpoint: POST /api/2.0/external-function Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_http_request- Full name
databricks.databricks_serving_http_request
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_get_permissions Read
Serving Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/serving-endpoints/{serving_endpoint_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_get_permissions- Full name
databricks.databricks_serving_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_set_permissions Write
Serving Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/serving-endpoints/{serving_endpoint_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_set_permissions- Full name
databricks.databricks_serving_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_update_permissions Write
Serving Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/serving-endpoints/{serving_endpoint_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_update_permissions- Full name
databricks.databricks_serving_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_get_permission_levels Read
Serving Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/serving-endpoints/{serving_endpoint_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks Open
- Lua path
app.integrations.databricks.serving_get_permission_levels- Full name
databricks.databricks_serving_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_create Write
Serving Create Official Databricks SDK endpoint: POST /api/2.0/serving-endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_create- Full name
databricks.databricks_serving_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_list Read
Serving List Official Databricks SDK endpoint: GET /api/2.0/serving-endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_list- Full name
databricks.databricks_serving_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_create_provisioned_throughput_endpoint Write
Serving Create Provisioned Throughput Endpoint Official Databricks SDK endpoint: POST /api/2.0/serving-endpoints/pt Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_create_provisioned_throughput_endpoint- Full name
databricks.databricks_serving_create_provisioned_throughput_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_update_provisioned_throughput_endpoint_config Write
Serving Update Provisioned Throughput Endpoint Config Official Databricks SDK endpoint: PUT /api/2.0/serving-endpoints/pt/{name}/config Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_update_provisioned_throughput_endpoint_config- Full name
databricks.databricks_serving_update_provisioned_throughput_endpoint_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_delete Write
Serving Delete Official Databricks SDK endpoint: DELETE /api/2.0/serving-endpoints/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_delete- Full name
databricks.databricks_serving_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_get Read
Serving Get Official Databricks SDK endpoint: GET /api/2.0/serving-endpoints/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_get- Full name
databricks.databricks_serving_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_put_ai_gateway Write
Serving Put Ai Gateway Official Databricks SDK endpoint: PUT /api/2.0/serving-endpoints/{name}/ai-gateway Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_put_ai_gateway- Full name
databricks.databricks_serving_put_ai_gateway
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_update_config Write
Serving Update Config Official Databricks SDK endpoint: PUT /api/2.0/serving-endpoints/{name}/config Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_update_config- Full name
databricks.databricks_serving_update_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_export_metrics Read
Serving Export Metrics Official Databricks SDK endpoint: GET /api/2.0/serving-endpoints/{name}/metrics Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_export_metrics- Full name
databricks.databricks_serving_export_metrics
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_update_notifications Write
Serving Update Notifications Official Databricks SDK endpoint: PATCH /api/2.0/serving-endpoints/{name}/notifications Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_update_notifications- Full name
databricks.databricks_serving_update_notifications
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_get_open_api Read
Serving Get Open Api Official Databricks SDK endpoint: GET /api/2.0/serving-endpoints/{name}/openapi Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_get_open_api- Full name
databricks.databricks_serving_get_open_api
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_put Write
Serving Put Official Databricks SDK endpoint: PUT /api/2.0/serving-endpoints/{name}/rate-limits Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_put- Full name
databricks.databricks_serving_put
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_build_logs Read
Serving Build Logs Official Databricks SDK endpoint: GET /api/2.0/serving-endpoints/{name}/served-models/{served_model_name}/build-logs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_build_logs- Full name
databricks.databricks_serving_build_logs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_logs Read
Serving Logs Official Databricks SDK endpoint: GET /api/2.0/serving-endpoints/{name}/served-models/{served_model_name}/logs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_logs- Full name
databricks.databricks_serving_logs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_patch Write
Serving Patch Official Databricks SDK endpoint: PATCH /api/2.0/serving-endpoints/{name}/tags Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_patch- Full name
databricks.databricks_serving_patch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
serving_query Write
Serving Query Official Databricks SDK endpoint: POST /serving-endpoints/{name}/invocations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.serving_query- Full name
databricks.databricks_serving_query
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create Write
Settings Create Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/ip-access-lists Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_create- Full name
databricks.databricks_settings_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list Read
Settings List Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/ip-access-lists Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_list- Full name
databricks.databricks_settings_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_replace Write
Settings Replace Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_replace- Full name
databricks.databricks_settings_replace
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create_network_connectivity_configuration Write
Settings Create Network Connectivity Configuration Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/network-connectivity-configs Generated from the official databricks-sdk-go surface, which is generated from Databricks
- Lua path
app.integrations.databricks.settings_create_network_connectivity_configuration- Full name
databricks.databricks_settings_create_network_connectivity_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list_network_connectivity_configurations Read
Settings List Network Connectivity Configurations Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/network-connectivity-configs Generated from the official databricks-sdk-go surface, which is generated from Databricks Op
- Lua path
app.integrations.databricks.settings_list_network_connectivity_configurations- Full name
databricks.databricks_settings_list_network_connectivity_configurations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete_network_connectivity_configuration Write
Settings Delete Network Connectivity Configuration Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/network-connectivity-configs/{network_connectivity_config_id} Generated from the official databricks-sdk-go surface,
- Lua path
app.integrations.databricks.settings_delete_network_connectivity_configuration- Full name
databricks.databricks_settings_delete_network_connectivity_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_network_connectivity_configuration Read
Settings Get Network Connectivity Configuration Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/network-connectivity-configs/{network_connectivity_config_id} Generated from the official databricks-sdk-go surface, which
- Lua path
app.integrations.databricks.settings_get_network_connectivity_configuration- Full name
databricks.databricks_settings_get_network_connectivity_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create_private_endpoint_rule Write
Settings Create Private Endpoint Rule Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/network-connectivity-configs/{network_connectivity_config_id}/private-endpoint-rules Generated from the official databricks-sdk-go s
- Lua path
app.integrations.databricks.settings_create_private_endpoint_rule- Full name
databricks.databricks_settings_create_private_endpoint_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list_private_endpoint_rules Read
Settings List Private Endpoint Rules Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/network-connectivity-configs/{network_connectivity_config_id}/private-endpoint-rules Generated from the official databricks-sdk-go sur
- Lua path
app.integrations.databricks.settings_list_private_endpoint_rules- Full name
databricks.databricks_settings_list_private_endpoint_rules
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete_private_endpoint_rule Write
Settings Delete Private Endpoint Rule Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/network-connectivity-configs/{network_connectivity_config_id}/private-endpoint-rules/{private_endpoint_rule_id} Generated from the
- Lua path
app.integrations.databricks.settings_delete_private_endpoint_rule- Full name
databricks.databricks_settings_delete_private_endpoint_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_private_endpoint_rule Read
Settings Get Private Endpoint Rule Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/network-connectivity-configs/{network_connectivity_config_id}/private-endpoint-rules/{private_endpoint_rule_id} Generated from the offic
- Lua path
app.integrations.databricks.settings_get_private_endpoint_rule- Full name
databricks.databricks_settings_get_private_endpoint_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update_private_endpoint_rule Write
Settings Update Private Endpoint Rule Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/network-connectivity-configs/{network_connectivity_config_id}/private-endpoint-rules/{private_endpoint_rule_id} Generated from the
- Lua path
app.integrations.databricks.settings_update_private_endpoint_rule- Full name
databricks.databricks_settings_update_private_endpoint_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create_network_policy_rpc Write
Settings Create Network Policy Rpc Official Databricks SDK endpoint: POST /api/2.0/accounts/{account_id}/network-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_create_network_policy_rpc- Full name
databricks.databricks_settings_create_network_policy_rpc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list_network_policies_rpc Read
Settings List Network Policies Rpc Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/network-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_list_network_policies_rpc- Full name
databricks.databricks_settings_list_network_policies_rpc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete_network_policy_rpc Write
Settings Delete Network Policy Rpc Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/network-policies/{network_policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAP
- Lua path
app.integrations.databricks.settings_delete_network_policy_rpc- Full name
databricks.databricks_settings_delete_network_policy_rpc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_network_policy_rpc Read
Settings Get Network Policy Rpc Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/network-policies/{network_policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spec
- Lua path
app.integrations.databricks.settings_get_network_policy_rpc- Full name
databricks.databricks_settings_get_network_policy_rpc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update_network_policy_rpc Write
Settings Update Network Policy Rpc Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/network-policies/{network_policy_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.settings_update_network_policy_rpc- Full name
databricks.databricks_settings_update_network_policy_rpc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/settings/types/acct_ip_acl_enable/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/settings/types/acct_ip_acl_enable/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/settings/types/acct_ip_acl_enable/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/settings/types/dcp_acct_enable/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/settings/types/dcp_acct_enable/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_21
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/settings/types/dcp_acct_enable/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_21
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/accounts/{account_id}/settings/types/disable_legacy_features/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/settings/types/disable_legacy_features/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/settings/types/disable_legacy_features/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI sp
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/settings/types/llm_proxy_partner_powered/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_17
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/settings/types/llm_proxy_partner_powered/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_17
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/settings/types/llm_proxy_partner_powered_enforce/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenA
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_18
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/settings/types/llm_proxy_partner_powered_enforce/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_18
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/settings/types/shield_csp_enablement_ac/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/settings/types/shield_csp_enablement_ac/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/settings/types/shield_esm_enablement_ac/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/accounts/{account_id}/settings/types/shield_esm_enablement_ac/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_workspace_network_option_rpc Read
Settings Get Workspace Network Option Rpc Official Databricks SDK endpoint: GET /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/network Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenA
- Lua path
app.integrations.databricks.settings_get_workspace_network_option_rpc- Full name
databricks.databricks_settings_get_workspace_network_option_rpc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update_workspace_network_option_rpc Write
Settings Update Workspace Network Option Rpc Official Databricks SDK endpoint: PUT /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/network Generated from the official databricks-sdk-go surface, which is generated from Databricks Op
- Lua path
app.integrations.databricks.settings_update_workspace_network_option_rpc- Full name
databricks.databricks_settings_update_workspace_network_option_rpc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_exchange_token Write
Settings Exchange Token Official Databricks SDK endpoint: POST /api/2.0/credentials-manager/exchange-tokens/token Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_exchange_token- Full name
databricks.databricks_settings_exchange_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create Write
Settings Create Official Databricks SDK endpoint: POST /api/2.0/ip-access-lists Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_create- Full name
databricks.databricks_settings_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list Read
Settings List Official Databricks SDK endpoint: GET /api/2.0/ip-access-lists Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_list- Full name
databricks.databricks_settings_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_replace Write
Settings Replace Official Databricks SDK endpoint: PUT /api/2.0/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_replace- Full name
databricks.databricks_settings_replace_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/ip-access-lists/{ip_access_list_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create Write
Settings Create Official Databricks SDK endpoint: POST /api/2.0/notification-destinations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_create- Full name
databricks.databricks_settings_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list Read
Settings List Official Databricks SDK endpoint: GET /api/2.0/notification-destinations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_list- Full name
databricks.databricks_settings_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/notification-destinations/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_13
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/notification-destinations/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_20
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/notification-destinations/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_20
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_permissions Read
Settings Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/authorization/tokens Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get_permissions- Full name
databricks.databricks_settings_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_set_permissions Write
Settings Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/authorization/tokens Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_set_permissions- Full name
databricks.databricks_settings_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update_permissions Write
Settings Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/authorization/tokens Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update_permissions- Full name
databricks.databricks_settings_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_permission_levels Read
Settings Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/authorization/tokens/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get_permission_levels- Full name
databricks.databricks_settings_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/aibi_dash_embed_ws_acc_policy/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/aibi_dash_embed_ws_acc_policy/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/aibi_dash_embed_ws_acc_policy/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/aibi_dash_embed_ws_apprvd_domains/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/aibi_dash_embed_ws_apprvd_domains/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/aibi_dash_embed_ws_apprvd_domains/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/automatic_cluster_update/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/automatic_cluster_update/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/dashboard_email_subscriptions/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/dashboard_email_subscriptions/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/dashboard_email_subscriptions/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/default_namespace_ws/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/default_namespace_ws/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/default_namespace_ws/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/default_warehouse_id/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/default_warehouse_id/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/default_warehouse_id/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/disable_legacy_access/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/disable_legacy_access/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/disable_legacy_access/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_10
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/disable_legacy_dbfs/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/disable_legacy_dbfs/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/disable_legacy_dbfs/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_11
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_enable_export_notebook Read
Settings Get Enable Export Notebook Official Databricks SDK endpoint: GET /api/2.0/settings/types/enable-export-notebook/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get_enable_export_notebook- Full name
databricks.databricks_settings_get_enable_export_notebook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_patch_enable_export_notebook Write
Settings Patch Enable Export Notebook Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/enable-export-notebook/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spe
- Lua path
app.integrations.databricks.settings_patch_enable_export_notebook- Full name
databricks.databricks_settings_patch_enable_export_notebook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_enable_notebook_table_clipboard Read
Settings Get Enable Notebook Table Clipboard Official Databricks SDK endpoint: GET /api/2.0/settings/types/enable-notebook-table-clipboard/names/default Generated from the official databricks-sdk-go surface, which is generated from Databric
- Lua path
app.integrations.databricks.settings_get_enable_notebook_table_clipboard- Full name
databricks.databricks_settings_get_enable_notebook_table_clipboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_patch_enable_notebook_table_clipboard Write
Settings Patch Enable Notebook Table Clipboard Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/enable-notebook-table-clipboard/names/default Generated from the official databricks-sdk-go surface, which is generated from Data
- Lua path
app.integrations.databricks.settings_patch_enable_notebook_table_clipboard- Full name
databricks.databricks_settings_patch_enable_notebook_table_clipboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_enable_results_downloading Read
Settings Get Enable Results Downloading Official Databricks SDK endpoint: GET /api/2.0/settings/types/enable-results-downloading/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI
- Lua path
app.integrations.databricks.settings_get_enable_results_downloading- Full name
databricks.databricks_settings_get_enable_results_downloading
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_patch_enable_results_downloading Write
Settings Patch Enable Results Downloading Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/enable-results-downloading/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks Ope
- Lua path
app.integrations.databricks.settings_patch_enable_results_downloading- Full name
databricks.databricks_settings_patch_enable_results_downloading
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/llm_proxy_partner_powered/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_12
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/llm_proxy_partner_powered/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_19
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/llm_proxy_partner_powered/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_19
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/restrict_workspace_admins/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_15
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/restrict_workspace_admins/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_22
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/restrict_workspace_admins/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_22
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/shield_csp_enablement_ws_db/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/shield_csp_enablement_ws_db/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/shield_esm_enablement_ws_db/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/shield_esm_enablement_ws_db/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_14
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/settings/types/sql_results_download/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_16
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/settings/types/sql_results_download/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_23
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/settings/types/sql_results_download/names/default Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_23
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create_obo_token Write
Settings Create Obo Token Official Databricks SDK endpoint: POST /api/2.0/token-management/on-behalf-of/tokens Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_create_obo_token- Full name
databricks.databricks_settings_create_obo_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list Read
Settings List Official Databricks SDK endpoint: GET /api/2.0/token-management/tokens Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_list- Full name
databricks.databricks_settings_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: DELETE /api/2.0/token-management/tokens/{token_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_17
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get Read
Settings Get Official Databricks SDK endpoint: GET /api/2.0/token-management/tokens/{token_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get- Full name
databricks.databricks_settings_get_24
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_create Write
Settings Create Official Databricks SDK endpoint: POST /api/2.0/token/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_create- Full name
databricks.databricks_settings_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_delete Write
Settings Delete Official Databricks SDK endpoint: POST /api/2.0/token/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_delete- Full name
databricks.databricks_settings_delete_18
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_list Read
Settings List Official Databricks SDK endpoint: GET /api/2.0/token/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_list- Full name
databricks.databricks_settings_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_update Write
Settings Update Official Databricks SDK endpoint: PATCH /api/2.0/token/{token_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_update- Full name
databricks.databricks_settings_update_24
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_get_status Read
Settings Get Status Official Databricks SDK endpoint: GET /api/2.0/workspace-conf Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_get_status- Full name
databricks.databricks_settings_get_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settings_set_status Write
Settings Set Status Official Databricks SDK endpoint: PATCH /api/2.0/workspace-conf Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settings_set_status- Full name
databricks.databricks_settings_set_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_list_account_settings_metadata Read
Settingsv2 List Account Settings Metadata Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/settings-metadata Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settingsv2_list_account_settings_metadata- Full name
databricks.databricks_settingsv2_list_account_settings_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_get_public_account_setting Read
Settingsv2 Get Public Account Setting Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/settings/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settingsv2_get_public_account_setting- Full name
databricks.databricks_settingsv2_get_public_account_setting
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_patch_public_account_setting Write
Settingsv2 Patch Public Account Setting Official Databricks SDK endpoint: PATCH /api/2.1/accounts/{account_id}/settings/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settingsv2_patch_public_account_setting- Full name
databricks.databricks_settingsv2_patch_public_account_setting
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_list_account_user_preferences_metadata Read
Settingsv2 List Account User Preferences Metadata Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/users/{user_id}/settings-metadata Generated from the official databricks-sdk-go surface, which is generated from Databric
- Lua path
app.integrations.databricks.settingsv2_list_account_user_preferences_metadata- Full name
databricks.databricks_settingsv2_list_account_user_preferences_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_get_public_account_user_preference Read
Settingsv2 Get Public Account User Preference Official Databricks SDK endpoint: GET /api/2.1/accounts/{account_id}/users/{user_id}/settings/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks Ope
- Lua path
app.integrations.databricks.settingsv2_get_public_account_user_preference- Full name
databricks.databricks_settingsv2_get_public_account_user_preference
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_patch_public_account_user_preference Write
Settingsv2 Patch Public Account User Preference Official Databricks SDK endpoint: PATCH /api/2.1/accounts/{account_id}/users/{user_id}/settings/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks
- Lua path
app.integrations.databricks.settingsv2_patch_public_account_user_preference- Full name
databricks.databricks_settingsv2_patch_public_account_user_preference
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_list_workspace_settings_metadata Read
Settingsv2 List Workspace Settings Metadata Official Databricks SDK endpoint: GET /api/2.1/settings-metadata Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settingsv2_list_workspace_settings_metadata- Full name
databricks.databricks_settingsv2_list_workspace_settings_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_get_public_workspace_setting Read
Settingsv2 Get Public Workspace Setting Official Databricks SDK endpoint: GET /api/2.1/settings/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settingsv2_get_public_workspace_setting- Full name
databricks.databricks_settingsv2_get_public_workspace_setting
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
settingsv2_patch_public_workspace_setting Write
Settingsv2 Patch Public Workspace Setting Official Databricks SDK endpoint: PATCH /api/2.1/settings/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.settingsv2_patch_public_workspace_setting- Full name
databricks.databricks_settingsv2_patch_public_workspace_setting
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_create Write
Sharing Create Official Databricks SDK endpoint: POST /api/2.0/data-sharing/recipients/{recipient_name}/federation-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_create- Full name
databricks.databricks_sharing_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_list Read
Sharing List Official Databricks SDK endpoint: GET /api/2.0/data-sharing/recipients/{recipient_name}/federation-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_list- Full name
databricks.databricks_sharing_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_delete Write
Sharing Delete Official Databricks SDK endpoint: DELETE /api/2.0/data-sharing/recipients/{recipient_name}/federation-policies/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_delete- Full name
databricks.databricks_sharing_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_get_federation_policy Read
Sharing Get Federation Policy Official Databricks SDK endpoint: GET /api/2.0/data-sharing/recipients/{recipient_name}/federation-policies/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenA
- Lua path
app.integrations.databricks.sharing_get_federation_policy- Full name
databricks.databricks_sharing_get_federation_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_create Write
Sharing Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/providers Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_create- Full name
databricks.databricks_sharing_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_list Read
Sharing List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/providers Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_list- Full name
databricks.databricks_sharing_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_delete Write
Sharing Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/providers/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_delete- Full name
databricks.databricks_sharing_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_get Read
Sharing Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/providers/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_get- Full name
databricks.databricks_sharing_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_update Write
Sharing Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/providers/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_update- Full name
databricks.databricks_sharing_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_retrieve_token Read
Sharing Retrieve Token Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/public/data_sharing_activation/{activation_url} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_retrieve_token- Full name
databricks.databricks_sharing_retrieve_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_get_activation_url_info Read
Sharing Get Activation Url Info Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/public/data_sharing_activation_info/{activation_url} Generated from the official databricks-sdk-go surface, which is generated from Databricks Open
- Lua path
app.integrations.databricks.sharing_get_activation_url_info- Full name
databricks.databricks_sharing_get_activation_url_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_create Write
Sharing Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/recipients Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_create- Full name
databricks.databricks_sharing_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_list Read
Sharing List Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/recipients Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_list- Full name
databricks.databricks_sharing_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_delete Write
Sharing Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/recipients/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_delete- Full name
databricks.databricks_sharing_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_get Read
Sharing Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/recipients/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_get- Full name
databricks.databricks_sharing_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_update Write
Sharing Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/recipients/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_update- Full name
databricks.databricks_sharing_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_rotate_token Write
Sharing Rotate Token Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/recipients/{name}/rotate-token Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_rotate_token- Full name
databricks.databricks_sharing_rotate_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_create Write
Sharing Create Official Databricks SDK endpoint: POST /api/2.1/unity-catalog/shares Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_create- Full name
databricks.databricks_sharing_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_delete Write
Sharing Delete Official Databricks SDK endpoint: DELETE /api/2.1/unity-catalog/shares/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_delete- Full name
databricks.databricks_sharing_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_get Read
Sharing Get Official Databricks SDK endpoint: GET /api/2.1/unity-catalog/shares/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_get- Full name
databricks.databricks_sharing_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_update Write
Sharing Update Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/shares/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_update- Full name
databricks.databricks_sharing_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sharing_update_permissions Write
Sharing Update Permissions Official Databricks SDK endpoint: PATCH /api/2.1/unity-catalog/shares/{name}/permissions Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sharing_update_permissions- Full name
databricks.databricks_sharing_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create_alert Write
Sql Create Alert Official Databricks SDK endpoint: POST /api/2.0/alerts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create_alert- Full name
databricks.databricks_sql_create_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list_alerts Read
Sql List Alerts Official Databricks SDK endpoint: GET /api/2.0/alerts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list_alerts- Full name
databricks.databricks_sql_list_alerts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_alert Read
Sql Get Alert Official Databricks SDK endpoint: GET /api/2.0/alerts/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get_alert- Full name
databricks.databricks_sql_get_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_trash_alert Write
Sql Trash Alert Official Databricks SDK endpoint: DELETE /api/2.0/alerts/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_trash_alert- Full name
databricks.databricks_sql_trash_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update_alert Write
Sql Update Alert Official Databricks SDK endpoint: PATCH /api/2.0/alerts/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update_alert- Full name
databricks.databricks_sql_update_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_permissions Read
Sql Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/warehouses/{warehouse_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get_permissions- Full name
databricks.databricks_sql_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_set_permissions Write
Sql Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/warehouses/{warehouse_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_set_permissions- Full name
databricks.databricks_sql_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update_permissions Write
Sql Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/warehouses/{warehouse_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update_permissions- Full name
databricks.databricks_sql_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_permission_levels Read
Sql Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/warehouses/{warehouse_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get_permission_levels- Full name
databricks.databricks_sql_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/preview/sql/alerts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/preview/sql/alerts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/sql/alerts/{alert_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get Read
Sql Get Official Databricks SDK endpoint: GET /api/2.0/preview/sql/alerts/{alert_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get- Full name
databricks.databricks_sql_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: PUT /api/2.0/preview/sql/alerts/{alert_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/preview/sql/dashboards Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_restore Write
Sql Restore Official Databricks SDK endpoint: POST /api/2.0/preview/sql/dashboards/trash/{dashboard_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_restore- Full name
databricks.databricks_sql_restore
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/sql/dashboards/{dashboard_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get Read
Sql Get Official Databricks SDK endpoint: GET /api/2.0/preview/sql/dashboards/{dashboard_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get- Full name
databricks.databricks_sql_get_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: POST /api/2.0/preview/sql/dashboards/{dashboard_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/preview/sql/data_sources Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get Read
Sql Get Official Databricks SDK endpoint: GET /api/2.0/preview/sql/permissions/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get- Full name
databricks.databricks_sql_get_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_set Write
Sql Set Official Databricks SDK endpoint: POST /api/2.0/preview/sql/permissions/{object_type}/{object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_set- Full name
databricks.databricks_sql_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_transfer_ownership Write
Sql Transfer Ownership Official Databricks SDK endpoint: POST /api/2.0/preview/sql/permissions/{object_type}/{object_id}/transfer Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_transfer_ownership- Full name
databricks.databricks_sql_transfer_ownership
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/preview/sql/queries Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/preview/sql/queries Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_restore Write
Sql Restore Official Databricks SDK endpoint: POST /api/2.0/preview/sql/queries/trash/{query_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_restore- Full name
databricks.databricks_sql_restore_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/sql/queries/{query_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get Read
Sql Get Official Databricks SDK endpoint: GET /api/2.0/preview/sql/queries/{query_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get- Full name
databricks.databricks_sql_get_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: POST /api/2.0/preview/sql/queries/{query_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/preview/sql/visualizations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/sql/visualizations/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: POST /api/2.0/preview/sql/visualizations/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/preview/sql/widgets Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/preview/sql/widgets/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: POST /api/2.0/preview/sql/widgets/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_config Read
Sql Get Config Official Databricks SDK endpoint: GET /api/2.0/redash-v2/config Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get_config- Full name
databricks.databricks_sql_get_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/sql/alerts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/sql/alerts Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/sql/alerts/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get Read
Sql Get Official Databricks SDK endpoint: GET /api/2.0/sql/alerts/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get- Full name
databricks.databricks_sql_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: PATCH /api/2.0/sql/alerts/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_workspace_warehouse_config Read
Sql Get Workspace Warehouse Config Official Databricks SDK endpoint: GET /api/2.0/sql/config/warehouses Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get_workspace_warehouse_config- Full name
databricks.databricks_sql_get_workspace_warehouse_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_set_workspace_warehouse_config Write
Sql Set Workspace Warehouse Config Official Databricks SDK endpoint: PUT /api/2.0/sql/config/warehouses Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_set_workspace_warehouse_config- Full name
databricks.databricks_sql_set_workspace_warehouse_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/sql/history/queries Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/sql/queries Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create_4
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/sql/queries Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/sql/queries/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get Read
Sql Get Official Databricks SDK endpoint: GET /api/2.0/sql/queries/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get- Full name
databricks.databricks_sql_get_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: PATCH /api/2.0/sql/queries/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update_5
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list_visualizations Read
Sql List Visualizations Official Databricks SDK endpoint: GET /api/2.0/sql/queries/{id}/visualizations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list_visualizations- Full name
databricks.databricks_sql_list_visualizations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_execute_statement Write
Sql Execute Statement Official Databricks SDK endpoint: POST /api/2.0/sql/statements Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_execute_statement- Full name
databricks.databricks_sql_execute_statement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_statement Read
Sql Get Statement Official Databricks SDK endpoint: GET /api/2.0/sql/statements/{statement_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get_statement- Full name
databricks.databricks_sql_get_statement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_cancel_execution Write
Sql Cancel Execution Official Databricks SDK endpoint: POST /api/2.0/sql/statements/{statement_id}/cancel Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_cancel_execution- Full name
databricks.databricks_sql_cancel_execution
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_statement_result_chunk_n Read
Sql Get Statement Result Chunk N Official Databricks SDK endpoint: GET /api/2.0/sql/statements/{statement_id}/result/chunks/{chunk_index} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI spec
- Lua path
app.integrations.databricks.sql_get_statement_result_chunk_n- Full name
databricks.databricks_sql_get_statement_result_chunk_n
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/sql/visualizations Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create_6
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/sql/visualizations/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update Write
Sql Update Official Databricks SDK endpoint: PATCH /api/2.0/sql/visualizations/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update- Full name
databricks.databricks_sql_update_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create Write
Sql Create Official Databricks SDK endpoint: POST /api/2.0/sql/warehouses Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create- Full name
databricks.databricks_sql_create_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list Read
Sql List Official Databricks SDK endpoint: GET /api/2.0/sql/warehouses Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list- Full name
databricks.databricks_sql_list_8
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete Write
Sql Delete Official Databricks SDK endpoint: DELETE /api/2.0/sql/warehouses/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete- Full name
databricks.databricks_sql_delete_9
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get Read
Sql Get Official Databricks SDK endpoint: GET /api/2.0/sql/warehouses/{id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get- Full name
databricks.databricks_sql_get_7
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_edit Write
Sql Edit Official Databricks SDK endpoint: POST /api/2.0/sql/warehouses/{id}/edit Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_edit- Full name
databricks.databricks_sql_edit
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_start Write
Sql Start Official Databricks SDK endpoint: POST /api/2.0/sql/warehouses/{id}/start Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_start- Full name
databricks.databricks_sql_start
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_stop Write
Sql Stop Official Databricks SDK endpoint: POST /api/2.0/sql/warehouses/{id}/stop Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_stop- Full name
databricks.databricks_sql_stop
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_create_default_warehouse_override Write
Sql Create Default Warehouse Override Official Databricks SDK endpoint: POST /api/warehouses/v1/default-warehouse-overrides Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_create_default_warehouse_override- Full name
databricks.databricks_sql_create_default_warehouse_override
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_list_default_warehouse_overrides Read
Sql List Default Warehouse Overrides Official Databricks SDK endpoint: GET /api/warehouses/v1/default-warehouse-overrides Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_list_default_warehouse_overrides- Full name
databricks.databricks_sql_list_default_warehouse_overrides
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_delete_default_warehouse_override Write
Sql Delete Default Warehouse Override Official Databricks SDK endpoint: DELETE /api/warehouses/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_delete_default_warehouse_override- Full name
databricks.databricks_sql_delete_default_warehouse_override
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_get_default_warehouse_override Read
Sql Get Default Warehouse Override Official Databricks SDK endpoint: GET /api/warehouses/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_get_default_warehouse_override- Full name
databricks.databricks_sql_get_default_warehouse_override
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sql_update_default_warehouse_override Write
Sql Update Default Warehouse Override Official Databricks SDK endpoint: PATCH /api/warehouses/v1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.sql_update_default_warehouse_override- Full name
databricks.databricks_sql_update_default_warehouse_override
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_get_permissions Read
Supervisoragents Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/supervisor-agents/{supervisor_agent_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_get_permissions- Full name
databricks.databricks_supervisoragents_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_set_permissions Write
Supervisoragents Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/supervisor-agents/{supervisor_agent_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_set_permissions- Full name
databricks.databricks_supervisoragents_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_update_permissions Write
Supervisoragents Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/supervisor-agents/{supervisor_agent_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs
- Lua path
app.integrations.databricks.supervisoragents_update_permissions- Full name
databricks.databricks_supervisoragents_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_get_permission_levels Read
Supervisoragents Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/supervisor-agents/{supervisor_agent_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databr
- Lua path
app.integrations.databricks.supervisoragents_get_permission_levels- Full name
databricks.databricks_supervisoragents_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_create_supervisor_agent Write
Supervisoragents Create Supervisor Agent Official Databricks SDK endpoint: POST /api/2.1/supervisor-agents Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_create_supervisor_agent- Full name
databricks.databricks_supervisoragents_create_supervisor_agent
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_list_supervisor_agents Read
Supervisoragents List Supervisor Agents Official Databricks SDK endpoint: GET /api/2.1/supervisor-agents Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_list_supervisor_agents- Full name
databricks.databricks_supervisoragents_list_supervisor_agents
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_delete_example Write
Supervisoragents Delete Example Official Databricks SDK endpoint: DELETE /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_delete_example- Full name
databricks.databricks_supervisoragents_delete_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_delete_supervisor_agent Write
Supervisoragents Delete Supervisor Agent Official Databricks SDK endpoint: DELETE /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_delete_supervisor_agent- Full name
databricks.databricks_supervisoragents_delete_supervisor_agent
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_delete_tool Write
Supervisoragents Delete Tool Official Databricks SDK endpoint: DELETE /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_delete_tool- Full name
databricks.databricks_supervisoragents_delete_tool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_get_example Read
Supervisoragents Get Example Official Databricks SDK endpoint: GET /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_get_example- Full name
databricks.databricks_supervisoragents_get_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_get_supervisor_agent Read
Supervisoragents Get Supervisor Agent Official Databricks SDK endpoint: GET /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_get_supervisor_agent- Full name
databricks.databricks_supervisoragents_get_supervisor_agent
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_get_tool Read
Supervisoragents Get Tool Official Databricks SDK endpoint: GET /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_get_tool- Full name
databricks.databricks_supervisoragents_get_tool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_update_example Write
Supervisoragents Update Example Official Databricks SDK endpoint: PATCH /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_update_example- Full name
databricks.databricks_supervisoragents_update_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_update_supervisor_agent Write
Supervisoragents Update Supervisor Agent Official Databricks SDK endpoint: PATCH /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_update_supervisor_agent- Full name
databricks.databricks_supervisoragents_update_supervisor_agent
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_update_tool Write
Supervisoragents Update Tool Official Databricks SDK endpoint: PATCH /api/2.1/{name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_update_tool- Full name
databricks.databricks_supervisoragents_update_tool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_create_example Write
Supervisoragents Create Example Official Databricks SDK endpoint: POST /api/2.1/{parent}/examples Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_create_example- Full name
databricks.databricks_supervisoragents_create_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_list_examples Read
Supervisoragents List Examples Official Databricks SDK endpoint: GET /api/2.1/{parent}/examples Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_list_examples- Full name
databricks.databricks_supervisoragents_list_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_create_tool Write
Supervisoragents Create Tool Official Databricks SDK endpoint: POST /api/2.1/{parent}/tools Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_create_tool- Full name
databricks.databricks_supervisoragents_create_tool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
supervisoragents_list_tools Read
Supervisoragents List Tools Official Databricks SDK endpoint: GET /api/2.1/{parent}/tools Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.supervisoragents_list_tools- Full name
databricks.databricks_supervisoragents_list_tools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_create_tag_assignment Write
Tags Create Tag Assignment Official Databricks SDK endpoint: POST /api/2.0/entity-tag-assignments Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_create_tag_assignment- Full name
databricks.databricks_tags_create_tag_assignment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_list_tag_assignments Read
Tags List Tag Assignments Official Databricks SDK endpoint: GET /api/2.0/entity-tag-assignments/{entity_type}/{entity_id}/tags Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_list_tag_assignments- Full name
databricks.databricks_tags_list_tag_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_delete_tag_assignment Write
Tags Delete Tag Assignment Official Databricks SDK endpoint: DELETE /api/2.0/entity-tag-assignments/{entity_type}/{entity_id}/tags/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI s
- Lua path
app.integrations.databricks.tags_delete_tag_assignment- Full name
databricks.databricks_tags_delete_tag_assignment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_get_tag_assignment Read
Tags Get Tag Assignment Official Databricks SDK endpoint: GET /api/2.0/entity-tag-assignments/{entity_type}/{entity_id}/tags/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_get_tag_assignment- Full name
databricks.databricks_tags_get_tag_assignment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_update_tag_assignment Write
Tags Update Tag Assignment Official Databricks SDK endpoint: PATCH /api/2.0/entity-tag-assignments/{entity_type}/{entity_id}/tags/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI sp
- Lua path
app.integrations.databricks.tags_update_tag_assignment- Full name
databricks.databricks_tags_update_tag_assignment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_create_tag_policy Write
Tags Create Tag Policy Official Databricks SDK endpoint: POST /api/2.1/tag-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_create_tag_policy- Full name
databricks.databricks_tags_create_tag_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_list_tag_policies Read
Tags List Tag Policies Official Databricks SDK endpoint: GET /api/2.1/tag-policies Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_list_tag_policies- Full name
databricks.databricks_tags_list_tag_policies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_delete_tag_policy Write
Tags Delete Tag Policy Official Databricks SDK endpoint: DELETE /api/2.1/tag-policies/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_delete_tag_policy- Full name
databricks.databricks_tags_delete_tag_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_get_tag_policy Read
Tags Get Tag Policy Official Databricks SDK endpoint: GET /api/2.1/tag-policies/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_get_tag_policy- Full name
databricks.databricks_tags_get_tag_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tags_update_tag_policy Write
Tags Update Tag Policy Official Databricks SDK endpoint: PATCH /api/2.1/tag-policies/{tag_key} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.tags_update_tag_policy- Full name
databricks.databricks_tags_update_tag_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_create_endpoint Write
Vectorsearch Create Endpoint Official Databricks SDK endpoint: POST /api/2.0/vector-search/endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_create_endpoint- Full name
databricks.databricks_vectorsearch_create_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_list_endpoints Read
Vectorsearch List Endpoints Official Databricks SDK endpoint: GET /api/2.0/vector-search/endpoints Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_list_endpoints- Full name
databricks.databricks_vectorsearch_list_endpoints
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_delete_endpoint Write
Vectorsearch Delete Endpoint Official Databricks SDK endpoint: DELETE /api/2.0/vector-search/endpoints/{endpoint_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_delete_endpoint- Full name
databricks.databricks_vectorsearch_delete_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_get_endpoint Read
Vectorsearch Get Endpoint Official Databricks SDK endpoint: GET /api/2.0/vector-search/endpoints/{endpoint_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_get_endpoint- Full name
databricks.databricks_vectorsearch_get_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_patch_endpoint Write
Vectorsearch Patch Endpoint Official Databricks SDK endpoint: PATCH /api/2.0/vector-search/endpoints/{endpoint_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_patch_endpoint- Full name
databricks.databricks_vectorsearch_patch_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_update_endpoint_budget_policy Write
Vectorsearch Update Endpoint Budget Policy Official Databricks SDK endpoint: PATCH /api/2.0/vector-search/endpoints/{endpoint_name}/budget-policy Generated from the official databricks-sdk-go surface, which is generated from Databricks Open
- Lua path
app.integrations.databricks.vectorsearch_update_endpoint_budget_policy- Full name
databricks.databricks_vectorsearch_update_endpoint_budget_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_update_endpoint_custom_tags Write
Vectorsearch Update Endpoint Custom Tags Official Databricks SDK endpoint: PATCH /api/2.0/vector-search/endpoints/{endpoint_name}/tags Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_update_endpoint_custom_tags- Full name
databricks.databricks_vectorsearch_update_endpoint_custom_tags
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_retrieve_user_visible_metrics Write
Vectorsearch Retrieve User Visible Metrics Official Databricks SDK endpoint: POST /api/2.0/vector-search/endpoints/{name}/metrics Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_retrieve_user_visible_metrics- Full name
databricks.databricks_vectorsearch_retrieve_user_visible_metrics
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_create_index Write
Vectorsearch Create Index Official Databricks SDK endpoint: POST /api/2.0/vector-search/indexes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_create_index- Full name
databricks.databricks_vectorsearch_create_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_list_indexes Read
Vectorsearch List Indexes Official Databricks SDK endpoint: GET /api/2.0/vector-search/indexes Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_list_indexes- Full name
databricks.databricks_vectorsearch_list_indexes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_delete_index Write
Vectorsearch Delete Index Official Databricks SDK endpoint: DELETE /api/2.0/vector-search/indexes/{index_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_delete_index- Full name
databricks.databricks_vectorsearch_delete_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_get_index Read
Vectorsearch Get Index Official Databricks SDK endpoint: GET /api/2.0/vector-search/indexes/{index_name} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_get_index- Full name
databricks.databricks_vectorsearch_get_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_delete_vector_index Write
Vectorsearch Delete Data Vector Index Official Databricks SDK endpoint: DELETE /api/2.0/vector-search/indexes/{index_name}/delete-data Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_delete_vector_index- Full name
databricks.databricks_vectorsearch_delete_data_vector_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_query_index Write
Vectorsearch Query Index Official Databricks SDK endpoint: POST /api/2.0/vector-search/indexes/{index_name}/query Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_query_index- Full name
databricks.databricks_vectorsearch_query_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_query_next_page Write
Vectorsearch Query Next Page Official Databricks SDK endpoint: POST /api/2.0/vector-search/indexes/{index_name}/query-next-page Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_query_next_page- Full name
databricks.databricks_vectorsearch_query_next_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_scan_index Write
Vectorsearch Scan Index Official Databricks SDK endpoint: POST /api/2.0/vector-search/indexes/{index_name}/scan Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_scan_index- Full name
databricks.databricks_vectorsearch_scan_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_sync_index Write
Vectorsearch Sync Index Official Databricks SDK endpoint: POST /api/2.0/vector-search/indexes/{index_name}/sync Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_sync_index- Full name
databricks.databricks_vectorsearch_sync_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vectorsearch_upsert_vector_index Write
Vectorsearch Upsert Data Vector Index Official Databricks SDK endpoint: POST /api/2.0/vector-search/indexes/{index_name}/upsert-data Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.vectorsearch_upsert_vector_index- Full name
databricks.databricks_vectorsearch_upsert_data_vector_index
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_create Write
Workspace Create Official Databricks SDK endpoint: POST /api/2.0/git-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_create- Full name
databricks.databricks_workspace_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_list Read
Workspace List Official Databricks SDK endpoint: GET /api/2.0/git-credentials Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_list- Full name
databricks.databricks_workspace_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_delete Write
Workspace Delete Official Databricks SDK endpoint: DELETE /api/2.0/git-credentials/{credential_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_delete- Full name
databricks.databricks_workspace_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get Read
Workspace Get Official Databricks SDK endpoint: GET /api/2.0/git-credentials/{credential_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get- Full name
databricks.databricks_workspace_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_update Write
Workspace Update Official Databricks SDK endpoint: PATCH /api/2.0/git-credentials/{credential_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_update- Full name
databricks.databricks_workspace_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get_permissions Read
Workspace Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/repos/{repo_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get_permissions- Full name
databricks.databricks_workspace_get_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_set_permissions Write
Workspace Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/repos/{repo_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_set_permissions- Full name
databricks.databricks_workspace_set_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_update_permissions Write
Workspace Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/repos/{repo_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_update_permissions- Full name
databricks.databricks_workspace_update_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get_permission_levels Read
Workspace Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/repos/{repo_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get_permission_levels- Full name
databricks.databricks_workspace_get_permission_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get_permissions Read
Workspace Get Permissions Official Databricks SDK endpoint: GET /api/2.0/permissions/{workspace_object_type}/{workspace_object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get_permissions- Full name
databricks.databricks_workspace_get_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_set_permissions Write
Workspace Set Permissions Official Databricks SDK endpoint: PUT /api/2.0/permissions/{workspace_object_type}/{workspace_object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_set_permissions- Full name
databricks.databricks_workspace_set_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_update_permissions Write
Workspace Update Permissions Official Databricks SDK endpoint: PATCH /api/2.0/permissions/{workspace_object_type}/{workspace_object_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_update_permissions- Full name
databricks.databricks_workspace_update_permissions_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get_permission_levels Read
Workspace Get Permission Levels Official Databricks SDK endpoint: GET /api/2.0/permissions/{workspace_object_type}/{workspace_object_id}/permissionLevels Generated from the official databricks-sdk-go surface, which is generated from Databri
- Lua path
app.integrations.databricks.workspace_get_permission_levels- Full name
databricks.databricks_workspace_get_permission_levels_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_create Write
Workspace Create Official Databricks SDK endpoint: POST /api/2.0/repos Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_create- Full name
databricks.databricks_workspace_create_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_list Read
Workspace List Official Databricks SDK endpoint: GET /api/2.0/repos Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_list- Full name
databricks.databricks_workspace_list_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_delete Write
Workspace Delete Official Databricks SDK endpoint: DELETE /api/2.0/repos/{repo_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_delete- Full name
databricks.databricks_workspace_delete_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get Read
Workspace Get Official Databricks SDK endpoint: GET /api/2.0/repos/{repo_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get- Full name
databricks.databricks_workspace_get_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_update Write
Workspace Update Official Databricks SDK endpoint: PATCH /api/2.0/repos/{repo_id} Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_update- Full name
databricks.databricks_workspace_update_2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_delete_acl Write
Workspace Delete Acl Official Databricks SDK endpoint: POST /api/2.0/secrets/acls/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_delete_acl- Full name
databricks.databricks_workspace_delete_acl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get_acl Read
Workspace Get Acl Official Databricks SDK endpoint: GET /api/2.0/secrets/acls/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get_acl- Full name
databricks.databricks_workspace_get_acl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_list_acls Read
Workspace List Acls Official Databricks SDK endpoint: GET /api/2.0/secrets/acls/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_list_acls- Full name
databricks.databricks_workspace_list_acls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_put_acl Write
Workspace Put Acl Official Databricks SDK endpoint: POST /api/2.0/secrets/acls/put Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_put_acl- Full name
databricks.databricks_workspace_put_acl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_delete_secret Write
Workspace Delete Secret Official Databricks SDK endpoint: POST /api/2.0/secrets/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_delete_secret- Full name
databricks.databricks_workspace_delete_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get_secret Read
Workspace Get Secret Official Databricks SDK endpoint: GET /api/2.0/secrets/get Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get_secret- Full name
databricks.databricks_workspace_get_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_list_secrets Read
Workspace List Secrets Official Databricks SDK endpoint: GET /api/2.0/secrets/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_list_secrets- Full name
databricks.databricks_workspace_list_secrets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_put_secret Write
Workspace Put Secret Official Databricks SDK endpoint: POST /api/2.0/secrets/put Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_put_secret- Full name
databricks.databricks_workspace_put_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_create_scope Write
Workspace Create Scope Official Databricks SDK endpoint: POST /api/2.0/secrets/scopes/create Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_create_scope- Full name
databricks.databricks_workspace_create_scope
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_delete_scope Write
Workspace Delete Scope Official Databricks SDK endpoint: POST /api/2.0/secrets/scopes/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_delete_scope- Full name
databricks.databricks_workspace_delete_scope
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_list_scopes Read
Workspace List Scopes Official Databricks SDK endpoint: GET /api/2.0/secrets/scopes/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_list_scopes- Full name
databricks.databricks_workspace_list_scopes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_delete Write
Workspace Delete Official Databricks SDK endpoint: POST /api/2.0/workspace/delete Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_delete- Full name
databricks.databricks_workspace_delete_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_export Read
Workspace Export Official Databricks SDK endpoint: GET /api/2.0/workspace/export Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_export- Full name
databricks.databricks_workspace_export
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_get_status Read
Workspace Get Status Official Databricks SDK endpoint: GET /api/2.0/workspace/get-status Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_get_status- Full name
databricks.databricks_workspace_get_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_import Write
Workspace Import Official Databricks SDK endpoint: POST /api/2.0/workspace/import Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_import- Full name
databricks.databricks_workspace_import
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_list Read
Workspace List Official Databricks SDK endpoint: GET /api/2.0/workspace/list Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_list- Full name
databricks.databricks_workspace_list_3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
workspace_mkdirs Write
Workspace Mkdirs Official Databricks SDK endpoint: POST /api/2.0/workspace/mkdirs Generated from the official databricks-sdk-go surface, which is generated from Databricks OpenAPI specs.
- Lua path
app.integrations.databricks.workspace_mkdirs- Full name
databricks.databricks_workspace_mkdirs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||