GetTable
Retrieve detailed information about data tables within DataWorks using the specified ID. Includes options to fetch business metadata for comprehensive insights.
Instructions
获取数据地图数据表详情
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Id | Yes | ID,可参考[元数据实体相关概念说明](~~2880092~~)。格式为`${EntityType}:${实例ID或转义后的URL}:${数据目录名称}:${数据库名称}:${模式名称}:${数据表名称}`,对于不存在的层级置空>对于MaxCompute和DLF类型,此处的实例ID即为主账号ID。>对于MaxCompute类型,此处的数据库名称即为MaxCompute项目名称 | |
IncludeBusinessMetadata | No | 是否包含业务元数据,默认为false |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"Id": {
"description": "ID,可参考[元数据实体相关概念说明](~~2880092~~)。格式为`${EntityType}:${实例ID或转义后的URL}:${数据目录名称}:${数据库名称}:${模式名称}:${数据表名称}`,对于不存在的层级置空>对于MaxCompute和DLF类型,此处的实例ID即为主账号ID。>对于MaxCompute类型,此处的数据库名称即为MaxCompute项目名称",
"type": "string"
},
"IncludeBusinessMetadata": {
"description": "是否包含业务元数据,默认为false",
"type": "boolean"
}
},
"required": [
"Id"
],
"type": "object"
}