KosmoKrator

data

dbt Cloud CLI for AI Agents

Use the dbt Cloud CLI from KosmoKrator to call dbt Cloud tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

dbt Cloud CLI Setup

dbt Cloud can be configured headlessly with `kosmokrator integrations:configure dbt-cloud`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure dbt-cloud --set access_token="$DBT_CLOUD_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor dbt-cloud --json
kosmokrator integrations:status --json

Credentials

Authentication type: API token api_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
access_token DBT_CLOUD_ACCESS_TOKEN Secret secret yes Access Token
url DBT_CLOUD_URL URL url no API Base URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_accounts '{}' --json
Provider shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_accounts '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs dbt-cloud --json
kosmo integrations:docs dbt-cloud.dbt_cloud_v2_list_accounts --json
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_accounts --json
kosmo integrations:search "dbt Cloud" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

dbt-cloud.dbt_cloud_v2_list_accounts

List Accounts Official dbt Cloud v2 endpoint: GET /api/v2/accounts/ Deprecated. Consider using the v3 API instead.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_accounts '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_accounts '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_account

Retrieve Account Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/ Retrieve an Account

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_account '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_account '{}' --json

dbt-cloud.dbt_cloud_v2_update_account

Update Account Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/ Update an account

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_account '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_account '{}' --json

dbt-cloud.dbt_cloud_v2_partial_update_account

Partial Update Account Official dbt Cloud v2 endpoint: PATCH /api/v2/accounts/{account_id}/ Partial Account update

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_partial_update_account '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_partial_update_account '{}' --json

dbt-cloud.dbt_cloud_v2_list_ssh_tunnels

List SSH Tunnels Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/encryptions/ List SSH tunnels

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_ssh_tunnels '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_ssh_tunnels '{}' --json

dbt-cloud.dbt_cloud_v2_create_ssh_tunnel

Create SSH Tunnel Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/encryptions/ Create a new SSH tunnel to encrypt traffic for a given connection

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_ssh_tunnel '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_create_ssh_tunnel '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel

Retrieve SSH Tunnel Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/encryptions/{id}/ Retrieve an SSH tunnel

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_ssh_tunnel '{}' --json

dbt-cloud.dbt_cloud_v2_update_ssh_tunnel

Update SSH Tunnel Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/encryptions/{id}/ Update an SSH tunnel

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_ssh_tunnel '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_ssh_tunnel '{}' --json

dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel

Destroy SSH Tunnel Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/encryptions/{id}/ Delete an SSH tunnel

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_ssh_tunnel '{}' --json

dbt-cloud.dbt_cloud_v2_list_environments

List Environments Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/environments/ Deprecated. Consider using the v3 API instead.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_environments '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_environments '{}' --json

dbt-cloud.dbt_cloud_v2_create_environment

Create Environment Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/environments/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_create_environment '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_environment

Retrieve Environment Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_environment '{}' --json

dbt-cloud.dbt_cloud_v2_update_environment

Update Environment Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_environment '{}' --json

dbt-cloud.dbt_cloud_v2_destroy_environment

Destroy Environment Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_environment '{}' --json

dbt-cloud.dbt_cloud_v2_list_invites

List Invites Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/invites/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_invites '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_invites '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_invite

Retrieve Invite Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/invites/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_invite '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_invite '{}' --json

dbt-cloud.dbt_cloud_v2_list_jobs

List Jobs Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/ List jobs for the given account

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_jobs '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_jobs '{}' --json

dbt-cloud.dbt_cloud_v2_create_job

Create Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/ Create a new job.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_job '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_create_job '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_job_artifact

Retrieve Job Artifact Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/{job_id}/artifacts/{remainder} Given a job id and *a set of Run filters* return the latest matching artifact for that job.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_job_artifact '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_job_artifact '{}' --json

dbt-cloud.dbt_cloud_v2_retry_failed_job

Retry Failed Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/{job_id}/rerun/ Use this endpoint to retry a failed run for a job from the point of failure, if the run failed. Otherwise trigger a new run. When this

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retry_failed_job '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retry_failed_job '{}' --json

dbt-cloud.dbt_cloud_v2_trigger_job_run

Trigger Job Run Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/{job_id}/run/ Use this endpoint to kick off a run for a job. When this endpoint returns a successful response, a new run will be enqueued for the accoun

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_trigger_job_run '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_trigger_job_run '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_job

Retrieve Job Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/{id}/ Retrieve the details of a job.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_job '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_job '{}' --json

dbt-cloud.dbt_cloud_v2_update_job

Update Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/{id}/ Update a job.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_job '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_job '{}' --json

dbt-cloud.dbt_cloud_v2_destroy_job

