Skip to content

Commit d4c8271

Browse files
committed
Generated java-async 2022-12-15 for eflo-controller.
1 parent 0e0880b commit d4c8271

File tree

4 files changed

+87
-1
lines changed

4 files changed

+87
-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+
2023-10-26 Version: 1.0.5
2+
- Generated java-async 2022-12-15 for eflo-controller.
3+
14
2023-09-26 Version: 1.0.4
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>1.0.4</version>
6+
<version>1.0.5</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/CreateClusterRequest.java

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,12 +1205,20 @@ public static class Networks extends TeaModel {
12051205
@NameInMap("NewVpdInfo")
12061206
private NewVpdInfo newVpdInfo;
12071207

1208+
@NameInMap("SecurityGroupId")
1209+
private String securityGroupId;
1210+
1211+
@NameInMap("VSwitchZoneId")
1212+
private String vSwitchZoneId;
1213+
12081214
@NameInMap("VpdInfo")
12091215
private VpdInfo vpdInfo;
12101216

12111217
private Networks(Builder builder) {
12121218
this.ipAllocationPolicy = builder.ipAllocationPolicy;
12131219
this.newVpdInfo = builder.newVpdInfo;
1220+
this.securityGroupId = builder.securityGroupId;
1221+
this.vSwitchZoneId = builder.vSwitchZoneId;
12141222
this.vpdInfo = builder.vpdInfo;
12151223
}
12161224

@@ -1236,6 +1244,20 @@ public NewVpdInfo getNewVpdInfo() {
12361244
return this.newVpdInfo;
12371245
}
12381246

1247+
/**
1248+
* @return securityGroupId
1249+
*/
1250+
public String getSecurityGroupId() {
1251+
return this.securityGroupId;
1252+
}
1253+
1254+
/**
1255+
* @return vSwitchZoneId
1256+
*/
1257+
public String getVSwitchZoneId() {
1258+
return this.vSwitchZoneId;
1259+
}
1260+
12391261
/**
12401262
* @return vpdInfo
12411263
*/
@@ -1246,6 +1268,8 @@ public VpdInfo getVpdInfo() {
12461268
public static final class Builder {
12471269
private java.util.List < IpAllocationPolicy> ipAllocationPolicy;
12481270
private NewVpdInfo newVpdInfo;
1271+
private String securityGroupId;
1272+
private String vSwitchZoneId;
12491273
private VpdInfo vpdInfo;
12501274

12511275
/**
@@ -1264,6 +1288,22 @@ public Builder newVpdInfo(NewVpdInfo newVpdInfo) {
12641288
return this;
12651289
}
12661290

1291+
/**
1292+
* SecurityGroupId.
1293+
*/
1294+
public Builder securityGroupId(String securityGroupId) {
1295+
this.securityGroupId = securityGroupId;
1296+
return this;
1297+
}
1298+
1299+
/**
1300+
* VSwitchZoneId.
1301+
*/
1302+
public Builder vSwitchZoneId(String vSwitchZoneId) {
1303+
this.vSwitchZoneId = vSwitchZoneId;
1304+
return this;
1305+
}
1306+
12671307
/**
12681308
* 复用VPD信息
12691309
*/

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

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ public class ExtendClusterRequest extends Request {
3232
@NameInMap("NodeGroups")
3333
private java.util.List < NodeGroups> nodeGroups;
3434

35+
@Body
36+
@NameInMap("VSwitchZoneId")
37+
private String vSwitchZoneId;
38+
3539
@Body
3640
@NameInMap("VpdSubnets")
3741
private java.util.List < String > vpdSubnets;
@@ -43,6 +47,7 @@ private ExtendClusterRequest(Builder builder) {
4347
this.ignoreFailedNodeTasks = builder.ignoreFailedNodeTasks;
4448
this.ipAllocationPolicy = builder.ipAllocationPolicy;
4549
this.nodeGroups = builder.nodeGroups;
50+
this.vSwitchZoneId = builder.vSwitchZoneId;
4651
this.vpdSubnets = builder.vpdSubnets;
4752
}
4853

@@ -94,6 +99,13 @@ public java.util.List < NodeGroups> getNodeGroups() {
9499
return this.nodeGroups;
95100
}
96101

102+
/**
103+
* @return vSwitchZoneId
104+
*/
105+
public String getVSwitchZoneId() {
106+
return this.vSwitchZoneId;
107+
}
108+
97109
/**
98110
* @return vpdSubnets
99111
*/
@@ -107,6 +119,7 @@ public static final class Builder extends Request.Builder<ExtendClusterRequest,
107119
private Boolean ignoreFailedNodeTasks;
108120
private java.util.List < IpAllocationPolicy> ipAllocationPolicy;
109121
private java.util.List < NodeGroups> nodeGroups;
122+
private String vSwitchZoneId;
110123
private java.util.List < String > vpdSubnets;
111124

112125
private Builder() {
@@ -120,6 +133,7 @@ private Builder(ExtendClusterRequest request) {
120133
this.ignoreFailedNodeTasks = request.ignoreFailedNodeTasks;
121134
this.ipAllocationPolicy = request.ipAllocationPolicy;
122135
this.nodeGroups = request.nodeGroups;
136+
this.vSwitchZoneId = request.vSwitchZoneId;
123137
this.vpdSubnets = request.vpdSubnets;
124138
}
125139

@@ -170,6 +184,15 @@ public Builder nodeGroups(java.util.List < NodeGroups> nodeGroups) {
170184
return this;
171185
}
172186

187+
/**
188+
* VSwitchZoneId.
189+
*/
190+
public Builder vSwitchZoneId(String vSwitchZoneId) {
191+
this.putBodyParameter("VSwitchZoneId", vSwitchZoneId);
192+
this.vSwitchZoneId = vSwitchZoneId;
193+
return this;
194+
}
195+
173196
/**
174197
* VpdSubnets.
175198
*/
@@ -765,10 +788,14 @@ public static class NodeGroups extends TeaModel {
765788
@NameInMap("UserData")
766789
private String userData;
767790

791+
@NameInMap("ZoneId")
792+
private String zoneId;
793+
768794
private NodeGroups(Builder builder) {
769795
this.nodeGroupId = builder.nodeGroupId;
770796
this.nodes = builder.nodes;
771797
this.userData = builder.userData;
798+
this.zoneId = builder.zoneId;
772799
}
773800

774801
public static Builder builder() {
@@ -800,10 +827,18 @@ public String getUserData() {
800827
return this.userData;
801828
}
802829

830+
/**
831+
* @return zoneId
832+
*/
833+
public String getZoneId() {
834+
return this.zoneId;
835+
}
836+
803837
public static final class Builder {
804838
private String nodeGroupId;
805839
private java.util.List < Nodes> nodes;
806840
private String userData;
841+
private String zoneId;
807842

808843
/**
809844
* NodeGroupId.
@@ -829,6 +864,14 @@ public Builder userData(String userData) {
829864
return this;
830865
}
831866

867+
/**
868+
* ZoneId.
869+
*/
870+
public Builder zoneId(String zoneId) {
871+
this.zoneId = zoneId;
872+
return this;
873+
}
874+
832875
public NodeGroups build() {
833876
return new NodeGroups(this);
834877
}

0 commit comments

Comments
 (0)