@alicloud/ecd20200930 4.11.3 → 4.11.4
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.js +3 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeDesktopInfoRequest.d.ts +1 -0
- package/dist/models/DescribeDesktopInfoRequest.js +2 -0
- package/dist/models/DescribeDesktopInfoRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +4 -0
- package/src/models/DescribeDesktopInfoRequest.ts +3 -0
|
@@ -5,6 +5,7 @@ export declare class DescribeDesktopInfoRequest extends $dara.Model {
|
|
|
5
5
|
* The IDs of the cloud computers. You can specify 1 to 100 IDs.
|
|
6
6
|
*/
|
|
7
7
|
desktopId?: string[];
|
|
8
|
+
needExtraInfo?: boolean;
|
|
8
9
|
/**
|
|
9
10
|
* @remarks
|
|
10
11
|
* The ID of the region. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the regions supported by Elastic Desktop Service.
|
|
@@ -40,12 +40,14 @@ class DescribeDesktopInfoRequest extends $dara.Model {
|
|
|
40
40
|
static names() {
|
|
41
41
|
return {
|
|
42
42
|
desktopId: 'DesktopId',
|
|
43
|
+
needExtraInfo: 'NeedExtraInfo',
|
|
43
44
|
regionId: 'RegionId',
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
static types() {
|
|
47
48
|
return {
|
|
48
49
|
desktopId: { 'type': 'array', 'itemType': 'string' },
|
|
50
|
+
needExtraInfo: 'boolean',
|
|
49
51
|
regionId: 'string',
|
|
50
52
|
};
|
|
51
53
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeDesktopInfoRequest.js","sourceRoot":"","sources":["../../src/models/DescribeDesktopInfoRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeDesktopInfoRequest.js","sourceRoot":"","sources":["../../src/models/DescribeDesktopInfoRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;IAiBzD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;YAC9B,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACpD,aAAa,EAAE,SAAS;YACxB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;YACjC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3CD,gEA2CC"}
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -7551,6 +7551,10 @@ export default class Client extends OpenApi {
|
|
|
7551
7551
|
query["DesktopId"] = request.desktopId;
|
|
7552
7552
|
}
|
|
7553
7553
|
|
|
7554
|
+
if (!$dara.isNull(request.needExtraInfo)) {
|
|
7555
|
+
query["NeedExtraInfo"] = request.needExtraInfo;
|
|
7556
|
+
}
|
|
7557
|
+
|
|
7554
7558
|
if (!$dara.isNull(request.regionId)) {
|
|
7555
7559
|
query["RegionId"] = request.regionId;
|
|
7556
7560
|
}
|
|
@@ -8,6 +8,7 @@ export class DescribeDesktopInfoRequest extends $dara.Model {
|
|
|
8
8
|
* The IDs of the cloud computers. You can specify 1 to 100 IDs.
|
|
9
9
|
*/
|
|
10
10
|
desktopId?: string[];
|
|
11
|
+
needExtraInfo?: boolean;
|
|
11
12
|
/**
|
|
12
13
|
* @remarks
|
|
13
14
|
* The ID of the region. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the regions supported by Elastic Desktop Service.
|
|
@@ -21,6 +22,7 @@ export class DescribeDesktopInfoRequest extends $dara.Model {
|
|
|
21
22
|
static names(): { [key: string]: string } {
|
|
22
23
|
return {
|
|
23
24
|
desktopId: 'DesktopId',
|
|
25
|
+
needExtraInfo: 'NeedExtraInfo',
|
|
24
26
|
regionId: 'RegionId',
|
|
25
27
|
};
|
|
26
28
|
}
|
|
@@ -28,6 +30,7 @@ export class DescribeDesktopInfoRequest extends $dara.Model {
|
|
|
28
30
|
static types(): { [key: string]: any } {
|
|
29
31
|
return {
|
|
30
32
|
desktopId: { 'type': 'array', 'itemType': 'string' },
|
|
33
|
+
needExtraInfo: 'boolean',
|
|
31
34
|
regionId: 'string',
|
|
32
35
|
};
|
|
33
36
|
}
|