Destroy Job Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/jobs/{id}/ Delete a job

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_job '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_job '{}' --json

dbt-cloud.dbt_cloud_v2_list_account_license_allocations

List Account License Allocations Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/licenses/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_account_license_allocations '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_account_license_allocations '{}' --json

dbt-cloud.dbt_cloud_v2_list_notifications

List Notifications Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/notifications/ List notification configurations

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_notifications '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_notifications '{}' --json

dbt-cloud.dbt_cloud_v2_create_notification

Create Notification Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/notifications/ Create a new Job Notification configuration to trigger notifications for job successes, failures, or cancelations. Notifications can be se

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_notification '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_create_notification '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_notification

Retrieve Notification Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/notifications/{id}/ Fetch notification configurations

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_notification '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_notification '{}' --json

dbt-cloud.dbt_cloud_v2_update_notification

Update Notification Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/notifications/{id}/ Update an existing Job Notification configuration.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_notification '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_notification '{}' --json

dbt-cloud.dbt_cloud_v2_destroy_notification

Destroy Notification Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/notifications/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_notification '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_notification '{}' --json

dbt-cloud.dbt_cloud_v2_update_license_permissions

Update License Permissions Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/permissions/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_license_permissions '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_license_permissions '{}' --json

dbt-cloud.dbt_cloud_v2_list_projects

List Projects Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/projects/ Deprecated. Consider using the v3 API instead.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_projects '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_projects '{}' --json

dbt-cloud.dbt_cloud_v2_create_project

Create Project Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/projects/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_create_project '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_project

Retrieve Project Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_project '{}' --json

dbt-cloud.dbt_cloud_v2_update_project

Update Project Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_project '{}' --json

dbt-cloud.dbt_cloud_v2_destroy_project

Destroy Project Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_project '{}' --json

dbt-cloud.dbt_cloud_v2_list_repositories

List Repositories Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/repositories/ Deprecated. Consider using the v3 API instead.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_repositories '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_repositories '{}' --json

dbt-cloud.dbt_cloud_v2_create_repository

Create Repository Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/repositories/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_create_repository '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_repository

Retrieve Repository Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/repositories/{id}/ Deprecated. Consider using the v3 API instead.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_repository '{}' --json

dbt-cloud.dbt_cloud_v2_destroy_repository

Destroy Repository Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/repositories/{id}/ Deprecated. Consider using the v3 API instead.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_repository '{}' --json

dbt-cloud.dbt_cloud_v2_list_runs

List Runs Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/ List runs for an account.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_runs '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_runs '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_run

Retrieve Run Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{id}/ Retrieve details of a run.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run '{}' --json

dbt-cloud.dbt_cloud_v2_list_run_artifacts

List Run Artifacts Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{run_id}/artifacts/ Retrieve the list of artifacts generated for a run.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_run_artifacts '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_run_artifacts '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_run_artifact

Retrieve Run Artifact Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{run_id}/artifacts/{remainder} Use this endpoint to fetch artifacts from a completed run. Once a run has been completed, you can use this endpoint

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run_artifact '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run_artifact '{}' --json

dbt-cloud.dbt_cloud_v2_cancel_run

Cancel Run Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/runs/{run_id}/cancel/ Cancel a run.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_cancel_run '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_cancel_run '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details

Retrieve Run Failure Details Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{run_id}/retry/ Use this endpoint to get details about a retryable run that has failed.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run_failure_details '{}' --json

dbt-cloud.dbt_cloud_v2_retry_run

Retry Run Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/runs/{run_id}/retry/ Use this endpoint to retry a failed run. When this endpoint returns a successful response, a new run will be enqueued. Users can poll the Get

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retry_run '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retry_run '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_run_step

Retrieve Run Step Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/steps/{id}/ Retrieve the details of a specific step of a run.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run_step '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run_step '{}' --json

dbt-cloud.dbt_cloud_v2_list_users

List Users Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/users/ List the Users associated with the specified Account.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_users '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_list_users '{}' --json

dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications

Unsubscribe from Notifications Official dbt Cloud v2 endpoint: POST /api/v2/notifications/unsubscribe/ Clear out all email notification configurations for the user making the request.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_unsubscribe_from_notifications '{}' --json

dbt-cloud.dbt_cloud_v2_retrieve_user

Retrieve User Official dbt Cloud v2 endpoint: GET /api/v2/users/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_user '{}' --json

dbt-cloud.dbt_cloud_v2_update_user

Update User Official dbt Cloud v2 endpoint: POST /api/v2/users/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v2_update_user '{}' --json

dbt-cloud.dbt_cloud_v3_list_accounts

