ImportWorkflowDefinition
Import data development workflows into DataWorks using a specific FlowSpec. Define and integrate workflow configurations for efficient project management and resource handling.
Instructions
导入数据开发工作流
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ProjectId | No | DataWorks工作空间的ID | |
| Spec | Yes | 描述这个工作流的FlowSpec信息 |
Input Schema (JSON Schema)
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "ProjectId": { "description": "DataWorks工作空间的ID" }, "Spec": { "description": "描述这个工作流的FlowSpec信息", "type": "string" } }, "required": [ "Spec" ], "type": "object" }