@alicloud/ecd20200930 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2 -0
- package/dist/client.js +10 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +14 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -15240,18 +15240,22 @@ export class RenewNetworkPackagesResponse extends $tea.Model {
|
|
|
15240
15240
|
|
|
15241
15241
|
export class ResetDesktopsRequest extends $tea.Model {
|
|
15242
15242
|
desktopGroupId?: string;
|
|
15243
|
+
desktopGroupIds?: string[];
|
|
15243
15244
|
desktopId?: string[];
|
|
15244
15245
|
imageId?: string;
|
|
15245
15246
|
payType?: string;
|
|
15246
15247
|
regionId?: string;
|
|
15248
|
+
resetScope?: string;
|
|
15247
15249
|
resetType?: string;
|
|
15248
15250
|
static names(): { [key: string]: string } {
|
|
15249
15251
|
return {
|
|
15250
15252
|
desktopGroupId: 'DesktopGroupId',
|
|
15253
|
+
desktopGroupIds: 'DesktopGroupIds',
|
|
15251
15254
|
desktopId: 'DesktopId',
|
|
15252
15255
|
imageId: 'ImageId',
|
|
15253
15256
|
payType: 'PayType',
|
|
15254
15257
|
regionId: 'RegionId',
|
|
15258
|
+
resetScope: 'ResetScope',
|
|
15255
15259
|
resetType: 'ResetType',
|
|
15256
15260
|
};
|
|
15257
15261
|
}
|
|
@@ -15259,10 +15263,12 @@ export class ResetDesktopsRequest extends $tea.Model {
|
|
|
15259
15263
|
static types(): { [key: string]: any } {
|
|
15260
15264
|
return {
|
|
15261
15265
|
desktopGroupId: 'string',
|
|
15266
|
+
desktopGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
15262
15267
|
desktopId: { 'type': 'array', 'itemType': 'string' },
|
|
15263
15268
|
imageId: 'string',
|
|
15264
15269
|
payType: 'string',
|
|
15265
15270
|
regionId: 'string',
|
|
15271
|
+
resetScope: 'string',
|
|
15266
15272
|
resetType: 'string',
|
|
15267
15273
|
};
|
|
15268
15274
|
}
|
|
@@ -32474,6 +32480,10 @@ export default class Client extends OpenApi {
|
|
|
32474
32480
|
query["DesktopGroupId"] = request.desktopGroupId;
|
|
32475
32481
|
}
|
|
32476
32482
|
|
|
32483
|
+
if (!Util.isUnset(request.desktopGroupIds)) {
|
|
32484
|
+
query["DesktopGroupIds"] = request.desktopGroupIds;
|
|
32485
|
+
}
|
|
32486
|
+
|
|
32477
32487
|
if (!Util.isUnset(request.desktopId)) {
|
|
32478
32488
|
query["DesktopId"] = request.desktopId;
|
|
32479
32489
|
}
|
|
@@ -32490,6 +32500,10 @@ export default class Client extends OpenApi {
|
|
|
32490
32500
|
query["RegionId"] = request.regionId;
|
|
32491
32501
|
}
|
|
32492
32502
|
|
|
32503
|
+
if (!Util.isUnset(request.resetScope)) {
|
|
32504
|
+
query["ResetScope"] = request.resetScope;
|
|
32505
|
+
}
|
|
32506
|
+
|
|
32493
32507
|
if (!Util.isUnset(request.resetType)) {
|
|
32494
32508
|
query["ResetType"] = request.resetType;
|
|
32495
32509
|
}
|