Skip to content

Commit 18b1547

Browse files
committed
Generated java-async 2019-05-31 for mse.
1 parent c741c8f commit 18b1547

File tree

7 files changed

+113
-1
lines changed

7 files changed

+113
-1
lines changed

mse-20190531/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-08 Version: 6.0.38
2+
- Generated java-async 2019-05-31 for mse.
3+
14
2025-04-02 Version: 6.0.37
25
- Generated java-async 2019-05-31 for mse.
36

mse-20190531/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-mse20190531</artifactId>
6-
<version>6.0.37</version>
6+
<version>6.0.38</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-mse20190531</name>
99
<description>Alibaba Cloud mse (20190531) Async SDK for Java

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/AddGatewayRequest.java

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,13 @@ public class AddGatewayRequest extends Request {
4747

4848
@com.aliyun.core.annotation.Query
4949
@com.aliyun.core.annotation.NameInMap("InternetSlbSpec")
50+
@Deprecated
5051
private String internetSlbSpec;
5152

53+
@com.aliyun.core.annotation.Query
54+
@com.aliyun.core.annotation.NameInMap("ManagedEntryNetworkType")
55+
private String managedEntryNetworkType;
56+
5257
@com.aliyun.core.annotation.Query
5358
@com.aliyun.core.annotation.NameInMap("MserVersion")
5459
private String mserVersion;
@@ -80,6 +85,7 @@ public class AddGatewayRequest extends Request {
8085

8186
@com.aliyun.core.annotation.Query
8287
@com.aliyun.core.annotation.NameInMap("SlbSpec")
88+
@Deprecated
8389
private String slbSpec;
8490

8591
@com.aliyun.core.annotation.Query
@@ -121,6 +127,7 @@ private AddGatewayRequest(Builder builder) {
121127
this.enableXtrace = builder.enableXtrace;
122128
this.enterpriseSecurityGroup = builder.enterpriseSecurityGroup;
123129
this.internetSlbSpec = builder.internetSlbSpec;
130+
this.managedEntryNetworkType = builder.managedEntryNetworkType;
124131
this.mserVersion = builder.mserVersion;
125132
this.name = builder.name;
126133
this.nlbNetworkType = builder.nlbNetworkType;
@@ -207,6 +214,13 @@ public String getInternetSlbSpec() {
207214
return this.internetSlbSpec;
208215
}
209216

217+
/**
218+
* @return managedEntryNetworkType
219+
*/
220+
public String getManagedEntryNetworkType() {
221+
return this.managedEntryNetworkType;
222+
}
223+
210224
/**
211225
* @return mserVersion
212226
*/
@@ -321,6 +335,7 @@ public static final class Builder extends Request.Builder<AddGatewayRequest, Bui
321335
private Boolean enableXtrace;
322336
private Boolean enterpriseSecurityGroup;
323337
private String internetSlbSpec;
338+
private String managedEntryNetworkType;
324339
private String mserVersion;
325340
private String name;
326341
private String nlbNetworkType;
@@ -351,6 +366,7 @@ private Builder(AddGatewayRequest request) {
351366
this.enableXtrace = request.enableXtrace;
352367
this.enterpriseSecurityGroup = request.enterpriseSecurityGroup;
353368
this.internetSlbSpec = request.internetSlbSpec;
369+
this.managedEntryNetworkType = request.managedEntryNetworkType;
354370
this.mserVersion = request.mserVersion;
355371
this.name = request.name;
356372
this.nlbNetworkType = request.nlbNetworkType;
@@ -486,6 +502,15 @@ public Builder internetSlbSpec(String internetSlbSpec) {
486502
return this;
487503
}
488504

505+
/**
506+
* ManagedEntryNetworkType.
507+
*/
508+
public Builder managedEntryNetworkType(String managedEntryNetworkType) {
509+
this.putQueryParameter("ManagedEntryNetworkType", managedEntryNetworkType);
510+
this.managedEntryNetworkType = managedEntryNetworkType;
511+
return this;
512+
}
513+
489514
/**
490515
* <p>The MSE instance type. Valid values:</p>
491516
* <ul>

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/GetGatewayConfigResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,9 @@ public static class Data extends TeaModel {
920920
@com.aliyun.core.annotation.NameInMap("EnableGzip")
921921
private Boolean enableGzip;
922922

923+
@com.aliyun.core.annotation.NameInMap("EnableGzipHardwareAccelerate")
924+
private Boolean enableGzipHardwareAccelerate;
925+
923926
@com.aliyun.core.annotation.NameInMap("EnableHardwareAccelerate")
924927
private Boolean enableHardwareAccelerate;
925928

@@ -997,6 +1000,7 @@ private Data(Builder builder) {
9971000
this.enableCustomAuthConfigPush = builder.enableCustomAuthConfigPush;
9981001
this.enableGenerateRequestId = builder.enableGenerateRequestId;
9991002
this.enableGzip = builder.enableGzip;
1003+
this.enableGzipHardwareAccelerate = builder.enableGzipHardwareAccelerate;
10001004
this.enableHardwareAccelerate = builder.enableHardwareAccelerate;
10011005
this.enableHttp2 = builder.enableHttp2;
10021006
this.enableHttp3 = builder.enableHttp3;
@@ -1079,6 +1083,13 @@ public Boolean getEnableGzip() {
10791083
return this.enableGzip;
10801084
}
10811085

1086+
/**
1087+
* @return enableGzipHardwareAccelerate
1088+
*/
1089+
public Boolean getEnableGzipHardwareAccelerate() {
1090+
return this.enableGzipHardwareAccelerate;
1091+
}
1092+
10821093
/**
10831094
* @return enableHardwareAccelerate
10841095
*/
@@ -1248,6 +1259,7 @@ public static final class Builder {
12481259
private String enableCustomAuthConfigPush;
12491260
private Boolean enableGenerateRequestId;
12501261
private Boolean enableGzip;
1262+
private Boolean enableGzipHardwareAccelerate;
12511263
private Boolean enableHardwareAccelerate;
12521264
private Boolean enableHttp2;
12531265
private Boolean enableHttp3;
@@ -1283,6 +1295,7 @@ private Builder(Data model) {
12831295
this.enableCustomAuthConfigPush = model.enableCustomAuthConfigPush;
12841296
this.enableGenerateRequestId = model.enableGenerateRequestId;
12851297
this.enableGzip = model.enableGzip;
1298+
this.enableGzipHardwareAccelerate = model.enableGzipHardwareAccelerate;
12861299
this.enableHardwareAccelerate = model.enableHardwareAccelerate;
12871300
this.enableHttp2 = model.enableHttp2;
12881301
this.enableHttp3 = model.enableHttp3;
@@ -1364,6 +1377,14 @@ public Builder enableGzip(Boolean enableGzip) {
13641377
return this;
13651378
}
13661379

1380+
/**
1381+
* EnableGzipHardwareAccelerate.
1382+
*/
1383+
public Builder enableGzipHardwareAccelerate(Boolean enableGzipHardwareAccelerate) {
1384+
this.enableGzipHardwareAccelerate = enableGzipHardwareAccelerate;
1385+
return this;
1386+
}
1387+
13671388
/**
13681389
* EnableHardwareAccelerate.
13691390
*/

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/GetGatewayDomainDetailResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,9 @@ public static class Data extends TeaModel {
240240
@com.aliyun.core.annotation.NameInMap("Id")
241241
private Long id;
242242

243+
@com.aliyun.core.annotation.NameInMap("IsManaged")
244+
private Boolean isManaged;
245+
243246
@com.aliyun.core.annotation.NameInMap("Issuer")
244247
private String issuer;
245248

@@ -276,6 +279,7 @@ private Data(Builder builder) {
276279
this.gmtModified = builder.gmtModified;
277280
this.http2 = builder.http2;
278281
this.id = builder.id;
282+
this.isManaged = builder.isManaged;
279283
this.issuer = builder.issuer;
280284
this.mustHttps = builder.mustHttps;
281285
this.name = builder.name;
@@ -391,6 +395,13 @@ public Long getId() {
391395
return this.id;
392396
}
393397

398+
/**
399+
* @return isManaged
400+
*/
401+
public Boolean getIsManaged() {
402+
return this.isManaged;
403+
}
404+
394405
/**
395406
* @return issuer
396407
*/
@@ -455,6 +466,7 @@ public static final class Builder {
455466
private String gmtModified;
456467
private String http2;
457468
private Long id;
469+
private Boolean isManaged;
458470
private String issuer;
459471
private Boolean mustHttps;
460472
private String name;
@@ -481,6 +493,7 @@ private Builder(Data model) {
481493
this.gmtModified = model.gmtModified;
482494
this.http2 = model.http2;
483495
this.id = model.id;
496+
this.isManaged = model.isManaged;
484497
this.issuer = model.issuer;
485498
this.mustHttps = model.mustHttps;
486499
this.name = model.name;
@@ -649,6 +662,14 @@ public Builder id(Long id) {
649662
return this;
650663
}
651664

665+
/**
666+
* IsManaged.
667+
*/
668+
public Builder isManaged(Boolean isManaged) {
669+
this.isManaged = isManaged;
670+
return this;
671+
}
672+
652673
/**
653674
* <p>The issuer.</p>
654675
*

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/ListGatewayDomainResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,9 @@ public static class Data extends TeaModel {
279279
@com.aliyun.core.annotation.NameInMap("Id")
280280
private Long id;
281281

282+
@com.aliyun.core.annotation.NameInMap("IsManaged")
283+
private Boolean isManaged;
284+
282285
@com.aliyun.core.annotation.NameInMap("MustHttps")
283286
private Boolean mustHttps;
284287

@@ -309,6 +312,7 @@ private Data(Builder builder) {
309312
this.gmtModified = builder.gmtModified;
310313
this.http2 = builder.http2;
311314
this.id = builder.id;
315+
this.isManaged = builder.isManaged;
312316
this.mustHttps = builder.mustHttps;
313317
this.name = builder.name;
314318
this.protocol = builder.protocol;
@@ -382,6 +386,13 @@ public Long getId() {
382386
return this.id;
383387
}
384388

389+
/**
390+
* @return isManaged
391+
*/
392+
public Boolean getIsManaged() {
393+
return this.isManaged;
394+
}
395+
385396
/**
386397
* @return mustHttps
387398
*/
@@ -440,6 +451,7 @@ public static final class Builder {
440451
private String gmtModified;
441452
private String http2;
442453
private Long id;
454+
private Boolean isManaged;
443455
private Boolean mustHttps;
444456
private String name;
445457
private String protocol;
@@ -460,6 +472,7 @@ private Builder(Data model) {
460472
this.gmtModified = model.gmtModified;
461473
this.http2 = model.http2;
462474
this.id = model.id;
475+
this.isManaged = model.isManaged;
463476
this.mustHttps = model.mustHttps;
464477
this.name = model.name;
465478
this.protocol = model.protocol;
@@ -559,6 +572,14 @@ public Builder id(Long id) {
559572
return this;
560573
}
561574

575+
/**
576+
* IsManaged.
577+
*/
578+
public Builder isManaged(Boolean isManaged) {
579+
this.isManaged = isManaged;
580+
return this;
581+
}
582+
562583
/**
563584
* <p>Indicates whether HTTPS is forcefully used.</p>
564585
*

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/ListGatewayZoneResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,11 +273,15 @@ public static class Data extends TeaModel {
273273
@com.aliyun.core.annotation.NameInMap("LocalName")
274274
private String localName;
275275

276+
@com.aliyun.core.annotation.NameInMap("SupportQat")
277+
private Boolean supportQat;
278+
276279
@com.aliyun.core.annotation.NameInMap("ZoneId")
277280
private String zoneId;
278281

279282
private Data(Builder builder) {
280283
this.localName = builder.localName;
284+
this.supportQat = builder.supportQat;
281285
this.zoneId = builder.zoneId;
282286
}
283287

@@ -296,6 +300,13 @@ public String getLocalName() {
296300
return this.localName;
297301
}
298302

303+
/**
304+
* @return supportQat
305+
*/
306+
public Boolean getSupportQat() {
307+
return this.supportQat;
308+
}
309+
299310
/**
300311
* @return zoneId
301312
*/
@@ -305,13 +316,15 @@ public String getZoneId() {
305316

306317
public static final class Builder {
307318
private String localName;
319+
private Boolean supportQat;
308320
private String zoneId;
309321

310322
private Builder() {
311323
}
312324

313325
private Builder(Data model) {
314326
this.localName = model.localName;
327+
this.supportQat = model.supportQat;
315328
this.zoneId = model.zoneId;
316329
}
317330

@@ -326,6 +339,14 @@ public Builder localName(String localName) {
326339
return this;
327340
}
328341

342+
/**
343+
* SupportQat.
344+
*/
345+
public Builder supportQat(Boolean supportQat) {
346+
this.supportQat = supportQat;
347+
return this;
348+
}
349+
329350
/**
330351
* <p>The zone ID.</p>
331352
*

0 commit comments

Comments
 (0)