Skip to content

Commit 43a4570

Browse files
committed
Generated java-async 2020-09-30 for ecd.
1 parent d88a182 commit 43a4570

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

ecd-20200930/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-10 Version: 4.0.35
2+
- Generated java-async 2020-09-30 for ecd.
3+
14
2025-06-03 Version: 4.0.34
25
- Generated java-async 2020-09-30 for ecd.
36

ecd-20200930/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-ecd20200930</artifactId>
6-
<version>4.0.34</version>
6+
<version>4.0.35</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ecd20200930</name>
99
<description>Alibaba Cloud ecd (20200930) Async SDK for Java

ecd-20200930/src/main/java/com/aliyun/sdk/service/ecd20200930/models/DescribeDesktopTypesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ public class DescribeDesktopTypesRequest extends Request {
7878
@com.aliyun.core.annotation.NameInMap("Scope")
7979
private String scope;
8080

81+
@com.aliyun.core.annotation.Query
82+
@com.aliyun.core.annotation.NameInMap("ScopeSet")
83+
private java.util.List<String> scopeSet;
84+
8185
@com.aliyun.core.annotation.Query
8286
@com.aliyun.core.annotation.NameInMap("SortType")
8387
private String sortType;
@@ -107,6 +111,7 @@ private DescribeDesktopTypesRequest(Builder builder) {
107111
this.orderType = builder.orderType;
108112
this.regionId = builder.regionId;
109113
this.scope = builder.scope;
114+
this.scopeSet = builder.scopeSet;
110115
this.sortType = builder.sortType;
111116
this.supportMinSessionCount = builder.supportMinSessionCount;
112117
this.zoneId = builder.zoneId;
@@ -230,6 +235,13 @@ public String getScope() {
230235
return this.scope;
231236
}
232237

238+
/**
239+
* @return scopeSet
240+
*/
241+
public java.util.List<String> getScopeSet() {
242+
return this.scopeSet;
243+
}
244+
233245
/**
234246
* @return sortType
235247
*/
@@ -267,6 +279,7 @@ public static final class Builder extends Request.Builder<DescribeDesktopTypesRe
267279
private String orderType;
268280
private String regionId;
269281
private String scope;
282+
private java.util.List<String> scopeSet;
270283
private String sortType;
271284
private Integer supportMinSessionCount;
272285
private String zoneId;
@@ -292,6 +305,7 @@ private Builder(DescribeDesktopTypesRequest request) {
292305
this.orderType = request.orderType;
293306
this.regionId = request.regionId;
294307
this.scope = request.scope;
308+
this.scopeSet = request.scopeSet;
295309
this.sortType = request.sortType;
296310
this.supportMinSessionCount = request.supportMinSessionCount;
297311
this.zoneId = request.zoneId;
@@ -535,6 +549,15 @@ public Builder scope(String scope) {
535549
return this;
536550
}
537551

552+
/**
553+
* ScopeSet.
554+
*/
555+
public Builder scopeSet(java.util.List<String> scopeSet) {
556+
this.putQueryParameter("ScopeSet", scopeSet);
557+
this.scopeSet = scopeSet;
558+
return this;
559+
}
560+
538561
/**
539562
* <p>The sorting order.</p>
540563
* <p>Valid values:</p>

0 commit comments

Comments
 (0)