List Accounts Official dbt Cloud v3 endpoint: GET /api/v3/accounts/ List the Accounts that your API Token is authorized to access.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_accounts '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_accounts '{}' --json

dbt-cloud.dbt_cloud_v3_assign_user_to_groups

Assign User to Groups Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/assign-groups/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_assign_user_to_groups '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_assign_user_to_groups '{}' --json

dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events

List Recent Audit Log Events Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/ Fetch paginated audit log events. Note: This API is only available to enterprise customers.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_recent_audit_log_events '{}' --json

dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv

Get Recent Audit Log Events CSV Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/download/ Generate audit log CSV Note: This API is only available to enterprise customers.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_recent_audit_log_events_csv '{}' --json

dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status

Get Bulk Audit Log Export Status Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/export/ Check the status of a bulk export request. Note: This API is only available to enterprise customers.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_bulk_audit_log_export_status '{}' --json

dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request

Submit Bulk Audit Log Export Request Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/audit-logs/export/ Submit a bulk export request. Note: This API is only available to enterprise customers.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_submit_bulk_audit_log_export_request '{}' --json

dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export

Download Bulk Audit Log Export Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/export/{job_identifier}/download/ Download a bulk export of audit log events. Note: This API is only available to enterprise custome

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_download_bulk_audit_log_export '{}' --json

dbt-cloud.dbt_cloud_v3_list_account_connections

List Account Connections Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/connections/ List all Account Connections.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_account_connections '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_account_connections '{}' --json

dbt-cloud.dbt_cloud_v3_create_account_connection

Create Account Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/connections/ Create a new Account Connection.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_account_connection '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_account_connection '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_account_connection

Retrieve Account Connection Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/connections/{id}/ Retrieve details of a specific Account Connection.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_account_connection '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_account_connection '{}' --json

dbt-cloud.dbt_cloud_v3_update_account_connection

Update Account Connection Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/connections/{id}/ Update an existing Account Connection.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_account_connection '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_account_connection '{}' --json

dbt-cloud.dbt_cloud_v3_delete_account_connection_delete

Delete Account Connection Delete Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/connections/{id}/ Delete an existing Account Connection Delete.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_account_connection_delete '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_account_connection_delete '{}' --json

dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache

Delete Environment SAO Cache Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/environments/{environment_id}/sao-cache/ Clear the environment SAO (State Aware Orchestration) cache in Redis for the given environment

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_environment_sao_cache '{}' --json

dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses

List Favorite Asset Responses Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/favorite-assets/ List all Favorite Asset Responses.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_favorite_asset_responses '{}' --json

dbt-cloud.dbt_cloud_v3_assign_group_permissions

