Skip to content

Commit d1d4c93

Browse files
committed
Generated java-async 2022-12-15 for eflo-controller.
1 parent 2d5dfad commit d1d4c93

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

eflo-controller-20221215/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-15 Version: 2.0.10
2+
- Generated java-async 2022-12-15 for eflo-controller.
3+
14
2025-04-10 Version: 2.0.9
25
- Generated java-async 2022-12-15 for eflo-controller.
36

eflo-controller-20221215/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-eflo_controller20221215</artifactId>
6-
<version>2.0.9</version>
6+
<version>2.0.10</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-eflo_controller20221215</name>
99
<description>Alibaba Cloud eflo-controller (20221215) Async SDK for Java

eflo-controller-20221215/src/main/java/com/aliyun/sdk/service/eflo_controller20221215/models/ListFreeNodesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ public class ListFreeNodesRequest extends Request {
3737
@com.aliyun.core.annotation.NameInMap("NextToken")
3838
private String nextToken;
3939

40+
@com.aliyun.core.annotation.Body
41+
@com.aliyun.core.annotation.NameInMap("OperatingStates")
42+
private java.util.List<String> operatingStates;
43+
4044
@com.aliyun.core.annotation.Body
4145
@com.aliyun.core.annotation.NameInMap("ResourceGroupId")
4246
private String resourceGroupId;
@@ -52,6 +56,7 @@ private ListFreeNodesRequest(Builder builder) {
5256
this.machineType = builder.machineType;
5357
this.maxResults = builder.maxResults;
5458
this.nextToken = builder.nextToken;
59+
this.operatingStates = builder.operatingStates;
5560
this.resourceGroupId = builder.resourceGroupId;
5661
this.tags = builder.tags;
5762
}
@@ -104,6 +109,13 @@ public String getNextToken() {
104109
return this.nextToken;
105110
}
106111

112+
/**
113+
* @return operatingStates
114+
*/
115+
public java.util.List<String> getOperatingStates() {
116+
return this.operatingStates;
117+
}
118+
107119
/**
108120
* @return resourceGroupId
109121
*/
@@ -124,6 +136,7 @@ public static final class Builder extends Request.Builder<ListFreeNodesRequest,
124136
private String machineType;
125137
private Long maxResults;
126138
private String nextToken;
139+
private java.util.List<String> operatingStates;
127140
private String resourceGroupId;
128141
private java.util.List<Tags> tags;
129142

@@ -138,6 +151,7 @@ private Builder(ListFreeNodesRequest request) {
138151
this.machineType = request.machineType;
139152
this.maxResults = request.maxResults;
140153
this.nextToken = request.nextToken;
154+
this.operatingStates = request.operatingStates;
141155
this.resourceGroupId = request.resourceGroupId;
142156
this.tags = request.tags;
143157
}
@@ -199,6 +213,15 @@ public Builder nextToken(String nextToken) {
199213
return this;
200214
}
201215

216+
/**
217+
* OperatingStates.
218+
*/
219+
public Builder operatingStates(java.util.List<String> operatingStates) {
220+
this.putBodyParameter("OperatingStates", operatingStates);
221+
this.operatingStates = operatingStates;
222+
return this;
223+
}
224+
202225
/**
203226
* <p>Resource group ID</p>
204227
*

0 commit comments

Comments
 (0)