Skip to content

Commit 52812cc

Browse files
committed
Generated java-async 2024-03-27 for APIG.
1 parent 5a908e9 commit 52812cc

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed

apig-20240327/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-25 Version: 5.0.6
2+
- Generated java-async 2024-03-27 for APIG.
3+
14
2025-11-20 Version: 5.0.5
25
- Generated java-async 2024-03-27 for APIG.
36

apig-20240327/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-apig20240327</artifactId>
6-
<version>5.0.5</version>
6+
<version>5.0.6</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-apig20240327</name>
99
<description>Alibaba Cloud APIG (20240327) Async SDK for Java

apig-20240327/src/main/java/com/aliyun/sdk/service/apig20240327/models/ListGatewaysResponseBody.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,12 @@ public static class LoadBalancers extends TeaModel {
243243
@com.aliyun.core.annotation.NameInMap("gatewayDefault")
244244
private Boolean gatewayDefault;
245245

246+
@com.aliyun.core.annotation.NameInMap("ipv4Addresses")
247+
private java.util.List<String> ipv4Addresses;
248+
249+
@com.aliyun.core.annotation.NameInMap("ipv6Addresses")
250+
private java.util.List<String> ipv6Addresses;
251+
246252
@com.aliyun.core.annotation.NameInMap("loadBalancerId")
247253
private String loadBalancerId;
248254

@@ -263,6 +269,8 @@ private LoadBalancers(Builder builder) {
263269
this.addressIpVersion = builder.addressIpVersion;
264270
this.addressType = builder.addressType;
265271
this.gatewayDefault = builder.gatewayDefault;
272+
this.ipv4Addresses = builder.ipv4Addresses;
273+
this.ipv6Addresses = builder.ipv6Addresses;
266274
this.loadBalancerId = builder.loadBalancerId;
267275
this.mode = builder.mode;
268276
this.ports = builder.ports;
@@ -306,6 +314,20 @@ public Boolean getGatewayDefault() {
306314
return this.gatewayDefault;
307315
}
308316

317+
/**
318+
* @return ipv4Addresses
319+
*/
320+
public java.util.List<String> getIpv4Addresses() {
321+
return this.ipv4Addresses;
322+
}
323+
324+
/**
325+
* @return ipv6Addresses
326+
*/
327+
public java.util.List<String> getIpv6Addresses() {
328+
return this.ipv6Addresses;
329+
}
330+
309331
/**
310332
* @return loadBalancerId
311333
*/
@@ -346,6 +368,8 @@ public static final class Builder {
346368
private String addressIpVersion;
347369
private String addressType;
348370
private Boolean gatewayDefault;
371+
private java.util.List<String> ipv4Addresses;
372+
private java.util.List<String> ipv6Addresses;
349373
private String loadBalancerId;
350374
private String mode;
351375
private java.util.List<Ports> ports;
@@ -360,6 +384,8 @@ private Builder(LoadBalancers model) {
360384
this.addressIpVersion = model.addressIpVersion;
361385
this.addressType = model.addressType;
362386
this.gatewayDefault = model.gatewayDefault;
387+
this.ipv4Addresses = model.ipv4Addresses;
388+
this.ipv6Addresses = model.ipv6Addresses;
363389
this.loadBalancerId = model.loadBalancerId;
364390
this.mode = model.mode;
365391
this.ports = model.ports;
@@ -419,6 +445,22 @@ public Builder gatewayDefault(Boolean gatewayDefault) {
419445
return this;
420446
}
421447

448+
/**
449+
* ipv4Addresses.
450+
*/
451+
public Builder ipv4Addresses(java.util.List<String> ipv4Addresses) {
452+
this.ipv4Addresses = ipv4Addresses;
453+
return this;
454+
}
455+
456+
/**
457+
* ipv6Addresses.
458+
*/
459+
public Builder ipv6Addresses(java.util.List<String> ipv6Addresses) {
460+
this.ipv6Addresses = ipv6Addresses;
461+
return this;
462+
}
463+
422464
/**
423465
* <p>The load balancer ID.</p>
424466
*

0 commit comments

Comments
 (0)