Assign Group Permissions Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/group-permissions/{group_id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_assign_group_permissions '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_assign_group_permissions '{}' --json

dbt-cloud.dbt_cloud_v3_list_groups

List Groups Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/groups/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_groups '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_groups '{}' --json

dbt-cloud.dbt_cloud_v3_create_group

Create Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/groups/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_group '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_group

Retrieve Group Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/groups/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_group '{}' --json

dbt-cloud.dbt_cloud_v3_update_group

Update Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/groups/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_group '{}' --json

dbt-cloud.dbt_cloud_v3_send_user_invites

Send user invites Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/invites/ Send email invites to users who you wish to add to this account

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_send_user_invites '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_send_user_invites '{}' --json

dbt-cloud.dbt_cloud_v3_list_ip_restrictions

List IP Restrictions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_ip_restrictions '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_ip_restrictions '{}' --json

dbt-cloud.dbt_cloud_v3_save_ip_restriction

Save IP Restriction Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/ip-restrictions/ Save net-new ip restriction rule Note: As long as at least one cidr was successfully saved a 2XX will be returned. Check the `extra` key

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_save_ip_restriction '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_save_ip_restriction '{}' --json

dbt-cloud.dbt_cloud_v3_enable_ip_restrictions

Enable IP Restrictions Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/ip-restrictions-set/ Toggle the enablement of the IP restriction feature.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_enable_ip_restrictions '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_enable_ip_restrictions '{}' --json

dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions

Validate Client IP Against IP Restrictions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions-set/{id}/validate/ This endpoint returns whether the client ip is acceptable based on the configured ip restriction

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_validate_client_ip_against_ip_restrictions '{}' --json

dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule

Validate Client IP Against IP Restrictions Excluding Specified IP Rule Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions-set/{id}/validate/{rule_id} This endpoint returns whether the client ip is acceptable b

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction

Retrieve IP Restriction Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions/{id}

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_ip_restriction '{}' --json

dbt-cloud.dbt_cloud_v3_update_ip_restriction

Update IP Restriction Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/ip-restrictions/{id} Update an existing ip restriction rule Note: As long as at least one cidr was successfully saved a 2XX will be returned. Check the

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_ip_restriction '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_ip_restriction '{}' --json

dbt-cloud.dbt_cloud_v3_delete_ip_restriction

Delete IP Restriction Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/ip-restrictions/{id}

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_ip_restriction '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_ip_restriction '{}' --json

dbt-cloud.dbt_cloud_v3_list_license_maps

List License Maps Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/license-maps/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_license_maps '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_license_maps '{}' --json

dbt-cloud.dbt_cloud_v3_create_license_map

Create License Map Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/license-maps/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_license_map '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_license_map '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_license_map

Retrieve License Map Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/license-maps/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_license_map '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_license_map '{}' --json

dbt-cloud.dbt_cloud_v3_update_license_map

Update License Map Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/license-maps/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_license_map '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_license_map '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_license_map

Destroy License Map Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/license-maps/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_license_map '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_license_map '{}' --json

dbt-cloud.dbt_cloud_v3_list_oauth_configurations

List OAuthConfigurations Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/oauth-configurations/ List OAuthConfigurations

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_oauth_configurations '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_oauth_configurations '{}' --json

dbt-cloud.dbt_cloud_v3_create_oauth_configuration

Create OAuthConfiguration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/oauth-configurations/ Create a new OAuthConfiguration

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_oauth_configuration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_oauth_configuration '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration

Retrieve OAuth Configuration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Retrieve an OAuth Configuration

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_oauth_configuration '{}' --json

dbt-cloud.dbt_cloud_v3_update_oauth_configuration

Update OAuth Configuration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Update an OAuthConfiguration

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_oauth_configuration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_oauth_configuration '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration

Destroy OAuth Configuration Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Delete an OAuth Configuration

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_oauth_configuration '{}' --json

dbt-cloud.dbt_cloud_v3_list_projects

List Projects Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/ List Projects

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_projects '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_projects '{}' --json

dbt-cloud.dbt_cloud_v3_create_project

Create Project Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/ Create a new Project

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_project '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_project

Retrieve Project Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{id}/ Retrieve a Project

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_project '{}' --json

dbt-cloud.dbt_cloud_v3_update_project

Update Project Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{id}/ Update a Project

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_project '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_project

Destroy Project Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{id}/ Delete Project

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_project '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_project '{}' --json

dbt-cloud.dbt_cloud_v3_create_adapter

Create Adapter Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/adapters/ Create a new adapter for a project. The ID from this adapter can be used to create Connections or Credentials when necessary.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_adapter '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_adapter '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_adapter

Retrieve Adapter Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Get an adapter by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_adapter '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_adapter '{}' --json

dbt-cloud.dbt_cloud_v3_update_adapter

Update Adapter Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Update an adapter.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_adapter '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_adapter '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_adapter

Destroy Adapter Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Delete an adapter.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_adapter '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_adapter '{}' --json

dbt-cloud.dbt_cloud_v3_list_connections

List Connections Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/connections/ List Connections

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_connections '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_connections '{}' --json

dbt-cloud.dbt_cloud_v3_create_connection

Create Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/connections/ Create a new Connection

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_connection '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_connection '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_connection

Retrieve Connection Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Retrieve a Connection

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_connection '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_connection '{}' --json

dbt-cloud.dbt_cloud_v3_update_connection

Update Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Update a Connection

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_connection '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_connection '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_connection

Destroy Connection Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Delete a Connection

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_connection '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_connection '{}' --json

dbt-cloud.dbt_cloud_v3_list_credentials

List Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/credentials/ List the credentials for a given project.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_create_credentials

Create Credentials Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/credentials/ Create a new set of credentials to associate with a user or environment.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_get_credentials

Get Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Fetch a specific set of credentials.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_update_credentials

Update Credentials Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Update a set of credentials.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_partial_update_credentials

Partial Update Credentials Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Partially update a set of credentials.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_partial_update_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_partial_update_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_delete_credentials

Delete Credentials Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Delete a set of credentials.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_create_projects_environment_variable

Create Projects Environment Variable Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_projects_environment_variable '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_projects_environment_variable '{}' --json

dbt-cloud.dbt_cloud_v3_update_projects_environment_variable

Update Projects Environment Variable Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_projects_environment_variable '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_projects_environment_variable '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable

Destroy Projects Environment Variable Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_projects_environment_variable '{}' --json

dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk

Create Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_projects_environment_variables_bulk '{}' --json

dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk

Update Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_projects_environment_variables_bulk '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk

Destroy Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_projects_environment_variables_bulk '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment

Retrieve Projects Environment Variables Environment Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/environment/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_environment_variables_environment '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job

Retrieve Projects Environment Variables Job Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/job/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_environment_variables_job '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user

Retrieve Projects Environment Variables User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/user/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_environment_variables_user '{}' --json

dbt-cloud.dbt_cloud_v3_list_environments

List Environments Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environments/ List Environments

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_environments '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_environments '{}' --json

dbt-cloud.dbt_cloud_v3_create_environment

Create Environment Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environments/ Create a new Environment

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_environment '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_environment

Retrieve Environment Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Retrieve an Environment

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_environment '{}' --json

dbt-cloud.dbt_cloud_v3_update_environment

Update Environment Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Replace an Environment. This is a full replace operation — all fields must be provided. Any omitted fields will

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_environment '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_environment

Destroy Environment Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Delete an Environment

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_environment '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_environment '{}' --json

dbt-cloud.dbt_cloud_v3_create_extended_attributes

Create Extended Attributes Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/ Create a new Extended Attributes record.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_extended_attributes '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_extended_attributes '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes

Retrieve Extended Attributes Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/{id}/ Given an account_id, project_id, and primary key: retrieve an existing Extended Attributes record

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_extended_attributes '{}' --json

dbt-cloud.dbt_cloud_v3_update_extended_attributes

Update Extended Attributes Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/{id}/ Update an existing Extended Attributes record by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_extended_attributes '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_extended_attributes '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_extended_attributes

Destroy Extended Attributes Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/{id}/ Delete an existing Extended Attributes record by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_extended_attributes '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_extended_attributes '{}' --json

dbt-cloud.dbt_cloud_v3_list_lineage_integrations

List Lineage Integrations Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_lineage_integrations '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_lineage_integrations '{}' --json

dbt-cloud.dbt_cloud_v3_create_lineage_integration

Create Lineage Integration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_lineage_integration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_lineage_integration '{}' --json

dbt-cloud.dbt_cloud_v3_get_lineage_integration

Get Lineage Integration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_lineage_integration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_lineage_integration '{}' --json

dbt-cloud.dbt_cloud_v3_update_lineage_integration

Update Lineage Integration Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_lineage_integration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_lineage_integration '{}' --json

dbt-cloud.dbt_cloud_v3_delete_lineage_integration

Delete Lineage Integration Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_lineage_integration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_lineage_integration '{}' --json

dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool

List collections from BI tool Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/collections/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_collections_from_bi_tool '{}' --json

dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2

List collections from BI tool_2 Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/collections/{collection_id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2 '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_collections_from_bi_tool_2 '{}' --json

dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections

Update Lineage Integration Selections Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/selections

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_lineage_integration_selections '{}' --json

dbt-cloud.dbt_cloud_v3_create_managed_repository

Create Managed Repository Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/managed-repositories/ Create a new dbt Cloud managed repository.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_managed_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_managed_repository '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download

Retrieve Projects Managed Repositories Download Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/managed-repositories/{repository_id}/download/ Download a managed repository as a ZIP archive

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_managed_repositories_download '{}' --json

dbt-cloud.dbt_cloud_v3_list_profiles

List Profiles Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/profiles/ List profiles. Note: Profiles are in the process of being rolled out and may not be available for your account yet. Profiles are

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_profiles '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_profiles '{}' --json

dbt-cloud.dbt_cloud_v3_create_profile

Create Profile Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/profiles/ Create a new profile. Note: Profiles are in the process of being rolled out and may not be available for your account yet. Pro

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_profile '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_profile '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_profile

Retrieve Profile Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/profiles/{id}/ Retrieve a specific profile. Note: Profiles are in the process of being rolled out and may not be available for your acc

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_profile '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_profile '{}' --json

dbt-cloud.dbt_cloud_v3_update_profile

Update Profile Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/profiles/{id}/ Update an existing profile. Note: Profiles are in the process of being rolled out and may not be available for your acco

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_profile '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_profile '{}' --json

dbt-cloud.dbt_cloud_v3_delete_profile

Delete Profile Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/profiles/{id}/ Delete an existing profile. The profile must not be assigned to any deployment environments in order to be deleted. Not

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_profile '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_profile '{}' --json

dbt-cloud.dbt_cloud_v3_list_repositories

List Repositories Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/repositories/ List repositories for the given project

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_repositories '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_repositories '{}' --json

dbt-cloud.dbt_cloud_v3_create_repository

Create Repository Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/repositories/ Create a new repository for the given project

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_repository '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_repository

Retrieve Repository Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Get a repository by ID

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_repository '{}' --json

dbt-cloud.dbt_cloud_v3_update_repository

Update Repository Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Update a repository

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_repository '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_repository

Destroy Repository Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Delete a repository

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_repository '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_repository '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration

Retrieve SCIM configuration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/ Retrieve the SCIM configuration for the account

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_configuration '{}' --json

dbt-cloud.dbt_cloud_v3_create_scim_configuration

Create SCIM configuration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim-config/ Create SCIM configuration for the account

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_configuration '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_configuration '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens

Retrieve SCIM tokens Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/tokens/ Retrieve all SCIM tokens

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_tokens '{}' --json

dbt-cloud.dbt_cloud_v3_create_scim_token

Create SCIM token Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim-config/tokens/ Create a SCIM token

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_token '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_token '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_scim_token

Retrieve SCIM token Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/tokens/{id}/ Retrieve the specified SCIM token

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_token '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_token '{}' --json

dbt-cloud.dbt_cloud_v3_delete_scim_token

Delete SCIM token Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim-config/tokens/{id}/ Delete the specified SCIM token

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_scim_token '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_scim_token '{}' --json

dbt-cloud.dbt_cloud_v3_list_scim_groups

List SCIM Groups Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Groups List all groups via SCIM

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_scim_groups '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_scim_groups '{}' --json

dbt-cloud.dbt_cloud_v3_create_scim_group

Create SCIM Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim/v2/Groups Create a group via SCIM

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_group '{}' --json

dbt-cloud.dbt_cloud_v3_get_scim_group

Get SCIM Group Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Get a group via SCIM

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_group '{}' --json

dbt-cloud.dbt_cloud_v3_update_scim_group

Update SCIM Group Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Update a group via SCIM using PUT

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_scim_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_scim_group '{}' --json

dbt-cloud.dbt_cloud_v3_patch_scim_group

Patch SCIM Group Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Update a group via SCIM using PATCH

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_patch_scim_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_patch_scim_group '{}' --json

dbt-cloud.dbt_cloud_v3_delete_scim_group

Delete SCIM Group Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Delete a group via SCIM

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_scim_group '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_scim_group '{}' --json

dbt-cloud.dbt_cloud_v3_get_scim_resource_types

Get SCIM Resource Types Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ResourceTypes Get Supported SCIM Resource Types

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_resource_types '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_resource_types '{}' --json

dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details

Get SCIM Resource Type Details Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ResourceTypes/{resource_type} Get Supported SCIM Resource Type Details

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_resource_type_details '{}' --json

dbt-cloud.dbt_cloud_v3_get_scim_schemas

Get SCIM Schemas Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Schemas Get Supported SCIM Schemas

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_schemas '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_schemas '{}' --json

dbt-cloud.dbt_cloud_v3_get_scim_schema_details

Get SCIM Schema Details Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Schemas/{schema_uri} Get Supported SCIM Schema Details

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_schema_details '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_schema_details '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig

Retrieve Scim V2 Serviceproviderconfig Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ServiceProviderConfig Get the SCIM Service Provider Config

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig '{}' --json

dbt-cloud.dbt_cloud_v3_list_scim_users

List SCIM Users Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Users List all users via SCIM

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_scim_users '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_scim_users '{}' --json

dbt-cloud.dbt_cloud_v3_create_scim_user

Create SCIM User Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim/v2/Users Create a user via SCIM

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_user '{}' --json

dbt-cloud.dbt_cloud_v3_get_scim_user

Get SCIM User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Get a user via SCIM

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_user '{}' --json

dbt-cloud.dbt_cloud_v3_replace_scim_user

Replace SCIM User Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Replace a user via SCIM using PUT

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_replace_scim_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_replace_scim_user '{}' --json

dbt-cloud.dbt_cloud_v3_update_scim_user

Update SCIM User Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Update a user attribute(s) via SCIM

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_scim_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_scim_user '{}' --json

dbt-cloud.dbt_cloud_v3_delete_scim_user

Delete SCIM User Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Delete a user via SCIM. This endpoint will remove the users license from the account.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_scim_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_scim_user '{}' --json

dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials

List Semantic Layer Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/semantic-layer-credentials/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_semantic_layer_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_list_service_tokens

List Service Tokens Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_service_tokens '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_service_tokens '{}' --json

dbt-cloud.dbt_cloud_v3_create_service_token

Create Service Token Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/service-tokens/ This endpoint is used to generate a new service token for the account.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_service_token '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_service_token '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_service_token

Retrieve Service Token Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_service_token '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_service_token '{}' --json

dbt-cloud.dbt_cloud_v3_update_service_token

Update Service Token Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/service-tokens/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_service_token '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_service_token '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_service_token

Destroy Service Token Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/service-tokens/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_service_token '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_service_token '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission

Retrieve Service Tokens Permission Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/{service_token_id}/permissions/ List permissions of a given ServiceToken for an account.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_service_tokens_permission '{}' --json

dbt-cloud.dbt_cloud_v3_list_users

List Users Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/ List users for a given account.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_users '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_users '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_user

Retrieve User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_user '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_user '{}' --json

dbt-cloud.dbt_cloud_v3_list_account_scoped_pats

List Account Scoped PATs Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_account_scoped_pats '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_account_scoped_pats '{}' --json

dbt-cloud.dbt_cloud_v3_create_account_scoped_pat

Create Account Scoped PAT Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_account_scoped_pat '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_account_scoped_pat '{}' --json

dbt-cloud.dbt_cloud_v3_get_account_scoped_pat

Get Account Scoped PAT Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_account_scoped_pat '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_account_scoped_pat '{}' --json

dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat

Rotate Account Scoped PAT Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_rotate_account_scoped_pat '{}' --json

dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat

Delete Account Scoped PAT Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_account_scoped_pat '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event

Retrieve Webhooks Event Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/event/{event_id} Get a specific event given an event_id. This endpoint is deprecated and should not be called anymore.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_webhooks_event '{}' --json

dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts

List Webhooks Event Receipts Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/event/{event_id}/receipts Get all receipts for a given event id

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_event_receipts '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt

Retrieve Webhooks Receipt Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/receipt/{receipt_id} Get a specific receipt given its id. This endpoint is deprecated and should not be called anymore.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_webhooks_receipt '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription

Retrieve Webhooks Subscription Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id} Get a specific subscription with a subscription id

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_webhooks_subscription '{}' --json

dbt-cloud.dbt_cloud_v3_update_webhooks_subscription

Update Webhooks Subscription Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id} Edit a subscription given a subscription id

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_webhooks_subscription '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_webhooks_subscription '{}' --json

dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription

Destroy Webhooks Subscription Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id} Delete a specific subscription

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_webhooks_subscription '{}' --json

dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt

List Webhooks Subscription Event Receipt Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id}/event/{event_id}/receipt Get the receipt for a given subscription id and event id. This endpo

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_subscription_event_receipt '{}' --json

dbt-cloud.dbt_cloud_v3_list_webhooks_events

List Webhooks Events Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id}/events Get all events for a specific subscription

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_events '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_events '{}' --json

dbt-cloud.dbt_cloud_v3_test_webhooks_subscription

Test Webhooks Subscription Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id}/test Test the client endpoint for a given subscription

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_test_webhooks_subscription '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_test_webhooks_subscription '{}' --json

dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions

List Webhooks Subscriptions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscriptions Given an account id list all webhook subscriptions

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_subscriptions '{}' --json

dbt-cloud.dbt_cloud_v3_create_webhooks_subscription

Create Webhooks Subscription Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/webhooks/subscriptions Create a new webhook subscription

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_webhooks_subscription '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_webhooks_subscription '{}' --json

dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema

Retrieve Adapter Schema Official dbt Cloud v3 endpoint: GET /api/v3/adapter-schema/ \" Fetch the schema for a given adapter. The schema will include details on available fields for connections and credentials. Notes: - salesforce_v0 is curre

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_adapter_schema '{}' --json

