@alicloud/ecd20200930 4.5.1 → 4.5.2
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 +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -26982,6 +26982,7 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
26982
26982
|
* 123456789
|
|
26983
26983
|
*/
|
|
26984
26984
|
endUserId?: string[];
|
|
26985
|
+
extendInfo?: string;
|
|
26985
26986
|
/**
|
|
26986
26987
|
* @remarks
|
|
26987
26988
|
* The ID of the cloud computer pool.
|
|
@@ -27200,6 +27201,7 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
27200
27201
|
desktopTimers: 'DesktopTimers',
|
|
27201
27202
|
directoryId: 'DirectoryId',
|
|
27202
27203
|
endUserId: 'EndUserId',
|
|
27204
|
+
extendInfo: 'ExtendInfo',
|
|
27203
27205
|
groupId: 'GroupId',
|
|
27204
27206
|
hostname: 'Hostname',
|
|
27205
27207
|
monthDesktopSetting: 'MonthDesktopSetting',
|
|
@@ -27238,6 +27240,7 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
27238
27240
|
desktopTimers: { 'type': 'array', 'itemType': CreateDesktopsRequestDesktopTimers },
|
|
27239
27241
|
directoryId: 'string',
|
|
27240
27242
|
endUserId: { 'type': 'array', 'itemType': 'string' },
|
|
27243
|
+
extendInfo: 'string',
|
|
27241
27244
|
groupId: 'string',
|
|
27242
27245
|
hostname: 'string',
|
|
27243
27246
|
monthDesktopSetting: CreateDesktopsRequestMonthDesktopSetting,
|
|
@@ -27433,6 +27436,7 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
27433
27436
|
* 123456789
|
|
27434
27437
|
*/
|
|
27435
27438
|
endUserId?: string[];
|
|
27439
|
+
extendInfo?: string;
|
|
27436
27440
|
/**
|
|
27437
27441
|
* @remarks
|
|
27438
27442
|
* The ID of the cloud computer pool.
|
|
@@ -27651,6 +27655,7 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
27651
27655
|
desktopTimers: 'DesktopTimers',
|
|
27652
27656
|
directoryId: 'DirectoryId',
|
|
27653
27657
|
endUserId: 'EndUserId',
|
|
27658
|
+
extendInfo: 'ExtendInfo',
|
|
27654
27659
|
groupId: 'GroupId',
|
|
27655
27660
|
hostname: 'Hostname',
|
|
27656
27661
|
monthDesktopSetting: 'MonthDesktopSetting',
|
|
@@ -27689,6 +27694,7 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
27689
27694
|
desktopTimers: { 'type': 'array', 'itemType': CreateDesktopsShrinkRequestDesktopTimers },
|
|
27690
27695
|
directoryId: 'string',
|
|
27691
27696
|
endUserId: { 'type': 'array', 'itemType': 'string' },
|
|
27697
|
+
extendInfo: 'string',
|
|
27692
27698
|
groupId: 'string',
|
|
27693
27699
|
hostname: 'string',
|
|
27694
27700
|
monthDesktopSetting: CreateDesktopsShrinkRequestMonthDesktopSetting,
|
|
@@ -63550,6 +63556,10 @@ export default class Client extends OpenApi {
|
|
|
63550
63556
|
query["EndUserId"] = request.endUserId;
|
|
63551
63557
|
}
|
|
63552
63558
|
|
|
63559
|
+
if (!$dara.isNull(request.extendInfo)) {
|
|
63560
|
+
query["ExtendInfo"] = request.extendInfo;
|
|
63561
|
+
}
|
|
63562
|
+
|
|
63553
63563
|
if (!$dara.isNull(request.groupId)) {
|
|
63554
63564
|
query["GroupId"] = request.groupId;
|
|
63555
63565
|
}
|