Skip to content

Commit c2aa58c

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent 1dcd050 commit c2aa58c

13 files changed

+141
-450
lines changed

aliyun-java-sdk-dataworks-public/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-27 Version: 6.1.10
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2025-02-20 Version: 6.1.9
25
- Generated 2020-05-18 for `dataworks-public`.
36

aliyun-java-sdk-dataworks-public/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-dataworks-public</artifactId>
66
<packaging>jar</packaging>
7-
<version>6.1.9</version>
7+
<version>6.1.10</version>
88
<name>aliyun-java-sdk-dataworks-public</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -92,7 +92,7 @@ http://www.aliyun.com</description>
9292
<plugin>
9393
<groupId>org.apache.maven.plugins</groupId>
9494
<artifactId>maven-gpg-plugin</artifactId>
95-
<version>1.5</version>
95+
<version>3.1.0</version>
9696
<executions>
9797
<execution>
9898
<id>sign-artifacts</id>

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/CreatePermissionApplyOrderRequest.java

+65-28
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,25 @@
2626
public class CreatePermissionApplyOrderRequest extends RpcAcsRequest<CreatePermissionApplyOrderResponse> {
2727

2828

29+
private String applyUserIds;
30+
31+
private Long deadline;
32+
33+
private String engineType;
34+
2935
private String applyReason;
3036

3137
private String maxComputeProjectName;
3238

3339
private List<ApplyObject> applyObjects;
3440

35-
private String applyUserIds;
41+
private String catalogName;
3642

37-
private Long deadline;
43+
private String applyType;
3844

3945
private Integer workspaceId;
4046

41-
private Integer orderType;
42-
43-
private String engineType;
47+
private Integer orderType;
4448
public CreatePermissionApplyOrderRequest() {
4549
super("dataworks-public", "2020-05-18", "CreatePermissionApplyOrder");
4650
setMethod(MethodType.POST);
@@ -50,6 +54,39 @@ public CreatePermissionApplyOrderRequest() {
5054
} catch (Exception e) {}
5155
}
5256

57+
public String getApplyUserIds() {
58+
return this.applyUserIds;
59+
}
60+
61+
public void setApplyUserIds(String applyUserIds) {
62+
this.applyUserIds = applyUserIds;
63+
if(applyUserIds != null){
64+
putQueryParameter("ApplyUserIds", applyUserIds);
65+
}
66+
}
67+
68+
public Long getDeadline() {
69+
return this.deadline;
70+
}
71+
72+
public void setDeadline(Long deadline) {
73+
this.deadline = deadline;
74+
if(deadline != null){
75+
putQueryParameter("Deadline", deadline.toString());
76+
}
77+
}
78+
79+
public String getEngineType() {
80+
return this.engineType;
81+
}
82+
83+
public void setEngineType(String engineType) {
84+
this.engineType = engineType;
85+
if(engineType != null){
86+
putQueryParameter("EngineType", engineType);
87+
}
88+
}
89+
5390
public String getApplyReason() {
5491
return this.applyReason;
5592
}
@@ -83,6 +120,7 @@ public void setApplyObjects(List<ApplyObject> applyObjects) {
83120
if (applyObjects.get(depth1).getColumnMetaLists() != null) {
84121
for (int depth2 = 0; depth2 < applyObjects.get(depth1).getColumnMetaLists().size(); depth2++) {
85122
putQueryParameter("ApplyObject." + (depth1 + 1) + ".ColumnMetaList." + (depth2 + 1) + ".Name" , applyObjects.get(depth1).getColumnMetaLists().get(depth2).getName());
123+
putQueryParameter("ApplyObject." + (depth1 + 1) + ".ColumnMetaList." + (depth2 + 1) + ".Actions" , applyObjects.get(depth1).getColumnMetaLists().get(depth2).getActions());
86124
}
87125
}
88126
putQueryParameter("ApplyObject." + (depth1 + 1) + ".Name" , applyObjects.get(depth1).getName());
@@ -91,25 +129,25 @@ public void setApplyObjects(List<ApplyObject> applyObjects) {
91129
}
92130
}
93131

94-
public String getApplyUserIds() {
95-
return this.applyUserIds;
132+
public String getCatalogName() {
133+
return this.catalogName;
96134
}
97135

98-
public void setApplyUserIds(String applyUserIds) {
99-
this.applyUserIds = applyUserIds;
100-
if(applyUserIds != null){
101-
putQueryParameter("ApplyUserIds", applyUserIds);
136+
public void setCatalogName(String catalogName) {
137+
this.catalogName = catalogName;
138+
if(catalogName != null){
139+
putQueryParameter("CatalogName", catalogName);
102140
}
103141
}
104142

105-
public Long getDeadline() {
106-
return this.deadline;
143+
public String getApplyType() {
144+
return this.applyType;
107145
}
108146

109-
public void setDeadline(Long deadline) {
110-
this.deadline = deadline;
111-
if(deadline != null){
112-
putQueryParameter("Deadline", deadline.toString());
147+
public void setApplyType(String applyType) {
148+
this.applyType = applyType;
149+
if(applyType != null){
150+
putQueryParameter("ApplyType", applyType);
113151
}
114152
}
115153

@@ -135,17 +173,6 @@ public void setOrderType(Integer orderType) {
135173
}
136174
}
137175

138-
public String getEngineType() {
139-
return this.engineType;
140-
}
141-
142-
public void setEngineType(String engineType) {
143-
this.engineType = engineType;
144-
if(engineType != null){
145-
putQueryParameter("EngineType", engineType);
146-
}
147-
}
148-
149176
public static class ApplyObject {
150177

151178
private List<ColumnMetaList> columnMetaLists;
@@ -182,13 +209,23 @@ public static class ColumnMetaList {
182209

183210
private String name;
184211

212+
private String actions;
213+
185214
public String getName() {
186215
return this.name;
187216
}
188217

189218
public void setName(String name) {
190219
this.name = name;
191220
}
221+
222+
public String getActions() {
223+
return this.actions;
224+
}
225+
226+
public void setActions(String actions) {
227+
this.actions = actions;
228+
}
192229
}
193230
}
194231

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/GetPermissionApplyOrderDetailResponse.java

+20
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,8 @@ public static class ObjectMetaListItem {
253253

254254
private List<ColumnMetaListItem> columnMetaList;
255255

256+
private List<String> actions;
257+
256258
public String getObjectName() {
257259
return this.objectName;
258260
}
@@ -269,6 +271,14 @@ public void setColumnMetaList(List<ColumnMetaListItem> columnMetaList) {
269271
this.columnMetaList = columnMetaList;
270272
}
271273

274+
public List<String> getActions() {
275+
return this.actions;
276+
}
277+
278+
public void setActions(List<String> actions) {
279+
this.actions = actions;
280+
}
281+
272282
public static class ColumnMetaListItem {
273283

274284
private String columnName;
@@ -277,6 +287,8 @@ public static class ColumnMetaListItem {
277287

278288
private String securityLevel;
279289

290+
private List<String> columnActions;
291+
280292
public String getColumnName() {
281293
return this.columnName;
282294
}
@@ -300,6 +312,14 @@ public String getSecurityLevel() {
300312
public void setSecurityLevel(String securityLevel) {
301313
this.securityLevel = securityLevel;
302314
}
315+
316+
public List<String> getColumnActions() {
317+
return this.columnActions;
318+
}
319+
320+
public void setColumnActions(List<String> columnActions) {
321+
this.columnActions = columnActions;
322+
}
303323
}
304324
}
305325
}

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/ListFilesRequest.java

+13
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public class ListFilesRequest extends RpcAcsRequest<ListFilesResponse> {
3939

4040
private String fileIdIn;
4141

42+
private String lastEditUser;
43+
4244
private String fileFolderPath;
4345

4446
private Integer pageSize;
@@ -138,6 +140,17 @@ public void setFileIdIn(String fileIdIn) {
138140
}
139141
}
140142

143+
public String getLastEditUser() {
144+
return this.lastEditUser;
145+
}
146+
147+
public void setLastEditUser(String lastEditUser) {
148+
this.lastEditUser = lastEditUser;
149+
if(lastEditUser != null){
150+
putBodyParameter("LastEditUser", lastEditUser);
151+
}
152+
}
153+
141154
public String getFileFolderPath() {
142155
return this.fileFolderPath;
143156
}

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/ListPermissionApplyOrdersRequest.java

+26
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@ public class ListPermissionApplyOrdersRequest extends RpcAcsRequest<ListPermissi
3939

4040
private String maxComputeProjectName;
4141

42+
private String catalogName;
43+
4244
private Long endTime;
4345

4446
private Integer flowStatus;
4547

48+
private String applyType;
49+
4650
private Integer workspaceId;
4751

4852
private Integer orderType;
@@ -132,6 +136,17 @@ public void setMaxComputeProjectName(String maxComputeProjectName) {
132136
}
133137
}
134138

139+
public String getCatalogName() {
140+
return this.catalogName;
141+
}
142+
143+
public void setCatalogName(String catalogName) {
144+
this.catalogName = catalogName;
145+
if(catalogName != null){
146+
putQueryParameter("CatalogName", catalogName);
147+
}
148+
}
149+
135150
public Long getEndTime() {
136151
return this.endTime;
137152
}
@@ -154,6 +169,17 @@ public void setFlowStatus(Integer flowStatus) {
154169
}
155170
}
156171

172+
public String getApplyType() {
173+
return this.applyType;
174+
}
175+
176+
public void setApplyType(String applyType) {
177+
this.applyType = applyType;
178+
if(applyType != null){
179+
putQueryParameter("ApplyType", applyType);
180+
}
181+
}
182+
157183
public Integer getWorkspaceId() {
158184
return this.workspaceId;
159185
}

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/MountDirectoryRequest.java

-80
This file was deleted.

0 commit comments

Comments
 (0)