All Products
Search
Document Center

ApsaraDB for ClickHouse:DescribeAllDataSources

Last Updated:Mar 01, 2024

Queries the data sources of an ApsaraDB for ClickHouse cluster.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
DBClusterIdstringYes

The cluster ID.

cc-bp108z124a8o7****
SchemaNamestringYes

The database name.

database
TableNamestringYes

The table name.

table

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The request ID.

75EA41D7-025A-50A6-9287-359A91399F1E
Tablesobject []

The information about the tables.

TableNamestring

The table name.

table
DBClusterIdstring

The cluster ID.

cc-bp108z124a8o7****
SchemaNamestring

The database name.

database
Columnsobject []

Details of the columns.

Typestring

The column type.

String
ColumnNamestring

The column name.

name
TableNamestring

The table name.

table
AutoIncrementColumnboolean

Indicates whether the column is an auto-increment column. Valid values:

  • true
  • false
true
DBClusterIdstring

The cluster ID.

cc-bp108z124a8o7****
PrimaryKeyboolean

Indicates whether the column is the primary key of the table. Valid values:

  • true: The column is the primary key of the table.
  • false: The column is not the primary key of the table.
true
SchemaNamestring

The database name.

database
Schemasobject []

The information about the databases.

DBClusterIdstring

The cluster ID.

cc-bp108z124a8o7****
SchemaNamestring

The database name.

database

Examples

Sample success responses

JSONformat

{
  "RequestId": "75EA41D7-025A-50A6-9287-359A91399F1E",
  "Tables": {
    "Table": [
      {
        "TableName": "table",
        "DBClusterId": "cc-bp108z124a8o7****",
        "SchemaName": "database"
      }
    ]
  },
  "Columns": {
    "Column": [
      {
        "Type": "String",
        "ColumnName": "name",
        "TableName": "table",
        "AutoIncrementColumn": true,
        "DBClusterId": "cc-bp108z124a8o7****",
        "PrimaryKey": true,
        "SchemaName": "database"
      }
    ]
  },
  "Schemas": {
    "Schema": [
      {
        "DBClusterId": "cc-bp108z124a8o7****",
        "SchemaName": "database"
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
500InternalErrorAn error occurred while processing your request.An error occurred while processing your request.
503ServiceUnavailableAn error occurred while processing your request.An error occurred while processing your request.

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history