UpdateMetaCollection
Modify metadata collections in DataWorks MCP Server by updating collection IDs, names, descriptions, and administrator lists through standardized API interactions.
Instructions
更新数据地图集合对象
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Administrators | No | 集合管理员ID列表,仅专辑类型支持,要求管理员为同租户下账号 | |
Description | No | 更新后的集合描述 | |
Id | Yes | 集合对象ID | |
Name | No | 更新后的集合名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"Administrators": {
"description": "集合管理员ID列表,仅专辑类型支持,要求管理员为同租户下账号",
"items": {
"type": "string"
},
"type": "array"
},
"Description": {
"description": "更新后的集合描述",
"type": "string"
},
"Id": {
"description": "集合对象ID",
"type": "string"
},
"Name": {
"description": "更新后的集合名称",
"type": "string"
}
},
"required": [
"Id"
],
"type": "object"
}