Skip to content

Commit f18f38c

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent 68db18f commit f18f38c

File tree

6 files changed

+34
-1
lines changed

6 files changed

+34
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-03-30 Version: 3.3.4
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2021-03-30 Version: 3.3.3
25
- Generated 2020-05-18 for `dataworks-public`.
36

aliyun-net-sdk-dataworks-public/Dataworks_public/Model/V20200518/GetInstanceResponse.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@ public class GetInstance_Data
162162

163163
private string taskType;
164164

165+
private int? taskRerunTime;
166+
165167
public long? NodeId
166168
{
167169
get
@@ -461,6 +463,18 @@ public string TaskType
461463
taskType = value;
462464
}
463465
}
466+
467+
public int? TaskRerunTime
468+
{
469+
get
470+
{
471+
return taskRerunTime;
472+
}
473+
set
474+
{
475+
taskRerunTime = value;
476+
}
477+
}
464478
}
465479
}
466480
}

aliyun-net-sdk-dataworks-public/Dataworks_public/Model/V20200518/ListInstancesResponse.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ public class ListInstances_Instance
221221

222222
private string taskType;
223223

224+
private int? taskRerunTime;
225+
224226
public long? NodeId
225227
{
226228
get
@@ -520,6 +522,18 @@ public string TaskType
520522
taskType = value;
521523
}
522524
}
525+
526+
public int? TaskRerunTime
527+
{
528+
get
529+
{
530+
return taskRerunTime;
531+
}
532+
set
533+
{
534+
taskRerunTime = value;
535+
}
536+
}
523537
}
524538
}
525539
}

aliyun-net-sdk-dataworks-public/Dataworks_public/Transform/V20200518/GetInstanceResponseUnmarshaller.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public static GetInstanceResponse Unmarshall(UnmarshallerContext _ctx)
6363
data.ErrorMessage = _ctx.StringValue("GetInstance.Data.ErrorMessage");
6464
data.RelatedFlowId = _ctx.LongValue("GetInstance.Data.RelatedFlowId");
6565
data.TaskType = _ctx.StringValue("GetInstance.Data.TaskType");
66+
data.TaskRerunTime = _ctx.IntegerValue("GetInstance.Data.TaskRerunTime");
6667
getInstanceResponse.Data = data;
6768

6869
return getInstanceResponse;

aliyun-net-sdk-dataworks-public/Dataworks_public/Transform/V20200518/ListInstancesResponseUnmarshaller.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public static ListInstancesResponse Unmarshall(UnmarshallerContext _ctx)
7070
instance.ErrorMessage = _ctx.StringValue("ListInstances.Data.Instances["+ i +"].ErrorMessage");
7171
instance.RelatedFlowId = _ctx.LongValue("ListInstances.Data.Instances["+ i +"].RelatedFlowId");
7272
instance.TaskType = _ctx.StringValue("ListInstances.Data.Instances["+ i +"].TaskType");
73+
instance.TaskRerunTime = _ctx.IntegerValue("ListInstances.Data.Instances["+ i +"].TaskRerunTime");
7374

7475
data_instances.Add(instance);
7576
}

aliyun-net-sdk-dataworks-public/aliyun-net-sdk-dataworks-public.vs2017.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.dataworks_public</RootNamespace>
6-
<Version>3.3.3</Version>
6+
<Version>3.3.4</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)