dbt-cloud.dbt_cloud_v3_list_user_credentials

List User Credentials Official dbt Cloud v3 endpoint: GET /api/v3/users/{user_id}/credentials/ List the development credentials associated with a given user.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_user_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_list_user_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_create_user_credentials

Create User Credentials Official dbt Cloud v3 endpoint: POST /api/v3/users/{user_id}/credentials/ Associate a set of development credentials with a given user.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_user_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_create_user_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_get_user_credentials

Get User Credentials Official dbt Cloud v3 endpoint: GET /api/v3/users/{user_id}/credentials/{id}/ Get a development credentials association for a given user.

Read read
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_user_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_get_user_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_update_user_credentials

Update User Credentials Official dbt Cloud v3 endpoint: POST /api/v3/users/{user_id}/credentials/{id}/ Update which development credentials are associated with a specific user.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_user_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_update_user_credentials '{}' --json

dbt-cloud.dbt_cloud_v3_delete_user_credentials

Delete User Credentials Official dbt Cloud v3 endpoint: DELETE /api/v3/users/{user_id}/credentials/{id}/ Delete a development credentials / user association.

Write write
Parameters
none
Generic call
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_user_credentials '{}' --json
Shortcut
kosmo integrations:dbt-cloud dbt_cloud_v3_delete_user_credentials '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

