Skip to content

Commit e5d283f

Browse files
committed
Generated java-async 2019-05-06 for sae.
1 parent 4d056eb commit e5d283f

File tree

7 files changed

+588
-1
lines changed

7 files changed

+588
-1
lines changed

sae-20190506/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-02-27 Version: 1.21.32
2+
- Generated java-async 2019-05-06 for sae.
3+
14
2025-02-13 Version: 1.21.31
25
- Generated java-async 2019-05-06 for sae.
36

sae-20190506/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-sae20190506</artifactId>
6-
<version>1.21.31</version>
6+
<version>1.21.32</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-sae20190506</name>
99
<description>Alibaba Cloud sae (20190506) Async SDK for Java

sae-20190506/src/main/java/com/aliyun/sdk/service/sae20190506/models/DescribeApplicationConfigResponseBody.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,9 @@ public static class Data extends TeaModel {
11561156
@com.aliyun.core.annotation.NameInMap("BatchWaitTime")
11571157
private Integer batchWaitTime;
11581158

1159+
@com.aliyun.core.annotation.NameInMap("ClusterId")
1160+
private String clusterId;
1161+
11591162
@com.aliyun.core.annotation.NameInMap("Command")
11601163
private String command;
11611164

@@ -1379,6 +1382,7 @@ private Data(Builder builder) {
13791382
this.associateEip = builder.associateEip;
13801383
this.baseAppId = builder.baseAppId;
13811384
this.batchWaitTime = builder.batchWaitTime;
1385+
this.clusterId = builder.clusterId;
13821386
this.command = builder.command;
13831387
this.commandArgs = builder.commandArgs;
13841388
this.configMapMountDesc = builder.configMapMountDesc;
@@ -1523,6 +1527,13 @@ public Integer getBatchWaitTime() {
15231527
return this.batchWaitTime;
15241528
}
15251529

1530+
/**
1531+
* @return clusterId
1532+
*/
1533+
public String getClusterId() {
1534+
return this.clusterId;
1535+
}
1536+
15261537
/**
15271538
* @return command
15281539
*/
@@ -2030,6 +2041,7 @@ public static final class Builder {
20302041
private Boolean associateEip;
20312042
private String baseAppId;
20322043
private Integer batchWaitTime;
2044+
private String clusterId;
20332045
private String command;
20342046
private String commandArgs;
20352047
private java.util.List<ConfigMapMountDesc> configMapMountDesc;
@@ -2199,6 +2211,14 @@ public Builder batchWaitTime(Integer batchWaitTime) {
21992211
return this;
22002212
}
22012213

2214+
/**
2215+
* ClusterId.
2216+
*/
2217+
public Builder clusterId(String clusterId) {
2218+
this.clusterId = clusterId;
2219+
return this;
2220+
}
2221+
22022222
/**
22032223
* <p>The command that is used to start the image. The command must be an existing executable object in the container. Example:</p>
22042224
* <pre><code>

sae-20190506/src/main/java/com/aliyun/sdk/service/sae20190506/models/DescribeApplicationSlbsResponseBody.java

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,9 @@ public static class Internet extends TeaModel {
215215
@com.aliyun.core.annotation.NameInMap("CookieTimeout")
216216
private Integer cookieTimeout;
217217

218+
@com.aliyun.core.annotation.NameInMap("CreateTime")
219+
private Long createTime;
220+
218221
@com.aliyun.core.annotation.NameInMap("HttpsCaCertId")
219222
private String httpsCaCertId;
220223

@@ -239,6 +242,7 @@ public static class Internet extends TeaModel {
239242
private Internet(Builder builder) {
240243
this.cookie = builder.cookie;
241244
this.cookieTimeout = builder.cookieTimeout;
245+
this.createTime = builder.createTime;
242246
this.httpsCaCertId = builder.httpsCaCertId;
243247
this.httpsCertId = builder.httpsCertId;
244248
this.port = builder.port;
@@ -270,6 +274,13 @@ public Integer getCookieTimeout() {
270274
return this.cookieTimeout;
271275
}
272276

277+
/**
278+
* @return createTime
279+
*/
280+
public Long getCreateTime() {
281+
return this.createTime;
282+
}
283+
273284
/**
274285
* @return httpsCaCertId
275286
*/
@@ -322,6 +333,7 @@ public Integer getTargetPort() {
322333
public static final class Builder {
323334
private String cookie;
324335
private Integer cookieTimeout;
336+
private Long createTime;
325337
private String httpsCaCertId;
326338
private String httpsCertId;
327339
private Integer port;
@@ -346,6 +358,14 @@ public Builder cookieTimeout(Integer cookieTimeout) {
346358
return this;
347359
}
348360

361+
/**
362+
* CreateTime.
363+
*/
364+
public Builder createTime(Long createTime) {
365+
this.createTime = createTime;
366+
return this;
367+
}
368+
349369
/**
350370
* HttpsCaCertId.
351371
*/
@@ -434,6 +454,9 @@ public static class Intranet extends TeaModel {
434454
@com.aliyun.core.annotation.NameInMap("CookieTimeout")
435455
private Integer cookieTimeout;
436456

457+
@com.aliyun.core.annotation.NameInMap("CreateTime")
458+
private Long createTime;
459+
437460
@com.aliyun.core.annotation.NameInMap("HttpsCaCertId")
438461
private String httpsCaCertId;
439462

@@ -458,6 +481,7 @@ public static class Intranet extends TeaModel {
458481
private Intranet(Builder builder) {
459482
this.cookie = builder.cookie;
460483
this.cookieTimeout = builder.cookieTimeout;
484+
this.createTime = builder.createTime;
461485
this.httpsCaCertId = builder.httpsCaCertId;
462486
this.httpsCertId = builder.httpsCertId;
463487
this.port = builder.port;
@@ -489,6 +513,13 @@ public Integer getCookieTimeout() {
489513
return this.cookieTimeout;
490514
}
491515

516+
/**
517+
* @return createTime
518+
*/
519+
public Long getCreateTime() {
520+
return this.createTime;
521+
}
522+
492523
/**
493524
* @return httpsCaCertId
494525
*/
@@ -541,6 +572,7 @@ public Integer getTargetPort() {
541572
public static final class Builder {
542573
private String cookie;
543574
private Integer cookieTimeout;
575+
private Long createTime;
544576
private String httpsCaCertId;
545577
private String httpsCertId;
546578
private Integer port;
@@ -565,6 +597,14 @@ public Builder cookieTimeout(Integer cookieTimeout) {
565597
return this;
566598
}
567599

600+
/**
601+
* CreateTime.
602+
*/
603+
public Builder createTime(Long createTime) {
604+
this.createTime = createTime;
605+
return this;
606+
}
607+
568608
/**
569609
* HttpsCaCertId.
570610
*/

sae-20190506/src/main/java/com/aliyun/sdk/service/sae20190506/models/DescribeConfigurationPriceRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ public class DescribeConfigurationPriceRequest extends Request {
2727
@com.aliyun.core.annotation.Validation(required = true)
2828
private Integer memory;
2929

30+
@com.aliyun.core.annotation.Query
31+
@com.aliyun.core.annotation.NameInMap("ResourceType")
32+
private String resourceType;
33+
3034
@com.aliyun.core.annotation.Query
3135
@com.aliyun.core.annotation.NameInMap("Workload")
3236
private String workload;
@@ -35,6 +39,7 @@ private DescribeConfigurationPriceRequest(Builder builder) {
3539
super(builder);
3640
this.cpu = builder.cpu;
3741
this.memory = builder.memory;
42+
this.resourceType = builder.resourceType;
3843
this.workload = builder.workload;
3944
}
4045

@@ -65,6 +70,13 @@ public Integer getMemory() {
6570
return this.memory;
6671
}
6772

73+
/**
74+
* @return resourceType
75+
*/
76+
public String getResourceType() {
77+
return this.resourceType;
78+
}
79+
6880
/**
6981
* @return workload
7082
*/
@@ -75,6 +87,7 @@ public String getWorkload() {
7587
public static final class Builder extends Request.Builder<DescribeConfigurationPriceRequest, Builder> {
7688
private Integer cpu;
7789
private Integer memory;
90+
private String resourceType;
7891
private String workload;
7992

8093
private Builder() {
@@ -85,6 +98,7 @@ private Builder(DescribeConfigurationPriceRequest request) {
8598
super(request);
8699
this.cpu = request.cpu;
87100
this.memory = request.memory;
101+
this.resourceType = request.resourceType;
88102
this.workload = request.workload;
89103
}
90104

@@ -112,6 +126,15 @@ public Builder memory(Integer memory) {
112126
return this;
113127
}
114128

129+
/**
130+
* ResourceType.
131+
*/
132+
public Builder resourceType(String resourceType) {
133+
this.putQueryParameter("ResourceType", resourceType);
134+
this.resourceType = resourceType;
135+
return this;
136+
}
137+
115138
/**
116139
* Workload.
117140
*/

sae-20190506/src/main/java/com/aliyun/sdk/service/sae20190506/models/ListApplicationsResponseBody.java

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,9 @@ public static class Children extends TeaModel {
326326
@com.aliyun.core.annotation.NameInMap("AppName")
327327
private String appName;
328328

329+
@com.aliyun.core.annotation.NameInMap("AppType")
330+
private String appType;
331+
329332
@com.aliyun.core.annotation.NameInMap("BaseAppId")
330333
private String baseAppId;
331334

@@ -367,6 +370,7 @@ private Children(Builder builder) {
367370
this.appDescription = builder.appDescription;
368371
this.appId = builder.appId;
369372
this.appName = builder.appName;
373+
this.appType = builder.appType;
370374
this.baseAppId = builder.baseAppId;
371375
this.cpu = builder.cpu;
372376
this.instances = builder.instances;
@@ -417,6 +421,13 @@ public String getAppName() {
417421
return this.appName;
418422
}
419423

424+
/**
425+
* @return appType
426+
*/
427+
public String getAppType() {
428+
return this.appType;
429+
}
430+
420431
/**
421432
* @return baseAppId
422433
*/
@@ -506,6 +517,7 @@ public static final class Builder {
506517
private String appDescription;
507518
private String appId;
508519
private String appName;
520+
private String appType;
509521
private String baseAppId;
510522
private Integer cpu;
511523
private Integer instances;
@@ -551,6 +563,14 @@ public Builder appName(String appName) {
551563
return this;
552564
}
553565

566+
/**
567+
* AppType.
568+
*/
569+
public Builder appType(String appType) {
570+
this.appType = appType;
571+
return this;
572+
}
573+
554574
/**
555575
* BaseAppId.
556576
*/
@@ -746,6 +766,9 @@ public static class Applications extends TeaModel {
746766
@com.aliyun.core.annotation.NameInMap("AppName")
747767
private String appName;
748768

769+
@com.aliyun.core.annotation.NameInMap("AppType")
770+
private String appType;
771+
749772
@com.aliyun.core.annotation.NameInMap("BaseAppId")
750773
private String baseAppId;
751774

@@ -793,6 +816,7 @@ private Applications(Builder builder) {
793816
this.appDescription = builder.appDescription;
794817
this.appId = builder.appId;
795818
this.appName = builder.appName;
819+
this.appType = builder.appType;
796820
this.baseAppId = builder.baseAppId;
797821
this.children = builder.children;
798822
this.cpu = builder.cpu;
@@ -845,6 +869,13 @@ public String getAppName() {
845869
return this.appName;
846870
}
847871

872+
/**
873+
* @return appType
874+
*/
875+
public String getAppType() {
876+
return this.appType;
877+
}
878+
848879
/**
849880
* @return baseAppId
850881
*/
@@ -948,6 +979,7 @@ public static final class Builder {
948979
private String appDescription;
949980
private String appId;
950981
private String appName;
982+
private String appType;
951983
private String baseAppId;
952984
private java.util.List<Children> children;
953985
private Integer cpu;
@@ -1011,6 +1043,14 @@ public Builder appName(String appName) {
10111043
return this;
10121044
}
10131045

1046+
/**
1047+
* AppType.
1048+
*/
1049+
public Builder appType(String appType) {
1050+
this.appType = appType;
1051+
return this;
1052+
}
1053+
10141054
/**
10151055
* BaseAppId.
10161056
*/

0 commit comments

Comments
 (0)