Skip to content

Commit fb85844

Browse files
committed
Generated java-async 2021-10-01 for waf-openapi.
1 parent 289fc90 commit fb85844

File tree

8 files changed

+135
-1
lines changed

8 files changed

+135
-1
lines changed

waf-openapi-20211001/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: 7.0.2
2+
- Generated java-async 2021-10-01 for waf-openapi.
3+
14
2025-11-19 Version: 7.0.1
25
- Generated java-async 2021-10-01 for waf-openapi.
36

waf-openapi-20211001/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-waf_openapi20211001</artifactId>
6-
<version>7.0.1</version>
6+
<version>7.0.2</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-waf_openapi20211001</name>
99
<description>Alibaba Cloud waf-openapi (20211001) Async SDK for Java

waf-openapi-20211001/src/main/java/com/aliyun/sdk/service/waf_openapi20211001/models/CreateCloudResourceRequest.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,10 @@ public static class Redirect extends TeaModel {
729729
@com.aliyun.core.annotation.Validation(maximum = 3600, minimum = 10)
730730
private Integer keepaliveTimeout;
731731

732+
@com.aliyun.core.annotation.NameInMap("MaxBodySize")
733+
@com.aliyun.core.annotation.Validation(maximum = 10, minimum = 2)
734+
private Integer maxBodySize;
735+
732736
@com.aliyun.core.annotation.NameInMap("ReadTimeout")
733737
@com.aliyun.core.annotation.Validation(maximum = 3600, minimum = 1)
734738
private Integer readTimeout;
@@ -753,6 +757,7 @@ private Redirect(Builder builder) {
753757
this.keepalive = builder.keepalive;
754758
this.keepaliveRequests = builder.keepaliveRequests;
755759
this.keepaliveTimeout = builder.keepaliveTimeout;
760+
this.maxBodySize = builder.maxBodySize;
756761
this.readTimeout = builder.readTimeout;
757762
this.requestHeaders = builder.requestHeaders;
758763
this.writeTimeout = builder.writeTimeout;
@@ -790,6 +795,13 @@ public Integer getKeepaliveTimeout() {
790795
return this.keepaliveTimeout;
791796
}
792797

798+
/**
799+
* @return maxBodySize
800+
*/
801+
public Integer getMaxBodySize() {
802+
return this.maxBodySize;
803+
}
804+
793805
/**
794806
* @return readTimeout
795807
*/
@@ -836,6 +848,7 @@ public static final class Builder {
836848
private Boolean keepalive;
837849
private Integer keepaliveRequests;
838850
private Integer keepaliveTimeout;
851+
private Integer maxBodySize;
839852
private Integer readTimeout;
840853
private java.util.List<RequestHeaders> requestHeaders;
841854
private Integer writeTimeout;
@@ -850,6 +863,7 @@ private Builder(Redirect model) {
850863
this.keepalive = model.keepalive;
851864
this.keepaliveRequests = model.keepaliveRequests;
852865
this.keepaliveTimeout = model.keepaliveTimeout;
866+
this.maxBodySize = model.maxBodySize;
853867
this.readTimeout = model.readTimeout;
854868
this.requestHeaders = model.requestHeaders;
855869
this.writeTimeout = model.writeTimeout;
@@ -901,6 +915,14 @@ public Builder keepaliveTimeout(Integer keepaliveTimeout) {
901915
return this;
902916
}
903917

918+
/**
919+
* MaxBodySize.
920+
*/
921+
public Builder maxBodySize(Integer maxBodySize) {
922+
this.maxBodySize = maxBodySize;
923+
return this;
924+
}
925+
904926
/**
905927
* <p>The timeout period of read connections. Unit: seconds. Valid values: 1 to 3600.</p>
906928
*

waf-openapi-20211001/src/main/java/com/aliyun/sdk/service/waf_openapi20211001/models/CreateDomainRequest.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,10 @@ public static class Redirect extends TeaModel {
963963
@com.aliyun.core.annotation.Validation(required = true)
964964
private String loadbalance;
965965

966+
@com.aliyun.core.annotation.NameInMap("MaxBodySize")
967+
@com.aliyun.core.annotation.Validation(maximum = 10, minimum = 2)
968+
private Integer maxBodySize;
969+
966970
@com.aliyun.core.annotation.NameInMap("ReadTimeout")
967971
@com.aliyun.core.annotation.Validation(maximum = 3600, minimum = 1)
968972
private Integer readTimeout;
@@ -1012,6 +1016,7 @@ private Redirect(Builder builder) {
10121016
this.keepaliveRequests = builder.keepaliveRequests;
10131017
this.keepaliveTimeout = builder.keepaliveTimeout;
10141018
this.loadbalance = builder.loadbalance;
1019+
this.maxBodySize = builder.maxBodySize;
10151020
this.readTimeout = builder.readTimeout;
10161021
this.requestHeaders = builder.requestHeaders;
10171022
this.retry = builder.retry;
@@ -1104,6 +1109,13 @@ public String getLoadbalance() {
11041109
return this.loadbalance;
11051110
}
11061111

1112+
/**
1113+
* @return maxBodySize
1114+
*/
1115+
public Integer getMaxBodySize() {
1116+
return this.maxBodySize;
1117+
}
1118+
11071119
/**
11081120
* @return readTimeout
11091121
*/
@@ -1199,6 +1211,7 @@ public static final class Builder {
11991211
private Integer keepaliveRequests;
12001212
private Integer keepaliveTimeout;
12011213
private String loadbalance;
1214+
private Integer maxBodySize;
12021215
private Integer readTimeout;
12031216
private java.util.List<RequestHeaders> requestHeaders;
12041217
private Boolean retry;
@@ -1226,6 +1239,7 @@ private Builder(Redirect model) {
12261239
this.keepaliveRequests = model.keepaliveRequests;
12271240
this.keepaliveTimeout = model.keepaliveTimeout;
12281241
this.loadbalance = model.loadbalance;
1242+
this.maxBodySize = model.maxBodySize;
12291243
this.readTimeout = model.readTimeout;
12301244
this.requestHeaders = model.requestHeaders;
12311245
this.retry = model.retry;
@@ -1365,6 +1379,14 @@ public Builder loadbalance(String loadbalance) {
13651379
return this;
13661380
}
13671381

1382+
/**
1383+
* MaxBodySize.
1384+
*/
1385+
public Builder maxBodySize(Integer maxBodySize) {
1386+
this.maxBodySize = maxBodySize;
1387+
return this;
1388+
}
1389+
13681390
/**
13691391
* <p>The timeout period of read connections. Unit: seconds. Valid values: 1 to 3600.</p>
13701392
*

waf-openapi-20211001/src/main/java/com/aliyun/sdk/service/waf_openapi20211001/models/DescribeCloudResourceAccessPortDetailsResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,9 @@ public static class AccessPortDetails extends TeaModel {
571571
@com.aliyun.core.annotation.NameInMap("LogHeaders")
572572
private java.util.List<LogHeaders> logHeaders;
573573

574+
@com.aliyun.core.annotation.NameInMap("MaxBodySize")
575+
private Integer maxBodySize;
576+
574577
@com.aliyun.core.annotation.NameInMap("OwnerUserId")
575578
private String ownerUserId;
576579

@@ -618,6 +621,7 @@ private AccessPortDetails(Builder builder) {
618621
this.keepaliveRequests = builder.keepaliveRequests;
619622
this.keepaliveTimeout = builder.keepaliveTimeout;
620623
this.logHeaders = builder.logHeaders;
624+
this.maxBodySize = builder.maxBodySize;
621625
this.ownerUserId = builder.ownerUserId;
622626
this.port = builder.port;
623627
this.protocol = builder.protocol;
@@ -710,6 +714,13 @@ public java.util.List<LogHeaders> getLogHeaders() {
710714
return this.logHeaders;
711715
}
712716

717+
/**
718+
* @return maxBodySize
719+
*/
720+
public Integer getMaxBodySize() {
721+
return this.maxBodySize;
722+
}
723+
713724
/**
714725
* @return ownerUserId
715726
*/
@@ -805,6 +816,7 @@ public static final class Builder {
805816
private Integer keepaliveRequests;
806817
private Integer keepaliveTimeout;
807818
private java.util.List<LogHeaders> logHeaders;
819+
private Integer maxBodySize;
808820
private String ownerUserId;
809821
private Integer port;
810822
private String protocol;
@@ -832,6 +844,7 @@ private Builder(AccessPortDetails model) {
832844
this.keepaliveRequests = model.keepaliveRequests;
833845
this.keepaliveTimeout = model.keepaliveTimeout;
834846
this.logHeaders = model.logHeaders;
847+
this.maxBodySize = model.maxBodySize;
835848
this.ownerUserId = model.ownerUserId;
836849
this.port = model.port;
837850
this.protocol = model.protocol;
@@ -970,6 +983,14 @@ public Builder logHeaders(java.util.List<LogHeaders> logHeaders) {
970983
return this;
971984
}
972985

986+
/**
987+
* MaxBodySize.
988+
*/
989+
public Builder maxBodySize(Integer maxBodySize) {
990+
this.maxBodySize = maxBodySize;
991+
return this;
992+
}
993+
973994
/**
974995
* <p>The ID of the Alibaba Cloud account to which the resource belongs.</p>
975996
*

waf-openapi-20211001/src/main/java/com/aliyun/sdk/service/waf_openapi20211001/models/DescribeDomainDetailResponseBody.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,6 +1264,10 @@ public static class Redirect extends TeaModel {
12641264
@com.aliyun.core.annotation.NameInMap("Loadbalance")
12651265
private String loadbalance;
12661266

1267+
@com.aliyun.core.annotation.NameInMap("MaxBodySize")
1268+
@com.aliyun.core.annotation.Validation(maximum = 10, minimum = 2)
1269+
private Integer maxBodySize;
1270+
12671271
@com.aliyun.core.annotation.NameInMap("ReadTimeout")
12681272
private Integer readTimeout;
12691273

@@ -1309,6 +1313,7 @@ private Redirect(Builder builder) {
13091313
this.keepaliveRequests = builder.keepaliveRequests;
13101314
this.keepaliveTimeout = builder.keepaliveTimeout;
13111315
this.loadbalance = builder.loadbalance;
1316+
this.maxBodySize = builder.maxBodySize;
13121317
this.readTimeout = builder.readTimeout;
13131318
this.requestHeaders = builder.requestHeaders;
13141319
this.retry = builder.retry;
@@ -1407,6 +1412,13 @@ public String getLoadbalance() {
14071412
return this.loadbalance;
14081413
}
14091414

1415+
/**
1416+
* @return maxBodySize
1417+
*/
1418+
public Integer getMaxBodySize() {
1419+
return this.maxBodySize;
1420+
}
1421+
14101422
/**
14111423
* @return readTimeout
14121424
*/
@@ -1496,6 +1508,7 @@ public static final class Builder {
14961508
private Integer keepaliveRequests;
14971509
private Integer keepaliveTimeout;
14981510
private String loadbalance;
1511+
private Integer maxBodySize;
14991512
private Integer readTimeout;
15001513
private java.util.List<RequestHeaders> requestHeaders;
15011514
private Boolean retry;
@@ -1523,6 +1536,7 @@ private Builder(Redirect model) {
15231536
this.keepaliveRequests = model.keepaliveRequests;
15241537
this.keepaliveTimeout = model.keepaliveTimeout;
15251538
this.loadbalance = model.loadbalance;
1539+
this.maxBodySize = model.maxBodySize;
15261540
this.readTimeout = model.readTimeout;
15271541
this.requestHeaders = model.requestHeaders;
15281542
this.retry = model.retry;
@@ -1661,6 +1675,14 @@ public Builder loadbalance(String loadbalance) {
16611675
return this;
16621676
}
16631677

1678+
/**
1679+
* MaxBodySize.
1680+
*/
1681+
public Builder maxBodySize(Integer maxBodySize) {
1682+
this.maxBodySize = maxBodySize;
1683+
return this;
1684+
}
1685+
16641686
/**
16651687
* <p>The read timeout period. Unit: seconds. Valid values: 5 to 1800.</p>
16661688
*

waf-openapi-20211001/src/main/java/com/aliyun/sdk/service/waf_openapi20211001/models/ModifyCloudResourceRequest.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,10 @@ public static class Redirect extends TeaModel {
697697
@com.aliyun.core.annotation.Validation(maximum = 3600, minimum = 10)
698698
private Integer keepaliveTimeout;
699699

700+
@com.aliyun.core.annotation.NameInMap("MaxBodySize")
701+
@com.aliyun.core.annotation.Validation(maximum = 10, minimum = 2)
702+
private Integer maxBodySize;
703+
700704
@com.aliyun.core.annotation.NameInMap("ReadTimeout")
701705
@com.aliyun.core.annotation.Validation(maximum = 3600, minimum = 1)
702706
private Integer readTimeout;
@@ -721,6 +725,7 @@ private Redirect(Builder builder) {
721725
this.keepalive = builder.keepalive;
722726
this.keepaliveRequests = builder.keepaliveRequests;
723727
this.keepaliveTimeout = builder.keepaliveTimeout;
728+
this.maxBodySize = builder.maxBodySize;
724729
this.readTimeout = builder.readTimeout;
725730
this.requestHeaders = builder.requestHeaders;
726731
this.writeTimeout = builder.writeTimeout;
@@ -758,6 +763,13 @@ public Integer getKeepaliveTimeout() {
758763
return this.keepaliveTimeout;
759764
}
760765

766+
/**
767+
* @return maxBodySize
768+
*/
769+
public Integer getMaxBodySize() {
770+
return this.maxBodySize;
771+
}
772+
761773
/**
762774
* @return readTimeout
763775
*/
@@ -804,6 +816,7 @@ public static final class Builder {
804816
private Boolean keepalive;
805817
private Integer keepaliveRequests;
806818
private Integer keepaliveTimeout;
819+
private Integer maxBodySize;
807820
private Integer readTimeout;
808821
private java.util.List<RequestHeaders> requestHeaders;
809822
private Integer writeTimeout;
@@ -818,6 +831,7 @@ private Builder(Redirect model) {
818831
this.keepalive = model.keepalive;
819832
this.keepaliveRequests = model.keepaliveRequests;
820833
this.keepaliveTimeout = model.keepaliveTimeout;
834+
this.maxBodySize = model.maxBodySize;
821835
this.readTimeout = model.readTimeout;
822836
this.requestHeaders = model.requestHeaders;
823837
this.writeTimeout = model.writeTimeout;
@@ -869,6 +883,14 @@ public Builder keepaliveTimeout(Integer keepaliveTimeout) {
869883
return this;
870884
}
871885

886+
/**
887+
* MaxBodySize.
888+
*/
889+
public Builder maxBodySize(Integer maxBodySize) {
890+
this.maxBodySize = maxBodySize;
891+
return this;
892+
}
893+
872894
/**
873895
* <p>The timeout period of read connections. Unit: seconds. Valid values: 1 to 3600.</p>
874896
*

waf-openapi-20211001/src/main/java/com/aliyun/sdk/service/waf_openapi20211001/models/ModifyDomainRequest.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -937,6 +937,10 @@ public static class Redirect extends TeaModel {
937937
@com.aliyun.core.annotation.Validation(required = true)
938938
private String loadbalance;
939939

940+
@com.aliyun.core.annotation.NameInMap("MaxBodySize")
941+
@com.aliyun.core.annotation.Validation(maximum = 10, minimum = 2)
942+
private Integer maxBodySize;
943+
940944
@com.aliyun.core.annotation.NameInMap("ReadTimeout")
941945
@com.aliyun.core.annotation.Validation(maximum = 3600, minimum = 1)
942946
private Integer readTimeout;
@@ -986,6 +990,7 @@ private Redirect(Builder builder) {
986990
this.keepaliveRequests = builder.keepaliveRequests;
987991
this.keepaliveTimeout = builder.keepaliveTimeout;
988992
this.loadbalance = builder.loadbalance;
993+
this.maxBodySize = builder.maxBodySize;
989994
this.readTimeout = builder.readTimeout;
990995
this.requestHeaders = builder.requestHeaders;
991996
this.retry = builder.retry;
@@ -1078,6 +1083,13 @@ public String getLoadbalance() {
10781083
return this.loadbalance;
10791084
}
10801085

1086+
/**
1087+
* @return maxBodySize
1088+
*/
1089+
public Integer getMaxBodySize() {
1090+
return this.maxBodySize;
1091+
}
1092+
10811093
/**
10821094
* @return readTimeout
10831095
*/
@@ -1173,6 +1185,7 @@ public static final class Builder {
11731185
private Integer keepaliveRequests;
11741186
private Integer keepaliveTimeout;
11751187
private String loadbalance;
1188+
private Integer maxBodySize;
11761189
private Integer readTimeout;
11771190
private java.util.List<RequestHeaders> requestHeaders;
11781191
private Boolean retry;
@@ -1200,6 +1213,7 @@ private Builder(Redirect model) {
12001213
this.keepaliveRequests = model.keepaliveRequests;
12011214
this.keepaliveTimeout = model.keepaliveTimeout;
12021215
this.loadbalance = model.loadbalance;
1216+
this.maxBodySize = model.maxBodySize;
12031217
this.readTimeout = model.readTimeout;
12041218
this.requestHeaders = model.requestHeaders;
12051219
this.retry = model.retry;
@@ -1343,6 +1357,14 @@ public Builder loadbalance(String loadbalance) {
13431357
return this;
13441358
}
13451359

1360+
/**
1361+
* MaxBodySize.
1362+
*/
1363+
public Builder maxBodySize(Integer maxBodySize) {
1364+
this.maxBodySize = maxBodySize;
1365+
return this;
1366+
}
1367+
13461368
/**
13471369
* <p>The timeout period of read connections. Unit: seconds. Valid values: 1 to 3600.</p>
13481370
*

0 commit comments

Comments
 (0)