Skip to content

Commit 21f4885

Browse files
committed
Generated java-async 2024-05-18 for dataworks-public.
1 parent 6746b1f commit 21f4885

File tree

6 files changed

+96
-1
lines changed

6 files changed

+96
-1
lines changed

dataworks-public-20240518/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-05 Version: 7.0.4
2+
- Generated java-async 2024-05-18 for dataworks-public.
3+
14
2025-06-03 Version: 7.0.3
25
- Generated java-async 2024-05-18 for dataworks-public.
36

dataworks-public-20240518/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-dataworks_public20240518</artifactId>
6-
<version>7.0.3</version>
6+
<version>7.0.4</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-dataworks_public20240518</name>
99
<description>Alibaba Cloud dataworks-public (20240518) Async SDK for Java

dataworks-public-20240518/src/main/java/com/aliyun/sdk/service/dataworks_public20240518/models/ListFunctionsRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ public class ListFunctionsRequest extends Request {
2121
@com.aliyun.core.annotation.NameInMap("RegionId")
2222
private String regionId;
2323

24+
@com.aliyun.core.annotation.Query
25+
@com.aliyun.core.annotation.NameInMap("Name")
26+
private String name;
27+
2428
@com.aliyun.core.annotation.Query
2529
@com.aliyun.core.annotation.NameInMap("Owner")
2630
private String owner;
@@ -47,6 +51,7 @@ public class ListFunctionsRequest extends Request {
4751
private ListFunctionsRequest(Builder builder) {
4852
super(builder);
4953
this.regionId = builder.regionId;
54+
this.name = builder.name;
5055
this.owner = builder.owner;
5156
this.pageNumber = builder.pageNumber;
5257
this.pageSize = builder.pageSize;
@@ -74,6 +79,13 @@ public String getRegionId() {
7479
return this.regionId;
7580
}
7681

82+
/**
83+
* @return name
84+
*/
85+
public String getName() {
86+
return this.name;
87+
}
88+
7789
/**
7890
* @return owner
7991
*/
@@ -111,6 +123,7 @@ public String getType() {
111123

112124
public static final class Builder extends Request.Builder<ListFunctionsRequest, Builder> {
113125
private String regionId;
126+
private String name;
114127
private String owner;
115128
private Integer pageNumber;
116129
private Integer pageSize;
@@ -124,6 +137,7 @@ private Builder() {
124137
private Builder(ListFunctionsRequest request) {
125138
super(request);
126139
this.regionId = request.regionId;
140+
this.name = request.name;
127141
this.owner = request.owner;
128142
this.pageNumber = request.pageNumber;
129143
this.pageSize = request.pageSize;
@@ -140,6 +154,15 @@ public Builder regionId(String regionId) {
140154
return this;
141155
}
142156

157+
/**
158+
* Name.
159+
*/
160+
public Builder name(String name) {
161+
this.putQueryParameter("Name", name);
162+
this.name = name;
163+
return this;
164+
}
165+
143166
/**
144167
* <p>The ID of the owner of the UDF. This parameter specifies a filter condition.</p>
145168
*

dataworks-public-20240518/src/main/java/com/aliyun/sdk/service/dataworks_public20240518/models/ListNodesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ public class ListNodesRequest extends Request {
2525
@com.aliyun.core.annotation.NameInMap("ContainerId")
2626
private Long containerId;
2727

28+
@com.aliyun.core.annotation.Query
29+
@com.aliyun.core.annotation.NameInMap("Name")
30+
private String name;
31+
2832
@com.aliyun.core.annotation.Query
2933
@com.aliyun.core.annotation.NameInMap("PageNumber")
3034
@com.aliyun.core.annotation.Validation(maximum = 2147483647, minimum = 1)
@@ -56,6 +60,7 @@ private ListNodesRequest(Builder builder) {
5660
super(builder);
5761
this.regionId = builder.regionId;
5862
this.containerId = builder.containerId;
63+
this.name = builder.name;
5964
this.pageNumber = builder.pageNumber;
6065
this.pageSize = builder.pageSize;
6166
this.projectId = builder.projectId;
@@ -91,6 +96,13 @@ public Long getContainerId() {
9196
return this.containerId;
9297
}
9398

99+
/**
100+
* @return name
101+
*/
102+
public String getName() {
103+
return this.name;
104+
}
105+
94106
/**
95107
* @return pageNumber
96108
*/
@@ -136,6 +148,7 @@ public String getScene() {
136148
public static final class Builder extends Request.Builder<ListNodesRequest, Builder> {
137149
private String regionId;
138150
private Long containerId;
151+
private String name;
139152
private Integer pageNumber;
140153
private Integer pageSize;
141154
private Long projectId;
@@ -151,6 +164,7 @@ private Builder(ListNodesRequest request) {
151164
super(request);
152165
this.regionId = request.regionId;
153166
this.containerId = request.containerId;
167+
this.name = request.name;
154168
this.pageNumber = request.pageNumber;
155169
this.pageSize = request.pageSize;
156170
this.projectId = request.projectId;
@@ -180,6 +194,15 @@ public Builder containerId(Long containerId) {
180194
return this;
181195
}
182196

197+
/**
198+
* Name.
199+
*/
200+
public Builder name(String name) {
201+
this.putQueryParameter("Name", name);
202+
this.name = name;
203+
return this;
204+
}
205+
183206
/**
184207
* <p>The page number.</p>
185208
*

dataworks-public-20240518/src/main/java/com/aliyun/sdk/service/dataworks_public20240518/models/ListResourcesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ public class ListResourcesRequest extends Request {
2121
@com.aliyun.core.annotation.NameInMap("RegionId")
2222
private String regionId;
2323

24+
@com.aliyun.core.annotation.Query
25+
@com.aliyun.core.annotation.NameInMap("Name")
26+
private String name;
27+
2428
@com.aliyun.core.annotation.Query
2529
@com.aliyun.core.annotation.NameInMap("Owner")
2630
private String owner;
@@ -47,6 +51,7 @@ public class ListResourcesRequest extends Request {
4751
private ListResourcesRequest(Builder builder) {
4852
super(builder);
4953
this.regionId = builder.regionId;
54+
this.name = builder.name;
5055
this.owner = builder.owner;
5156
this.pageNumber = builder.pageNumber;
5257
this.pageSize = builder.pageSize;
@@ -74,6 +79,13 @@ public String getRegionId() {
7479
return this.regionId;
7580
}
7681

82+
/**
83+
* @return name
84+
*/
85+
public String getName() {
86+
return this.name;
87+
}
88+
7789
/**
7890
* @return owner
7991
*/
@@ -111,6 +123,7 @@ public String getType() {
111123

112124
public static final class Builder extends Request.Builder<ListResourcesRequest, Builder> {
113125
private String regionId;
126+
private String name;
114127
private String owner;
115128
private Integer pageNumber;
116129
private Integer pageSize;
@@ -124,6 +137,7 @@ private Builder() {
124137
private Builder(ListResourcesRequest request) {
125138
super(request);
126139
this.regionId = request.regionId;
140+
this.name = request.name;
127141
this.owner = request.owner;
128142
this.pageNumber = request.pageNumber;
129143
this.pageSize = request.pageSize;
@@ -140,6 +154,15 @@ public Builder regionId(String regionId) {
140154
return this;
141155
}
142156

157+
/**
158+
* Name.
159+
*/
160+
public Builder name(String name) {
161+
this.putQueryParameter("Name", name);
162+
this.name = name;
163+
return this;
164+
}
165+
143166
/**
144167
* <p>The ID of the Alibaba Cloud account used by the workspace administrator. You can log on to the Alibaba Cloud Management Console and view the ID on the Security Settings page.</p>
145168
*

dataworks-public-20240518/src/main/java/com/aliyun/sdk/service/dataworks_public20240518/models/ListWorkflowDefinitionsRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ public class ListWorkflowDefinitionsRequest extends Request {
2121
@com.aliyun.core.annotation.NameInMap("RegionId")
2222
private String regionId;
2323

24+
@com.aliyun.core.annotation.Query
25+
@com.aliyun.core.annotation.NameInMap("Name")
26+
private String name;
27+
2428
@com.aliyun.core.annotation.Query
2529
@com.aliyun.core.annotation.NameInMap("Owner")
2630
private String owner;
@@ -47,6 +51,7 @@ public class ListWorkflowDefinitionsRequest extends Request {
4751
private ListWorkflowDefinitionsRequest(Builder builder) {
4852
super(builder);
4953
this.regionId = builder.regionId;
54+
this.name = builder.name;
5055
this.owner = builder.owner;
5156
this.pageNumber = builder.pageNumber;
5257
this.pageSize = builder.pageSize;
@@ -74,6 +79,13 @@ public String getRegionId() {
7479
return this.regionId;
7580
}
7681

82+
/**
83+
* @return name
84+
*/
85+
public String getName() {
86+
return this.name;
87+
}
88+
7789
/**
7890
* @return owner
7991
*/
@@ -111,6 +123,7 @@ public String getType() {
111123

112124
public static final class Builder extends Request.Builder<ListWorkflowDefinitionsRequest, Builder> {
113125
private String regionId;
126+
private String name;
114127
private String owner;
115128
private Integer pageNumber;
116129
private Integer pageSize;
@@ -124,6 +137,7 @@ private Builder() {
124137
private Builder(ListWorkflowDefinitionsRequest request) {
125138
super(request);
126139
this.regionId = request.regionId;
140+
this.name = request.name;
127141
this.owner = request.owner;
128142
this.pageNumber = request.pageNumber;
129143
this.pageSize = request.pageSize;
@@ -140,6 +154,15 @@ public Builder regionId(String regionId) {
140154
return this;
141155
}
142156

157+
/**
158+
* Name.
159+
*/
160+
public Builder name(String name) {
161+
this.putQueryParameter("Name", name);
162+
this.name = name;
163+
return this;
164+
}
165+
143166
/**
144167
* <p>The ID of the Alibaba Cloud account used by the workspace administrator. You can log on to the Alibaba Cloud Management Console and view the ID on the Security Settings page.</p>
145168
*

0 commit comments

Comments
 (0)