You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -113,9 +113,9 @@ public class BatchUpdateTasksRequestTasksDataSource : TeaModel {
113
113
/// <summary>
114
114
/// <para>The rerun mode. Valid values:</para>
115
115
/// <list type="bullet">
116
-
/// <item><description>AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.</description></item>
117
-
/// <item><description>FailureAllowed: The task can be rerun only after it fails to run.</description></item>
118
-
/// <item><description>AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.</description></item>
116
+
/// <item><description>AllDenied: The task cannot be rerun.</description></item>
117
+
/// <item><description>FailureAllowed: The task can be rerun only after it fails.</description></item>
118
+
/// <item><description>AllAllowed: The task can always be rerun.</description></item>
119
119
/// </list>
120
120
///
121
121
/// <b>Example:</b>
@@ -126,7 +126,7 @@ public class BatchUpdateTasksRequestTasksDataSource : TeaModel {
126
126
publicstringRerunMode{get;set;}
127
127
128
128
/// <summary>
129
-
/// <para>The number of times that the task is rerun. This parameter takes effect only if the RerunMode parameter is set to AllAllowed or FailureAllowed.</para>
129
+
/// <para>The number of retry attempts. Takes effect when the task is configured to allow reruns.</para>
130
130
///
131
131
/// <b>Example:</b>
132
132
/// <para>3</para>
@@ -136,7 +136,7 @@ public class BatchUpdateTasksRequestTasksDataSource : TeaModel {
136
136
publicint?RerunTimes{get;set;}
137
137
138
138
/// <summary>
139
-
/// <para>The configurations of the runtime environment, such as the resource group information.</para>
139
+
/// <para>Runtime environment configurations, such as resource group information.</para>
140
140
/// </summary>
141
141
[NameInMap("RuntimeResource")]
142
142
[Validation(Required=false)]
@@ -153,7 +153,7 @@ public class BatchUpdateTasksRequestTasksRuntimeResource : TeaModel {
153
153
publicstringCu{get;set;}
154
154
155
155
/// <summary>
156
-
/// <para>The ID of the image configured for task running.</para>
156
+
/// <para>The image ID used in the task runtime configuration.</para>
157
157
///
158
158
/// <b>Example:</b>
159
159
/// <para>i-xxxxxx</para>
@@ -163,7 +163,7 @@ public class BatchUpdateTasksRequestTasksRuntimeResource : TeaModel {
163
163
publicstringImage{get;set;}
164
164
165
165
/// <summary>
166
-
/// <para>The ID of the resource group for scheduling configured for task running.</para>
166
+
/// <para>The identifier of the scheduling resource group used in the task runtime configuration.</para>
/// <para>The CRON expression. This parameter takes effect only if the Type parameter is set to Scheduler.</para>
225
+
/// <para>The cron expression. Takes effect when type=Scheduler.</para>
226
226
///
227
227
/// <b>Example:</b>
228
228
/// <para>00 00 00 * * ?</para>
@@ -232,7 +232,7 @@ public class BatchUpdateTasksRequestTasksTrigger : TeaModel {
232
232
publicstringCron{get;set;}
233
233
234
234
/// <summary>
235
-
/// <para>The end time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler. The value of this parameter is in the<c>yyyy-mm-dd hh:mm:ss</c>.</para>
235
+
/// <para>The expiration time of periodic triggering. Takes effect only when type is set to Scheduler. The value of this parameter is in the<c>yyyy-mm-dd hh:mm:ss</c> format.</para>
236
236
///
237
237
/// <b>Example:</b>
238
238
/// <para>9999-01-01 00:00:00</para>
@@ -257,7 +257,7 @@ public class BatchUpdateTasksRequestTasksTrigger : TeaModel {
257
257
publicstringRecurrence{get;set;}
258
258
259
259
/// <summary>
260
-
/// <para>The start time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler. The value of this parameter is in the <c>yyyy-mm-dd hh:mm:ss</c>.</para>
260
+
/// <para>The time when periodic triggering takes effect. This parameter takes effect only if the Type parameter is set to Scheduler. The value of this parameter is in the <c>yyyy-mm-dd hh:mm:ss</c> format.</para>
261
261
///
262
262
/// <b>Example:</b>
263
263
/// <para>1970-01-01 00:00:00</para>
@@ -269,8 +269,8 @@ public class BatchUpdateTasksRequestTasksTrigger : TeaModel {
/// <para>The name of the workflow. Workflow names must be unique within the same workspace.</para>
13
14
/// <para>This parameter is required.</para>
14
15
///
15
16
/// <b>Example:</b>
@@ -19,11 +20,19 @@ public class CreateBusinessRequest : TeaModel {
19
20
[Validation(Required=false)]
20
21
publicstringBusinessName{get;set;}
21
22
23
+
/// <summary>
24
+
/// <para>The description of the workflow.</para>
25
+
///
26
+
/// <b>Example:</b>
27
+
/// <para>test</para>
28
+
/// </summary>
22
29
[NameInMap("Description")]
23
30
[Validation(Required=false)]
24
31
publicstringDescription{get;set;}
25
32
26
33
/// <summary>
34
+
/// <para>The Alibaba Cloud account ID of the person responsible for the workflow. You can view the account ID by hovering over the user avatar in the top-right corner of the <a href="https://workbench.data.aliyun.com/console">DataWorks console</a>. If this parameter is not specified, the account ID of the API caller is used by default.</para>
35
+
///
27
36
/// <b>Example:</b>
28
37
/// <para>1000000000001</para>
29
38
/// </summary>
@@ -32,6 +41,8 @@ public class CreateBusinessRequest : TeaModel {
32
41
publicstringOwner{get;set;}
33
42
34
43
/// <summary>
44
+
/// <para>The ID of the DataWorks workspace. You can view the workspace ID on the workspace management page in the <a href="https://workbench.data.aliyun.com/console">DataWorks console</a>.</para>
45
+
///
35
46
/// <b>Example:</b>
36
47
/// <para>10000</para>
37
48
/// </summary>
@@ -40,6 +51,8 @@ public class CreateBusinessRequest : TeaModel {
40
51
publiclong?ProjectId{get;set;}
41
52
42
53
/// <summary>
54
+
/// <para>The unique identifier of the DataWorks workspace, This is the identifier shown in the workspace switch at the top of the Data Studio page. Either this parameter or ProjectId must be specified to determine which DataWorks project this API call operates on.</para>
55
+
///
43
56
/// <b>Example:</b>
44
57
/// <para>dw_project</para>
45
58
/// </summary>
@@ -48,6 +61,12 @@ public class CreateBusinessRequest : TeaModel {
48
61
publicstringProjectIdentifier{get;set;}
49
62
50
63
/// <summary>
64
+
/// <para>The module to which the workflow belongs. Valid values:</para>
65
+
/// <list type="bullet">
66
+
/// <item><description>NORMAL: Data Studio</description></item>
/// <para>The client token that is used to ensure the idempotence of the request.</para>
14
+
///
13
15
/// <b>Example:</b>
14
16
/// <para>1AFAE64E-D1BE-432B-A9****</para>
15
17
/// </summary>
@@ -18,6 +20,7 @@ public class CreateComponentRequest : TeaModel {
18
20
publicstringClientToken{get;set;}
19
21
20
22
/// <summary>
23
+
/// <para>The DataWorks workspace ID. You can call the <a href="https://help.aliyun.com/document_detail/2852607.html">ListProjects</a> operation to obtain the ID.</para>
21
24
/// <para>This parameter is required.</para>
22
25
///
23
26
/// <b>Example:</b>
@@ -28,6 +31,7 @@ public class CreateComponentRequest : TeaModel {
28
31
publiclong?ProjectId{get;set;}
29
32
30
33
/// <summary>
34
+
/// <para>The FlowSpec information for this UDF function. For more information, see <a href="https://github.com/aliyun/dataworks-spec/blob/master/README_zh_CN.md">FlowSpec</a>.</para>
/// <para>The ID of the dataset acceleration component. To obtain the component ID, see <a href="https://help.aliyun.com/document_detail/2979566.html">ListComponents</a>.</para>
0 commit comments