@@ -78,6 +78,10 @@ public class DescribeDesktopTypesRequest extends Request {
78
78
@ com .aliyun .core .annotation .NameInMap ("Scope" )
79
79
private String scope ;
80
80
81
+ @ com .aliyun .core .annotation .Query
82
+ @ com .aliyun .core .annotation .NameInMap ("ScopeSet" )
83
+ private java .util .List <String > scopeSet ;
84
+
81
85
@ com .aliyun .core .annotation .Query
82
86
@ com .aliyun .core .annotation .NameInMap ("SortType" )
83
87
private String sortType ;
@@ -107,6 +111,7 @@ private DescribeDesktopTypesRequest(Builder builder) {
107
111
this .orderType = builder .orderType ;
108
112
this .regionId = builder .regionId ;
109
113
this .scope = builder .scope ;
114
+ this .scopeSet = builder .scopeSet ;
110
115
this .sortType = builder .sortType ;
111
116
this .supportMinSessionCount = builder .supportMinSessionCount ;
112
117
this .zoneId = builder .zoneId ;
@@ -230,6 +235,13 @@ public String getScope() {
230
235
return this .scope ;
231
236
}
232
237
238
+ /**
239
+ * @return scopeSet
240
+ */
241
+ public java .util .List <String > getScopeSet () {
242
+ return this .scopeSet ;
243
+ }
244
+
233
245
/**
234
246
* @return sortType
235
247
*/
@@ -267,6 +279,7 @@ public static final class Builder extends Request.Builder<DescribeDesktopTypesRe
267
279
private String orderType ;
268
280
private String regionId ;
269
281
private String scope ;
282
+ private java .util .List <String > scopeSet ;
270
283
private String sortType ;
271
284
private Integer supportMinSessionCount ;
272
285
private String zoneId ;
@@ -292,6 +305,7 @@ private Builder(DescribeDesktopTypesRequest request) {
292
305
this .orderType = request .orderType ;
293
306
this .regionId = request .regionId ;
294
307
this .scope = request .scope ;
308
+ this .scopeSet = request .scopeSet ;
295
309
this .sortType = request .sortType ;
296
310
this .supportMinSessionCount = request .supportMinSessionCount ;
297
311
this .zoneId = request .zoneId ;
@@ -535,6 +549,15 @@ public Builder scope(String scope) {
535
549
return this ;
536
550
}
537
551
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
+
538
561
/**
539
562
* <p>The sorting order.</p>
540
563
* <p>Valid values:</p>
0 commit comments