File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @alicloud/ecd20200930" ,
3
- "version" : " 4.7.1 " ,
3
+ "version" : " 4.7.2 " ,
4
4
"description" : " " ,
5
5
"main" : " dist/client.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -6782,6 +6782,10 @@ export default class Client extends OpenApi {
6782
6782
query["Scope"] = request.scope;
6783
6783
}
6784
6784
6785
+ if (!$dara.isNull(request.scopeSet)) {
6786
+ query["ScopeSet"] = request.scopeSet;
6787
+ }
6788
+
6785
6789
if (!$dara.isNull(request.sortType)) {
6786
6790
query["SortType"] = request.sortType;
6787
6791
}
Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ export class DescribeDesktopTypesRequest extends $dara.Model {
180
180
* FastBuy
181
181
*/
182
182
scope ?: string ;
183
+ scopeSet ?: string [ ] ;
183
184
/**
184
185
* @remarks
185
186
* The sorting order.
@@ -226,6 +227,7 @@ export class DescribeDesktopTypesRequest extends $dara.Model {
226
227
orderType : 'OrderType' ,
227
228
regionId : 'RegionId' ,
228
229
scope : 'Scope' ,
230
+ scopeSet : 'ScopeSet' ,
229
231
sortType : 'SortType' ,
230
232
supportMinSessionCount : 'SupportMinSessionCount' ,
231
233
zoneId : 'ZoneId' ,
@@ -249,6 +251,7 @@ export class DescribeDesktopTypesRequest extends $dara.Model {
249
251
orderType : 'string' ,
250
252
regionId : 'string' ,
251
253
scope : 'string' ,
254
+ scopeSet : { 'type' : 'array' , 'itemType' : 'string' } ,
252
255
sortType : 'string' ,
253
256
supportMinSessionCount : 'number' ,
254
257
zoneId : 'string' ,
@@ -259,6 +262,9 @@ export class DescribeDesktopTypesRequest extends $dara.Model {
259
262
if ( Array . isArray ( this . desktopTypeIdList ) ) {
260
263
$dara . Model . validateArray ( this . desktopTypeIdList ) ;
261
264
}
265
+ if ( Array . isArray ( this . scopeSet ) ) {
266
+ $dara . Model . validateArray ( this . scopeSet ) ;
267
+ }
262
268
super . validate ( ) ;
263
269
}
264
270
You can’t perform that action at this time.
0 commit comments