Skip to content

Commit 9a78c8b

Browse files
committed
Generated java-async 2021-09-01 for appstream-center.
1 parent 5be1b9c commit 9a78c8b

File tree

4 files changed

+228
-1
lines changed

4 files changed

+228
-1
lines changed

appstream-center-20210901/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-24 Version: 2.0.10
2+
- Generated java-async 2021-09-01 for appstream-center.
3+
14
2025-04-11 Version: 2.0.9
25
- Generated java-async 2021-09-01 for appstream-center.
36

appstream-center-20210901/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-appstream_center20210901</artifactId>
6-
<version>2.0.9</version>
6+
<version>2.0.10</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-appstream_center20210901</name>
99
<description>Alibaba Cloud appstream-center (20210901) Async SDK for Java

appstream-center-20210901/src/main/java/com/aliyun/sdk/service/appstream_center20210901/models/ListAppInstanceGroupRequest.java

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ public class ListAppInstanceGroupRequest extends Request {
6464
@com.aliyun.core.annotation.NameInMap("Status")
6565
private java.util.List<String> status;
6666

67+
@com.aliyun.core.annotation.Query
68+
@com.aliyun.core.annotation.NameInMap("Tag")
69+
private java.util.List<Tag> tag;
70+
6771
private ListAppInstanceGroupRequest(Builder builder) {
6872
super(builder);
6973
this.appCenterImageId = builder.appCenterImageId;
@@ -77,6 +81,7 @@ private ListAppInstanceGroupRequest(Builder builder) {
7781
this.productType = builder.productType;
7882
this.regionId = builder.regionId;
7983
this.status = builder.status;
84+
this.tag = builder.tag;
8085
}
8186

8287
public static Builder builder() {
@@ -169,6 +174,13 @@ public java.util.List<String> getStatus() {
169174
return this.status;
170175
}
171176

177+
/**
178+
* @return tag
179+
*/
180+
public java.util.List<Tag> getTag() {
181+
return this.tag;
182+
}
183+
172184
public static final class Builder extends Request.Builder<ListAppInstanceGroupRequest, Builder> {
173185
private String appCenterImageId;
174186
private String appInstanceGroupId;
@@ -181,6 +193,7 @@ public static final class Builder extends Request.Builder<ListAppInstanceGroupRe
181193
private String productType;
182194
private String regionId;
183195
private java.util.List<String> status;
196+
private java.util.List<Tag> tag;
184197

185198
private Builder() {
186199
super();
@@ -199,6 +212,7 @@ private Builder(ListAppInstanceGroupRequest request) {
199212
this.productType = request.productType;
200213
this.regionId = request.regionId;
201214
this.status = request.status;
215+
this.tag = request.tag;
202216
}
203217

204218
/**
@@ -334,11 +348,95 @@ public Builder status(java.util.List<String> status) {
334348
return this;
335349
}
336350

351+
/**
352+
* Tag.
353+
*/
354+
public Builder tag(java.util.List<Tag> tag) {
355+
this.putQueryParameter("Tag", tag);
356+
this.tag = tag;
357+
return this;
358+
}
359+
337360
@Override
338361
public ListAppInstanceGroupRequest build() {
339362
return new ListAppInstanceGroupRequest(this);
340363
}
341364

342365
}
343366

367+
/**
368+
*
369+
* {@link ListAppInstanceGroupRequest} extends {@link TeaModel}
370+
*
371+
* <p>ListAppInstanceGroupRequest</p>
372+
*/
373+
public static class Tag extends TeaModel {
374+
@com.aliyun.core.annotation.NameInMap("Key")
375+
private String key;
376+
377+
@com.aliyun.core.annotation.NameInMap("Value")
378+
private String value;
379+
380+
private Tag(Builder builder) {
381+
this.key = builder.key;
382+
this.value = builder.value;
383+
}
384+
385+
public static Builder builder() {
386+
return new Builder();
387+
}
388+
389+
public static Tag create() {
390+
return builder().build();
391+
}
392+
393+
/**
394+
* @return key
395+
*/
396+
public String getKey() {
397+
return this.key;
398+
}
399+
400+
/**
401+
* @return value
402+
*/
403+
public String getValue() {
404+
return this.value;
405+
}
406+
407+
public static final class Builder {
408+
private String key;
409+
private String value;
410+
411+
private Builder() {
412+
}
413+
414+
private Builder(Tag model) {
415+
this.key = model.key;
416+
this.value = model.value;
417+
}
418+
419+
/**
420+
* Key.
421+
*/
422+
public Builder key(String key) {
423+
this.key = key;
424+
return this;
425+
}
426+
427+
/**
428+
* Value.
429+
*/
430+
public Builder value(String value) {
431+
this.value = value;
432+
return this;
433+
}
434+
435+
public Tag build() {
436+
return new Tag(this);
437+
}
438+
439+
}
440+
441+
}
344442
}

appstream-center-20210901/src/main/java/com/aliyun/sdk/service/appstream_center20210901/models/ListAppInstanceGroupResponseBody.java

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1226,6 +1226,111 @@ public ResourceTags build() {
12261226

12271227
}
12281228

1229+
}
1230+
/**
1231+
*
1232+
* {@link ListAppInstanceGroupResponseBody} extends {@link TeaModel}
1233+
*
1234+
* <p>ListAppInstanceGroupResponseBody</p>
1235+
*/
1236+
public static class Tags extends TeaModel {
1237+
@com.aliyun.core.annotation.NameInMap("Key")
1238+
private String key;
1239+
1240+
@com.aliyun.core.annotation.NameInMap("Scope")
1241+
private String scope;
1242+
1243+
@com.aliyun.core.annotation.NameInMap("Value")
1244+
private String value;
1245+
1246+
private Tags(Builder builder) {
1247+
this.key = builder.key;
1248+
this.scope = builder.scope;
1249+
this.value = builder.value;
1250+
}
1251+
1252+
public static Builder builder() {
1253+
return new Builder();
1254+
}
1255+
1256+
public static Tags create() {
1257+
return builder().build();
1258+
}
1259+
1260+
/**
1261+
* @return key
1262+
*/
1263+
public String getKey() {
1264+
return this.key;
1265+
}
1266+
1267+
/**
1268+
* @return scope
1269+
*/
1270+
public String getScope() {
1271+
return this.scope;
1272+
}
1273+
1274+
/**
1275+
* @return value
1276+
*/
1277+
public String getValue() {
1278+
return this.value;
1279+
}
1280+
1281+
public static final class Builder {
1282+
private String key;
1283+
private String scope;
1284+
private String value;
1285+
1286+
private Builder() {
1287+
}
1288+
1289+
private Builder(Tags model) {
1290+
this.key = model.key;
1291+
this.scope = model.scope;
1292+
this.value = model.value;
1293+
}
1294+
1295+
/**
1296+
* <p>The tag key.</p>
1297+
*
1298+
* <strong>example:</strong>
1299+
* <p>department</p>
1300+
*/
1301+
public Builder key(String key) {
1302+
this.key = key;
1303+
return this;
1304+
}
1305+
1306+
/**
1307+
* <p>The tag type. Valid values: Custom System</p>
1308+
*
1309+
* <strong>example:</strong>
1310+
* <p>Custom</p>
1311+
*/
1312+
public Builder scope(String scope) {
1313+
this.scope = scope;
1314+
return this;
1315+
}
1316+
1317+
/**
1318+
* <p>The tag value.</p>
1319+
*
1320+
* <strong>example:</strong>
1321+
* <p>design</p>
1322+
*/
1323+
public Builder value(String value) {
1324+
this.value = value;
1325+
return this;
1326+
}
1327+
1328+
public Tags build() {
1329+
return new Tags(this);
1330+
}
1331+
1332+
}
1333+
12291334
}
12301335
/**
12311336
*
@@ -1333,6 +1438,9 @@ public static class AppInstanceGroupModels extends TeaModel {
13331438
@com.aliyun.core.annotation.NameInMap("Status")
13341439
private String status;
13351440

1441+
@com.aliyun.core.annotation.NameInMap("Tags")
1442+
private java.util.List<Tags> tags;
1443+
13361444
private AppInstanceGroupModels(Builder builder) {
13371445
this.amount = builder.amount;
13381446
this.appCenterImageId = builder.appCenterImageId;
@@ -1367,6 +1475,7 @@ private AppInstanceGroupModels(Builder builder) {
13671475
this.skipUserAuthCheck = builder.skipUserAuthCheck;
13681476
this.specId = builder.specId;
13691477
this.status = builder.status;
1478+
this.tags = builder.tags;
13701479
}
13711480

13721481
public static Builder builder() {
@@ -1608,6 +1717,13 @@ public String getStatus() {
16081717
return this.status;
16091718
}
16101719

1720+
/**
1721+
* @return tags
1722+
*/
1723+
public java.util.List<Tags> getTags() {
1724+
return this.tags;
1725+
}
1726+
16111727
public static final class Builder {
16121728
private Integer amount;
16131729
private String appCenterImageId;
@@ -1642,6 +1758,7 @@ public static final class Builder {
16421758
private Boolean skipUserAuthCheck;
16431759
private String specId;
16441760
private String status;
1761+
private java.util.List<Tags> tags;
16451762

16461763
private Builder() {
16471764
}
@@ -1680,6 +1797,7 @@ private Builder(AppInstanceGroupModels model) {
16801797
this.skipUserAuthCheck = model.skipUserAuthCheck;
16811798
this.specId = model.specId;
16821799
this.status = model.status;
1800+
this.tags = model.tags;
16831801
}
16841802

16851803
/**
@@ -2064,6 +2182,14 @@ public Builder status(String status) {
20642182
return this;
20652183
}
20662184

2185+
/**
2186+
* Tags.
2187+
*/
2188+
public Builder tags(java.util.List<Tags> tags) {
2189+
this.tags = tags;
2190+
return this;
2191+
}
2192+
20672193
public AppInstanceGroupModels build() {
20682194
return new AppInstanceGroupModels(this);
20692195
}

0 commit comments

Comments
 (0)