Skip to content

Commit cd3a84a

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent db52596 commit cd3a84a

File tree

7 files changed

+50
-2
lines changed

7 files changed

+50
-2
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-08-19 Version: 3.3.28
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2021-08-19 Version: 1.14.4
25
- Support Round and Interval for ApplyNodes API.
36

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class DeleteFileResponse : AcsResponse
3535

3636
private int? httpStatusCode;
3737

38+
private long? deploymentId;
39+
3840
public string RequestId
3941
{
4042
get
@@ -94,5 +96,17 @@ public int? HttpStatusCode
9496
httpStatusCode = value;
9597
}
9698
}
99+
100+
public long? DeploymentId
101+
{
102+
get
103+
{
104+
return deploymentId;
105+
}
106+
set
107+
{
108+
deploymentId = value;
109+
}
110+
}
97111
}
98112
}

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ public class GetDeployment_Deployment
147147

148148
private string errorMessage;
149149

150+
private int? checkingStatus;
151+
150152
public string Name
151153
{
152154
get
@@ -254,6 +256,18 @@ public string ErrorMessage
254256
errorMessage = value;
255257
}
256258
}
259+
260+
public int? CheckingStatus
261+
{
262+
get
263+
{
264+
return checkingStatus;
265+
}
266+
set
267+
{
268+
checkingStatus = value;
269+
}
270+
}
257271
}
258272
}
259273
}

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ public GetFileRequest()
4343

4444
private long? projectId;
4545

46+
private long? nodeId;
47+
4648
private string projectIdentifier;
4749

4850
private long? fileId;
@@ -60,6 +62,19 @@ public long? ProjectId
6062
}
6163
}
6264

65+
public long? NodeId
66+
{
67+
get
68+
{
69+
return nodeId;
70+
}
71+
set
72+
{
73+
nodeId = value;
74+
DictionaryUtil.Add(BodyParameters, "NodeId", value.ToString());
75+
}
76+
}
77+
6378
public string ProjectIdentifier
6479
{
6580
get

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public static DeleteFileResponse Unmarshall(UnmarshallerContext _ctx)
3535
deleteFileResponse.Success = _ctx.BooleanValue("DeleteFile.Success");
3636
deleteFileResponse.ErrorCode = _ctx.StringValue("DeleteFile.ErrorCode");
3737
deleteFileResponse.ErrorMessage = _ctx.StringValue("DeleteFile.ErrorMessage");
38-
deleteFileResponse.HttpStatusCode = _ctx.IntegerValue("DeleteFile.HttpStatusCode");
38+
deleteFileResponse.HttpStatusCode = _ctx.IntegerValue("DeleteFile.HttpStatusCode");
39+
deleteFileResponse.DeploymentId = _ctx.LongValue("DeleteFile.DeploymentId");
3940

4041
return deleteFileResponse;
4142
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public static GetDeploymentResponse Unmarshall(UnmarshallerContext _ctx)
4949
deployment.FromEnvironment = _ctx.IntegerValue("GetDeployment.Data.Deployment.FromEnvironment");
5050
deployment.ToEnvironment = _ctx.IntegerValue("GetDeployment.Data.Deployment.ToEnvironment");
5151
deployment.ErrorMessage = _ctx.StringValue("GetDeployment.Data.Deployment.ErrorMessage");
52+
deployment.CheckingStatus = _ctx.IntegerValue("GetDeployment.Data.Deployment.CheckingStatus");
5253
data.Deployment = deployment;
5354
getDeploymentResponse.Data = data;
5455

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

0 commit comments

Comments
 (0)