CreateFunction
Define and deploy custom data development functions for Data Workspaces using FlowSpec specifications, enabling streamlined integration and management of resources via the MCP Server.
Instructions
创建数据开发函数
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ProjectId | No | DataWorks工作空间的ID | |
| Spec | Yes | 描述这个udf函数的FlowSpec信息 |
Input Schema (JSON Schema)
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "ProjectId": { "description": "DataWorks工作空间的ID" }, "Spec": { "description": "描述这个udf函数的FlowSpec信息", "type": "string" } }, "required": [ "Spec" ], "type": "object" }