KosmoKrator

data

ClickHouse Cloud CLI for AI Agents

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

ClickHouse Cloud CLI Setup

ClickHouse Cloud can be configured headlessly with `kosmokrator integrations:configure clickhouse-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 clickhouse-cloud --set key_id="$CLICKHOUSE_CLOUD_KEY_ID" --set key_secret="$CLICKHOUSE_CLOUD_KEY_SECRET" --enable --read allow --write ask --json
kosmokrator integrations:doctor clickhouse-cloud --json
kosmokrator integrations:status --json

Credentials

Authentication type: Username and password basic. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
key_id CLICKHOUSE_CLOUD_KEY_ID Text text yes API Key ID
key_secret CLICKHOUSE_CLOUD_KEY_SECRET Secret secret yes API Key Secret
url CLICKHOUSE_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 clickhouse-cloud.clickhouse_cloud_organization_get_list '{}' --json
Provider shortcut
kosmo integrations:clickhouse-cloud clickhouse_cloud_organization_get_list '{}' --json

Discovery

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

Discovery commands
kosmo integrations:docs clickhouse-cloud --json
kosmo integrations:docs clickhouse-cloud.clickhouse_cloud_organization_get_list --json
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_get_list --json
kosmo integrations:search "ClickHouse 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.

clickhouse-cloud.clickhouse_cloud_organization_get_list

Get list of available organizations Official ClickHouse Cloud endpoint: GET /v1/organizations Returns a list with a single organization associated with the API key in the request.

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

clickhouse-cloud.clickhouse_cloud_organization_get

Get organization details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId} Returns details of a single organization. In order to get the details, the auth key must belong to the organization.

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

clickhouse-cloud.clickhouse_cloud_organization_update

Update organization details Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId} Updates organization fields. Requires ADMIN auth key role.

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

clickhouse-cloud.clickhouse_cloud_organization_prometheus_get

Get organization metrics Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/prometheus Returns prometheus metrics for all services in an organization.

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

clickhouse-cloud.clickhouse_cloud_organization_roles_get_list

List all available roles for an organization Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/roles Returns all available roles (system + custom) for an organization.

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

clickhouse-cloud.clickhouse_cloud_organization_role_post

Create a new role Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/roles Creates a new custom role for an organization with specified policies and actors.

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

clickhouse-cloud.clickhouse_cloud_organization_role_get

Get role details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/roles/{roleId} Returns details for a specific role.

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

clickhouse-cloud.clickhouse_cloud_organization_role_patch

Update a role Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/roles/{roleId} Updates an existing custom role. System roles cannot be updated. All fields are optional - only provided fields will be updated.

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

clickhouse-cloud.clickhouse_cloud_organization_role_delete

Delete a role Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/roles/{roleId} Deletes an existing custom role. System roles cannot be deleted. This operation will remove the role and all its associated policies.

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

clickhouse-cloud.clickhouse_cloud_instance_get_list

List of organization services Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services Returns a list of all services in the organization.

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

clickhouse-cloud.clickhouse_cloud_instance_create

Create new service Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services Creates a new service in the organization, and returns the current service state and a password to access the service. The service is st

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

clickhouse-cloud.clickhouse_cloud_instance_get

Get service details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId} Returns a service that belongs to the organization

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

clickhouse-cloud.clickhouse_cloud_instance_update

Update service basic details Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId} Updates basic service details like service name or IP access list.

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

clickhouse-cloud.clickhouse_cloud_instance_delete

Delete service Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/services/{serviceId} Deletes the service. The service must be in stopped state and is deleted asynchronously after this method call.

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

clickhouse-cloud.clickhouse_cloud_instance_private_endpoint_config_get

Get private endpoint configuration Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/privateEndpointConfig Information required to set up a private endpoint

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

clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_get

Get the service query endpoint for a given instance Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/serviceQueryEndpoint Get the configuration for the service query endpoint that allows execut

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

clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_upsert

Upsert the service query endpoint for a given instance Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services/{serviceId}/serviceQueryEndpoint Create the service query endpoint that allows executing queries via

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

clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_delete

Delete the service query endpoint for a given instance Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/services/{serviceId}/serviceQueryEndpoint Removes the service query endpoint.

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

clickhouse-cloud.clickhouse_cloud_instance_state_update

Update service state Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/state Starts or stop service

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

clickhouse-cloud.clickhouse_cloud_instance_scaling_update

Update service auto scaling settings Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/scaling Updates minimum and maximum total memory limits and idle mode scaling behavior for the service. T

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

clickhouse-cloud.clickhouse_cloud_instance_replica_scaling_update

Update service auto scaling settings Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/replicaScaling Updates minimum and maximum memory limits per replica and idle mode scaling behavior for t

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

clickhouse-cloud.clickhouse_cloud_instance_password_update

Update service password Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/password Sets a new password for the service

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

clickhouse-cloud.clickhouse_cloud_instance_private_endpoint_create

Create a private endpoint Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services/{serviceId}/privateEndpoint Create a new private endpoint. The private endpoint will be associated with this service and organiza

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

clickhouse-cloud.clickhouse_cloud_instance_prometheus_get

Get service metrics Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/prometheus Returns prometheus metrics for a service.

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

clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_list_get

List ClickHouse settings Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickhouseSettings **Disclaimer:** This beta endpoint is evolving; the API contract may change. Returns the configured

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

clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_update

Update ClickHouse settings Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/clickhouseSettings **Disclaimer:** This beta endpoint is evolving; the API contract may change. Updates one or more

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

clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_schema_get

Get ClickHouse settings schema Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickhouseSettings/schema **Disclaimer:** This beta endpoint is evolving; the API contract may change. Returns th

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

clickhouse-cloud.clickhouse_cloud_service_clickhouse_setting_get

Get ClickHouse setting Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickhouseSettings/{settingName} **Disclaimer:** This beta endpoint is evolving; the API contract may change. Returns the

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

clickhouse-cloud.clickhouse_cloud_backup_get_list

List of service backups Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/backups Returns a list of all backups for the service. The most recent backups comes first in the list.

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

clickhouse-cloud.clickhouse_cloud_backup_get

Get backup details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/backups/{backupId} Returns a single backup info.

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

clickhouse-cloud.clickhouse_cloud_backup_configuration_get

Get service backup configuration Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/backupConfiguration Returns the service backup configuration.

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

clickhouse-cloud.clickhouse_cloud_backup_configuration_update

Update service backup configuration Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/backupConfiguration Updates service backup configuration. Requires ADMIN auth key role. Setting the proper

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

clickhouse-cloud.clickhouse_cloud_backup_bucket_get

Get service backup bucket Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/backupBucket **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future.

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

clickhouse-cloud.clickhouse_cloud_backup_bucket_create

Create service backup bucket Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services/{serviceId}/backupBucket **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the fut

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

clickhouse-cloud.clickhouse_cloud_backup_bucket_update

Update service backup bucket Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/backupBucket **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the fu

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

clickhouse-cloud.clickhouse_cloud_backup_bucket_delete

Delete service backup bucket Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/services/{serviceId}/backupBucket **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the f

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

clickhouse-cloud.clickhouse_cloud_openapi_key_get_list

Get list of all keys Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/keys Returns a list of all keys in the organization.

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

clickhouse-cloud.clickhouse_cloud_openapi_key_create

Create key Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/keys Creates new API key.

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

clickhouse-cloud.clickhouse_cloud_openapi_key_get

Get key details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/keys/{keyId} Returns a single key details.

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

clickhouse-cloud.clickhouse_cloud_openapi_key_update

Update key Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/keys/{keyId} Updates API key properties.

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

clickhouse-cloud.clickhouse_cloud_openapi_key_delete

Delete key Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/keys/{keyId} Deletes API key. Only a key not used to authenticate the active request can be deleted.

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

clickhouse-cloud.clickhouse_cloud_member_get_list

List organization members Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/members Returns a list of all members in the organization.

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

clickhouse-cloud.clickhouse_cloud_member_get

Get member details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/members/{userId} Returns a single organization member details.

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

clickhouse-cloud.clickhouse_cloud_member_update

Update organization member Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/members/{userId} Updates organization member role.

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

clickhouse-cloud.clickhouse_cloud_member_delete

Remove an organization member Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/members/{userId} Removes a user from the organization

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

clickhouse-cloud.clickhouse_cloud_invitation_get_list

List all invitations Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/invitations Returns list of all organization invitations.

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

clickhouse-cloud.clickhouse_cloud_invitation_create

Create an invitation Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/invitations Creates organization invitation.

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

clickhouse-cloud.clickhouse_cloud_invitation_get

Get invitation details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/invitations/{invitationId} Returns details for a single organization invitation.

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

clickhouse-cloud.clickhouse_cloud_invitation_delete

Delete organization invitation Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/invitations/{invitationId} Deletes a single organization invitation.

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

clickhouse-cloud.clickhouse_cloud_activity_get_list

List of organization activities Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/activities Returns a list of all organization activities.

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

clickhouse-cloud.clickhouse_cloud_activity_get

Organization activity Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/activities/{activityId} Returns a single organization activity by ID.

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

clickhouse-cloud.clickhouse_cloud_usage_cost_get

Get organization usage costs Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/usageCost Returns a grand total and a list of daily, per-entity organization usage cost records for the organization in the queried time

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

clickhouse-cloud.clickhouse_cloud_click_pipe_get_list

List ClickPipes Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickpipes Returns a list of ClickPipes.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_create

Create ClickPipe Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services/{serviceId}/clickpipes Create a new ClickPipe.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_get

Get ClickPipe Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickpipes/{clickPipeId} Returns the specified ClickPipe.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_update

Update ClickPipe Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/clickpipes/{clickPipeId} Update the specified ClickPipe.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_delete

Delete ClickPipe Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/services/{serviceId}/clickpipes/{clickPipeId} Delete the specified ClickPipe.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_settings_get

Get ClickPipe settings Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickpipes/{clickPipeId}/settings Returns the advanced settings for the specified ClickPipe.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_settings_update

Update ClickPipe settings Official ClickHouse Cloud endpoint: PUT /v1/organizations/{organizationId}/services/{serviceId}/clickpipes/{clickPipeId}/settings Update the advanced settings for the specified ClickPipe. Send key-value pairs where

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

clickhouse-cloud.clickhouse_cloud_click_pipe_scaling_update

Update ClickPipe scaling Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/clickpipes/{clickPipeId}/scaling Change scaling settings for the specified ClickPipe. This endpoint supports Kafka, K

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

clickhouse-cloud.clickhouse_cloud_click_pipe_state_update

Update ClickPipe state Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/clickpipes/{clickPipeId}/state Start, stop or resync ClickPipe. Stopping a ClickPipe will stop the ingestion process fr

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

clickhouse-cloud.clickhouse_cloud_click_pipe_cdc_scaling_get

Get CDC ClickPipes scaling Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickpipesCdcScaling Get scaling settings for database ClickPipes (PostgreSQL, MySQL, MongoDB, BigQuery). The infrast

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

clickhouse-cloud.clickhouse_cloud_click_pipe_cdc_scaling_update

Update CDC ClickPipes scaling Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/services/{serviceId}/clickpipesCdcScaling Update scaling settings for database ClickPipes (PostgreSQL, MySQL, MongoDB, BigQuery). The

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

clickhouse-cloud.clickhouse_cloud_click_stack_list_dashboards

ClickStack: List Dashboards Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickstack/dashboards **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in

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

clickhouse-cloud.clickhouse_cloud_click_stack_create_dashboard

ClickStack: Create Dashboard Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services/{serviceId}/clickstack/dashboards **This endpoint is in beta.** API contract is stable, and no breaking changes are expected i

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

clickhouse-cloud.clickhouse_cloud_click_stack_get_dashboard

ClickStack: Get Dashboard Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickstack/dashboards/{clickStackDashboardId} **This endpoint is in beta.** API contract is stable, and no breaking ch

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

clickhouse-cloud.clickhouse_cloud_click_stack_update_dashboard

ClickStack: Update Dashboard Official ClickHouse Cloud endpoint: PUT /v1/organizations/{organizationId}/services/{serviceId}/clickstack/dashboards/{clickStackDashboardId} **This endpoint is in beta.** API contract is stable, and no breaking

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

clickhouse-cloud.clickhouse_cloud_click_stack_delete_dashboard

ClickStack: Delete Dashboard Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/services/{serviceId}/clickstack/dashboards/{clickStackDashboardId} **This endpoint is in beta.** API contract is stable, and no break

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

clickhouse-cloud.clickhouse_cloud_click_stack_list_alerts

ClickStack: List Alerts Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickstack/alerts **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the futu

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

clickhouse-cloud.clickhouse_cloud_click_stack_create_alert

ClickStack: Create Alert Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services/{serviceId}/clickstack/alerts **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the fu

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

clickhouse-cloud.clickhouse_cloud_click_stack_list_sources

ClickStack: List Sources Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickstack/sources **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the fu

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

clickhouse-cloud.clickhouse_cloud_click_stack_get_alert

ClickStack: Get Alert Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickstack/alerts/{clickStackAlertId} **This endpoint is in beta.** API contract is stable, and no breaking changes are ex

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

clickhouse-cloud.clickhouse_cloud_click_stack_update_alert

ClickStack: Update Alert Official ClickHouse Cloud endpoint: PUT /v1/organizations/{organizationId}/services/{serviceId}/clickstack/alerts/{clickStackAlertId} **This endpoint is in beta.** API contract is stable, and no breaking changes are

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

clickhouse-cloud.clickhouse_cloud_click_stack_delete_alert

ClickStack: Delete Alert Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/services/{serviceId}/clickstack/alerts/{clickStackAlertId} **This endpoint is in beta.** API contract is stable, and no breaking changes

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

clickhouse-cloud.clickhouse_cloud_click_stack_list_webhooks

ClickStack: List Webhooks Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickstack/webhooks **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the

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

clickhouse-cloud.clickhouse_cloud_postgres_service_get_list

List of organization Postgres services Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/postgres **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future. Returns a l

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

clickhouse-cloud.clickhouse_cloud_postgres_service_create

Create new Postgres service Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/postgres **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future. Creates a new Postgre

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

clickhouse-cloud.clickhouse_cloud_postgres_service_get

Get PostgreSQL service details Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/postgres/{postgresId} **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future. Return

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

clickhouse-cloud.clickhouse_cloud_postgres_service_patch

Update a PostgreSQL service Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/postgres/{postgresId} **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future. Update

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

clickhouse-cloud.clickhouse_cloud_postgres_service_delete

Delete a PostgreSQL service Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/postgres/{postgresId} **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future. Delete

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

clickhouse-cloud.clickhouse_cloud_postgres_service_certs_get

Get Postgres CA certs Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/postgres/{postgresId}/caCertificates **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future.

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

clickhouse-cloud.clickhouse_cloud_postgres_instance_restore

Restore a Postgres service Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/postgres/{postgresId}/restoredService **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the f

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

clickhouse-cloud.clickhouse_cloud_postgres_service_set_password

Update Postgres superuser password Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/postgres/{postgresId}/password **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the

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

clickhouse-cloud.clickhouse_cloud_postgres_service_patch_state

Update Postgres service state Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/postgres/{postgresId}/state **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the future.

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

clickhouse-cloud.clickhouse_cloud_postgres_instance_create_read_replica

Create a read replica for a Postgres service Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/postgres/{postgresId}/readReplica **This endpoint is in beta.** API contract is stable, and no breaking changes are exp

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

clickhouse-cloud.clickhouse_cloud_postgres_instance_config_get

Get PostgreSQL service configuration Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/postgres/{postgresId}/config **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in the f

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

clickhouse-cloud.clickhouse_cloud_postgres_instance_config_post

Replace Postgres service configuration Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/postgres/{postgresId}/config **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in th

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

clickhouse-cloud.clickhouse_cloud_postgres_instance_config_patch

Update Postgres service configuration Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/postgres/{postgresId}/config **This endpoint is in beta.** API contract is stable, and no breaking changes are expected in th

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

clickhouse-cloud.clickhouse_cloud_organization_private_endpoint_config_get_list

Get private endpoint configuration for region within cloud provider for an organization Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/privateEndpointConfig Deprecated. Please follow [documentation](https://click

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

clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_create

Create BYOC Infrastructure Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/byocInfrastructure Create a new BYOC Infrastructure in the organization. Returns the configuration of the newly created infrastructure

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

clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_update

Update BYOC Infrastructure Official ClickHouse Cloud endpoint: PATCH /v1/organizations/{organizationId}/byocInfrastructure/{byocInfrastructureId} Update configuration of the BYOC infrastructure. Returns the modified infrastructure

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

clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_delete

Remove a BYOC infrastructure Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/byocInfrastructure/{byocInfrastructureId} Removes a BYOC Infrastructure from the organization

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

clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_get_list

List reverse private endpoints Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickpipesReversePrivateEndpoints Returns a list of reverse private endpoints for the specified service.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_create

Create reverse private endpoint Official ClickHouse Cloud endpoint: POST /v1/organizations/{organizationId}/services/{serviceId}/clickpipesReversePrivateEndpoints Create a new reverse private endpoint.

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

clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_get

Get reverse private endpoint Official ClickHouse Cloud endpoint: GET /v1/organizations/{organizationId}/services/{serviceId}/clickpipesReversePrivateEndpoints/{reversePrivateEndpointId} Returns the reverse private endpoint with the specifie

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

clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_delete

Delete reverse private endpoint Official ClickHouse Cloud endpoint: DELETE /v1/organizations/{organizationId}/services/{serviceId}/clickpipesReversePrivateEndpoints/{reversePrivateEndpointId} Delete the reverse private endpoint with the spe

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

Function Schemas

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

clickhouse-cloud.clickhouse_cloud_organization_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_prometheus_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_prometheus_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_roles_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_roles_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_role_post 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_role_post --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_role_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_role_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_role_patch 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_role_patch --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_role_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_role_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_private_endpoint_config_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_private_endpoint_config_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_upsert 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_upsert --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_query_endpoint_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_state_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_state_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_scaling_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_scaling_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_replica_scaling_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_replica_scaling_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_password_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_password_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_private_endpoint_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_private_endpoint_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_instance_prometheus_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_instance_prometheus_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_list_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_list_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_schema_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_service_clickhouse_settings_schema_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_service_clickhouse_setting_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_service_clickhouse_setting_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_configuration_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_configuration_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_configuration_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_configuration_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_bucket_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_bucket_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_bucket_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_bucket_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_bucket_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_bucket_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_backup_bucket_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_backup_bucket_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_openapi_key_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_openapi_key_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_openapi_key_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_openapi_key_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_openapi_key_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_openapi_key_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_openapi_key_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_openapi_key_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_openapi_key_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_openapi_key_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_member_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_member_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_member_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_member_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_member_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_member_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_member_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_member_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_invitation_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_invitation_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_invitation_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_invitation_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_invitation_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_invitation_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_invitation_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_invitation_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_activity_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_activity_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_activity_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_activity_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_usage_cost_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_usage_cost_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_settings_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_settings_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_settings_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_settings_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_scaling_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_scaling_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_state_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_state_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_cdc_scaling_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_cdc_scaling_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_cdc_scaling_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_cdc_scaling_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_list_dashboards 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_list_dashboards --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_create_dashboard 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_create_dashboard --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_get_dashboard 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_get_dashboard --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_update_dashboard 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_update_dashboard --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_delete_dashboard 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_delete_dashboard --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_list_alerts 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_list_alerts --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_create_alert 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_create_alert --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_list_sources 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_list_sources --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_get_alert 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_get_alert --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_update_alert 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_update_alert --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_delete_alert 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_delete_alert --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_stack_list_webhooks 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_stack_list_webhooks --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_patch 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_patch --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_certs_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_certs_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_instance_restore 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_instance_restore --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_set_password 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_set_password --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_service_patch_state 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_service_patch_state --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_instance_create_read_replica 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_instance_create_read_replica --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_instance_config_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_instance_config_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_instance_config_post 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_instance_config_post --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_postgres_instance_config_patch 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_postgres_instance_config_patch --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_private_endpoint_config_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_private_endpoint_config_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_update 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_update --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_organization_byoc_infrastructure_delete --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_get_list 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_get_list --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_create 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_create --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_get 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_get --json
ParameterTypeRequiredDescription
No parameters.
clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_delete 0 parameters
Schema command
kosmo integrations:schema clickhouse-cloud.clickhouse_cloud_click_pipe_reverse_private_endpoint_delete --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.