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