dbt-cloud.dbt_cloud_v2_list_accounts 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_accounts --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_account 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_account --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_account 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_account --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_partial_update_account 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_partial_update_account --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_ssh_tunnels 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_ssh_tunnels --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_create_ssh_tunnel 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_ssh_tunnel --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_ssh_tunnel 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_ssh_tunnel --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_environments 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_environments --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_create_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_destroy_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_invites 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_invites --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_invite 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_invite --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_jobs 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_jobs --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_create_job 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_job --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_job_artifact 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_job_artifact --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retry_failed_job 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retry_failed_job --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_trigger_job_run 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_trigger_job_run --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_job 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_job --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_job 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_job --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_destroy_job 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_job --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_account_license_allocations 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_account_license_allocations --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_notifications 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_notifications --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_create_notification 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_notification --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_notification 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_notification --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_notification 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_notification --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_destroy_notification 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_notification --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_license_permissions 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_license_permissions --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_projects 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_projects --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_create_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_destroy_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_repositories 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_repositories --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_create_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_destroy_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_runs 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_runs --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_run 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_run_artifacts 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_run_artifacts --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_run_artifact 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run_artifact --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_cancel_run 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_cancel_run --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retry_run 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retry_run --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_run_step 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run_step --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_list_users 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_users --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_retrieve_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v2_update_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_accounts 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_accounts --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_assign_user_to_groups 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_assign_user_to_groups --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_account_connections 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_account_connections --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_account_connection 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_account_connection --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_account_connection 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_account_connection --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_account_connection 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_account_connection --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_account_connection_delete 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_account_connection_delete --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_assign_group_permissions 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_assign_group_permissions --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_groups 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_groups --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_send_user_invites 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_send_user_invites --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_ip_restrictions 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_ip_restrictions --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_save_ip_restriction 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_save_ip_restriction --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_enable_ip_restrictions 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_enable_ip_restrictions --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_ip_restriction 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_ip_restriction --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_ip_restriction 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_ip_restriction --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_license_maps 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_license_maps --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_license_map 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_license_map --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_license_map 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_license_map --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_license_map 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_license_map --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_license_map 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_license_map --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_oauth_configurations 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_oauth_configurations --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_oauth_configuration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_oauth_configuration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_oauth_configuration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_oauth_configuration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_projects 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_projects --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_project 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_project --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_adapter 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_adapter --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_adapter 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_adapter --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_adapter 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_adapter --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_adapter 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_adapter --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_connections 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_connections --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_connection 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_connection --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_connection 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_connection --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_connection 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_connection --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_connection 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_connection --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_partial_update_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_partial_update_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_projects_environment_variable 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_projects_environment_variable --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_projects_environment_variable 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_projects_environment_variable --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_environments 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_environments --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_environment 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_environment --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_extended_attributes 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_extended_attributes --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_extended_attributes 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_extended_attributes --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_extended_attributes 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_extended_attributes --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_lineage_integrations 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_lineage_integrations --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_lineage_integration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_lineage_integration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_lineage_integration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_lineage_integration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_lineage_integration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_lineage_integration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_lineage_integration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_lineage_integration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2 --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_managed_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_managed_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_profiles 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_profiles --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_profile 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_profile --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_profile 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_profile --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_profile 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_profile --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_profile 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_profile --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_repositories 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_repositories --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_repository 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_repository --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_scim_configuration 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_configuration --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_scim_token 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_token --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_scim_token 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_token --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_scim_token 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_scim_token --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_scim_groups 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_scim_groups --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_scim_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_scim_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_scim_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_scim_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_patch_scim_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_patch_scim_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_scim_group 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_scim_group --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_scim_resource_types 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_resource_types --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_scim_schemas 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_schemas --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_scim_schema_details 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_schema_details --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_scim_users 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_scim_users --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_scim_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_scim_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_replace_scim_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_replace_scim_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_scim_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_scim_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_scim_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_scim_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_service_tokens 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_service_tokens --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_service_token 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_service_token --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_service_token 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_service_token --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_service_token 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_service_token --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_service_token 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_service_token --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_users 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_users --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_user 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_user --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_account_scoped_pats 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_account_scoped_pats --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_account_scoped_pat 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_account_scoped_pat --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_account_scoped_pat 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_account_scoped_pat --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_webhooks_subscription 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_webhooks_subscription --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_webhooks_events 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_events --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_test_webhooks_subscription 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_test_webhooks_subscription --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_webhooks_subscription 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_webhooks_subscription --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_list_user_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_user_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_create_user_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_user_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_get_user_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_user_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_update_user_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_user_credentials --json
ParameterTypeRequiredDescription
No parameters.
dbt-cloud.dbt_cloud_v3_delete_user_credentials 0 parameters
Schema command
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_user_credentials --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.