Skip to content

Commit 4652dfa

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent 460b6cd commit 4652dfa

File tree

7 files changed

+64
-1
lines changed

7 files changed

+64
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-07-27 Version: 3.3.24
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2021-07-27 Version: 2.20.0
25
- Add DescribeAuditLogConfig API.
36

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ public CreateFileRequest()
8989

9090
private bool? autoParsing;
9191

92+
private string schedulerType;
93+
9294
public int? FileType
9395
{
9496
get
@@ -401,6 +403,19 @@ public bool? AutoParsing
401403
}
402404
}
403405

406+
public string SchedulerType
407+
{
408+
get
409+
{
410+
return schedulerType;
411+
}
412+
set
413+
{
414+
schedulerType = value;
415+
DictionaryUtil.Add(BodyParameters, "SchedulerType", value);
416+
}
417+
}
418+
404419
public override bool CheckShowJsonItemName()
405420
{
406421
return false;

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,8 @@ public class GetFile_NodeConfiguration
465465

466466
private long? resourceGroupId;
467467

468+
private string schedulerType;
469+
468470
private List<GetFile_NodeInputOutput> inputList;
469471

470472
private List<GetFile_NodeInputOutput1> outputList;
@@ -613,6 +615,18 @@ public long? ResourceGroupId
613615
}
614616
}
615617

618+
public string SchedulerType
619+
{
620+
get
621+
{
622+
return schedulerType;
623+
}
624+
set
625+
{
626+
schedulerType = value;
627+
}
628+
}
629+
616630
public List<GetFile_NodeInputOutput> InputList
617631
{
618632
get

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ public ListFilesRequest()
5959

6060
private string useType;
6161

62+
private long? nodeId;
63+
6264
public string Owner
6365
{
6466
get
@@ -176,6 +178,19 @@ public string UseType
176178
}
177179
}
178180

181+
public long? NodeId
182+
{
183+
get
184+
{
185+
return nodeId;
186+
}
187+
set
188+
{
189+
nodeId = value;
190+
DictionaryUtil.Add(BodyParameters, "NodeId", value.ToString());
191+
}
192+
}
193+
179194
public override bool CheckShowJsonItemName()
180195
{
181196
return false;

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ public UpdateFileRequest()
8989

9090
private bool? autoParsing;
9191

92+
private string schedulerType;
93+
9294
public string OutputList
9395
{
9496
get
@@ -401,6 +403,19 @@ public bool? AutoParsing
401403
}
402404
}
403405

406+
public string SchedulerType
407+
{
408+
get
409+
{
410+
return schedulerType;
411+
}
412+
set
413+
{
414+
schedulerType = value;
415+
DictionaryUtil.Add(BodyParameters, "SchedulerType", value);
416+
}
417+
}
418+
404419
public override bool CheckShowJsonItemName()
405420
{
406421
return false;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public static GetFileResponse Unmarshall(UnmarshallerContext _ctx)
7676
nodeConfiguration.DependentType = _ctx.StringValue("GetFile.Data.NodeConfiguration.DependentType");
7777
nodeConfiguration.DependentNodeIdList = _ctx.StringValue("GetFile.Data.NodeConfiguration.DependentNodeIdList");
7878
nodeConfiguration.ResourceGroupId = _ctx.LongValue("GetFile.Data.NodeConfiguration.ResourceGroupId");
79+
nodeConfiguration.SchedulerType = _ctx.StringValue("GetFile.Data.NodeConfiguration.SchedulerType");
7980

8081
List<GetFileResponse.GetFile_Data.GetFile_NodeConfiguration.GetFile_NodeInputOutput> nodeConfiguration_inputList = new List<GetFileResponse.GetFile_Data.GetFile_NodeConfiguration.GetFile_NodeInputOutput>();
8182
for (int i = 0; i < _ctx.Length("GetFile.Data.NodeConfiguration.InputList.Length"); i++) {

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.23</Version>
6+
<Version>3.3.24</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)