@alicloud/ecd20200930 4.16.3 → 4.17.0
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 +48 -0
- package/dist/client.js +138 -0
- package/dist/client.js.map +1 -1
- package/dist/models/BatchModifyEntitlementRequest.d.ts +24 -0
- package/dist/models/BatchModifyEntitlementRequest.js.map +1 -1
- package/dist/models/BatchModifyEntitlementResponseBody.d.ts +35 -0
- package/dist/models/BatchModifyEntitlementResponseBody.js.map +1 -1
- package/dist/models/DescribeGlobalTimerBatchesRequest.d.ts +43 -0
- package/dist/models/DescribeGlobalTimerBatchesRequest.js +68 -0
- package/dist/models/DescribeGlobalTimerBatchesRequest.js.map +1 -0
- package/dist/models/DescribeGlobalTimerBatchesResponse.d.ts +19 -0
- package/dist/models/DescribeGlobalTimerBatchesResponse.js +69 -0
- package/dist/models/DescribeGlobalTimerBatchesResponse.js.map +1 -0
- package/dist/models/DescribeGlobalTimerBatchesResponseBody.d.ts +79 -0
- package/dist/models/DescribeGlobalTimerBatchesResponseBody.js +98 -0
- package/dist/models/DescribeGlobalTimerBatchesResponseBody.js.map +1 -0
- package/dist/models/DescribeGlobalTimerRecordsRequest.d.ts +107 -0
- package/dist/models/DescribeGlobalTimerRecordsRequest.js +82 -0
- package/dist/models/DescribeGlobalTimerRecordsRequest.js.map +1 -0
- package/dist/models/DescribeGlobalTimerRecordsResponse.d.ts +19 -0
- package/dist/models/DescribeGlobalTimerRecordsResponse.js +69 -0
- package/dist/models/DescribeGlobalTimerRecordsResponse.js.map +1 -0
- package/dist/models/DescribeGlobalTimerRecordsResponseBody.d.ts +128 -0
- package/dist/models/DescribeGlobalTimerRecordsResponseBody.js +106 -0
- package/dist/models/DescribeGlobalTimerRecordsResponseBody.js.map +1 -0
- package/dist/models/DescribeOfficeSitesRequest.d.ts +7 -0
- package/dist/models/DescribeOfficeSitesRequest.js.map +1 -1
- package/dist/models/ModifyTemplateRequest.d.ts +97 -3
- package/dist/models/ModifyTemplateRequest.js.map +1 -1
- package/dist/models/ModifyTemplateResponseBody.d.ts +15 -0
- package/dist/models/ModifyTemplateResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +8 -0
- package/dist/models/model.js +36 -20
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +158 -0
- package/src/models/BatchModifyEntitlementRequest.ts +24 -0
- package/src/models/BatchModifyEntitlementResponseBody.ts +35 -0
- package/src/models/DescribeGlobalTimerBatchesRequest.ts +66 -0
- package/src/models/DescribeGlobalTimerBatchesResponse.ts +40 -0
- package/src/models/DescribeGlobalTimerBatchesResponseBody.ts +123 -0
- package/src/models/DescribeGlobalTimerRecordsRequest.ts +144 -0
- package/src/models/DescribeGlobalTimerRecordsResponse.ts +40 -0
- package/src/models/DescribeGlobalTimerRecordsResponseBody.ts +180 -0
- package/src/models/DescribeOfficeSitesRequest.ts +7 -0
- package/src/models/ModifyTemplateRequest.ts +97 -3
- package/src/models/ModifyTemplateResponseBody.ts +15 -0
- package/src/models/model.ts +8 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeGlobalTimerRecordsRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeGlobalTimerRecordsRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
batchId: 'BatchId',
|
|
43
|
+
desktopIds: 'DesktopIds',
|
|
44
|
+
groupId: 'GroupId',
|
|
45
|
+
maxResults: 'MaxResults',
|
|
46
|
+
nextToken: 'NextToken',
|
|
47
|
+
regionId: 'RegionId',
|
|
48
|
+
resultCategory: 'ResultCategory',
|
|
49
|
+
searchRegionId: 'SearchRegionId',
|
|
50
|
+
timerResult: 'TimerResult',
|
|
51
|
+
timerTypes: 'TimerTypes',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
static types() {
|
|
55
|
+
return {
|
|
56
|
+
batchId: 'string',
|
|
57
|
+
desktopIds: { 'type': 'array', 'itemType': 'string' },
|
|
58
|
+
groupId: 'string',
|
|
59
|
+
maxResults: 'string',
|
|
60
|
+
nextToken: 'string',
|
|
61
|
+
regionId: 'string',
|
|
62
|
+
resultCategory: 'string',
|
|
63
|
+
searchRegionId: 'string',
|
|
64
|
+
timerResult: 'string',
|
|
65
|
+
timerTypes: { 'type': 'array', 'itemType': 'string' },
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
validate() {
|
|
69
|
+
if (Array.isArray(this.desktopIds)) {
|
|
70
|
+
$dara.Model.validateArray(this.desktopIds);
|
|
71
|
+
}
|
|
72
|
+
if (Array.isArray(this.timerTypes)) {
|
|
73
|
+
$dara.Model.validateArray(this.timerTypes);
|
|
74
|
+
}
|
|
75
|
+
super.validate();
|
|
76
|
+
}
|
|
77
|
+
constructor(map) {
|
|
78
|
+
super(map);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
exports.DescribeGlobalTimerRecordsRequest = DescribeGlobalTimerRecordsRequest;
|
|
82
|
+
//# sourceMappingURL=DescribeGlobalTimerRecordsRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeGlobalTimerRecordsRequest.js","sourceRoot":"","sources":["../../src/models/DescribeGlobalTimerRecordsRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IA+FhE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,QAAQ,EAAE,UAAU;YACpB,cAAc,EAAE,gBAAgB;YAChC,cAAc,EAAE,gBAAgB;YAChC,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,UAAU,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACrD,OAAO,EAAE,QAAQ;YACjB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,QAAQ,EAAE,QAAQ;YAClB,cAAc,EAAE,QAAQ;YACxB,cAAc,EAAE,QAAQ;YACxB,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;SACtD,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAClC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAClC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA1ID,8EA0IC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { DescribeGlobalTimerRecordsResponseBody } from "./DescribeGlobalTimerRecordsResponseBody";
|
|
3
|
+
export declare class DescribeGlobalTimerRecordsResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: DescribeGlobalTimerRecordsResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeGlobalTimerRecordsResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DescribeGlobalTimerRecordsResponseBody_1 = require("./DescribeGlobalTimerRecordsResponseBody");
|
|
40
|
+
class DescribeGlobalTimerRecordsResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: DescribeGlobalTimerRecordsResponseBody_1.DescribeGlobalTimerRecordsResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.DescribeGlobalTimerRecordsResponse = DescribeGlobalTimerRecordsResponse;
|
|
69
|
+
//# sourceMappingURL=DescribeGlobalTimerRecordsResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeGlobalTimerRecordsResponse.js","sourceRoot":"","sources":["../../src/models/DescribeGlobalTimerRecordsResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,qGAAkG;AAGlG,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IAIjE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,+EAAsC;SAC7C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,gFAiCC"}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeGlobalTimerRecordsResponseBodyResults extends $dara.Model {
|
|
3
|
+
actionType?: string;
|
|
4
|
+
/**
|
|
5
|
+
* @remarks
|
|
6
|
+
* The ID of the batch in which the scheduled task is executed.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ccg-0cvfvf6u1enx1****
|
|
10
|
+
*/
|
|
11
|
+
batchId?: string;
|
|
12
|
+
context?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @remarks
|
|
15
|
+
* The time when the execution record was created.
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* 2023-08-03T08:27:29Z
|
|
19
|
+
*/
|
|
20
|
+
createTime?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @remarks
|
|
23
|
+
* The cloud computer ID.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ecd-0c951fy9arnk9****
|
|
27
|
+
*/
|
|
28
|
+
desktopId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @remarks
|
|
31
|
+
* The cloud computer name.
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* DesktopName
|
|
35
|
+
*/
|
|
36
|
+
desktopName?: string;
|
|
37
|
+
/**
|
|
38
|
+
* @remarks
|
|
39
|
+
* The time when the scheduled task ended.
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* 2025-01-21T02:00:45Z
|
|
43
|
+
*/
|
|
44
|
+
finishTime?: string;
|
|
45
|
+
/**
|
|
46
|
+
* @remarks
|
|
47
|
+
* The region ID.
|
|
48
|
+
*
|
|
49
|
+
* @example
|
|
50
|
+
* cn-hangzhou
|
|
51
|
+
*/
|
|
52
|
+
regionId?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @remarks
|
|
55
|
+
* The ID of the scheduled task group.
|
|
56
|
+
*
|
|
57
|
+
* @example
|
|
58
|
+
* ccg-xxxx
|
|
59
|
+
*/
|
|
60
|
+
timerGroupId?: string;
|
|
61
|
+
/**
|
|
62
|
+
* @remarks
|
|
63
|
+
* The execution result of the scheduled task.
|
|
64
|
+
*
|
|
65
|
+
* @example
|
|
66
|
+
* RUNNING
|
|
67
|
+
*/
|
|
68
|
+
timerResult?: string;
|
|
69
|
+
/**
|
|
70
|
+
* @remarks
|
|
71
|
+
* The type of the scheduled task.
|
|
72
|
+
*
|
|
73
|
+
* @example
|
|
74
|
+
* TimerBoot
|
|
75
|
+
*/
|
|
76
|
+
timerType?: string;
|
|
77
|
+
static names(): {
|
|
78
|
+
[key: string]: string;
|
|
79
|
+
};
|
|
80
|
+
static types(): {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
};
|
|
83
|
+
validate(): void;
|
|
84
|
+
constructor(map?: {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
export declare class DescribeGlobalTimerRecordsResponseBody extends $dara.Model {
|
|
89
|
+
/**
|
|
90
|
+
* @remarks
|
|
91
|
+
* The total number of entries returned.
|
|
92
|
+
*
|
|
93
|
+
* @example
|
|
94
|
+
* 2
|
|
95
|
+
*/
|
|
96
|
+
count?: number;
|
|
97
|
+
/**
|
|
98
|
+
* @remarks
|
|
99
|
+
* A pagination token. It can be used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists.
|
|
100
|
+
*
|
|
101
|
+
* @example
|
|
102
|
+
* AAAAAV3MpHK1AP0pfERHZN5pu6mnFXZiT7NdvGNgkInJ****
|
|
103
|
+
*/
|
|
104
|
+
nextToken?: string;
|
|
105
|
+
/**
|
|
106
|
+
* @remarks
|
|
107
|
+
* The request ID.
|
|
108
|
+
*
|
|
109
|
+
* @example
|
|
110
|
+
* 63740E03-1B4B-5A18-AC27-2745A4F2****
|
|
111
|
+
*/
|
|
112
|
+
requestId?: string;
|
|
113
|
+
/**
|
|
114
|
+
* @remarks
|
|
115
|
+
* The response parameters.
|
|
116
|
+
*/
|
|
117
|
+
results?: DescribeGlobalTimerRecordsResponseBodyResults[];
|
|
118
|
+
static names(): {
|
|
119
|
+
[key: string]: string;
|
|
120
|
+
};
|
|
121
|
+
static types(): {
|
|
122
|
+
[key: string]: any;
|
|
123
|
+
};
|
|
124
|
+
validate(): void;
|
|
125
|
+
constructor(map?: {
|
|
126
|
+
[key: string]: any;
|
|
127
|
+
});
|
|
128
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeGlobalTimerRecordsResponseBody = exports.DescribeGlobalTimerRecordsResponseBodyResults = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeGlobalTimerRecordsResponseBodyResults extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
actionType: 'ActionType',
|
|
43
|
+
batchId: 'BatchId',
|
|
44
|
+
context: 'Context',
|
|
45
|
+
createTime: 'CreateTime',
|
|
46
|
+
desktopId: 'DesktopId',
|
|
47
|
+
desktopName: 'DesktopName',
|
|
48
|
+
finishTime: 'FinishTime',
|
|
49
|
+
regionId: 'RegionId',
|
|
50
|
+
timerGroupId: 'TimerGroupId',
|
|
51
|
+
timerResult: 'TimerResult',
|
|
52
|
+
timerType: 'TimerType',
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
static types() {
|
|
56
|
+
return {
|
|
57
|
+
actionType: 'string',
|
|
58
|
+
batchId: 'string',
|
|
59
|
+
context: 'string',
|
|
60
|
+
createTime: 'string',
|
|
61
|
+
desktopId: 'string',
|
|
62
|
+
desktopName: 'string',
|
|
63
|
+
finishTime: 'string',
|
|
64
|
+
regionId: 'string',
|
|
65
|
+
timerGroupId: 'string',
|
|
66
|
+
timerResult: 'string',
|
|
67
|
+
timerType: 'string',
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
validate() {
|
|
71
|
+
super.validate();
|
|
72
|
+
}
|
|
73
|
+
constructor(map) {
|
|
74
|
+
super(map);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.DescribeGlobalTimerRecordsResponseBodyResults = DescribeGlobalTimerRecordsResponseBodyResults;
|
|
78
|
+
class DescribeGlobalTimerRecordsResponseBody extends $dara.Model {
|
|
79
|
+
static names() {
|
|
80
|
+
return {
|
|
81
|
+
count: 'Count',
|
|
82
|
+
nextToken: 'NextToken',
|
|
83
|
+
requestId: 'RequestId',
|
|
84
|
+
results: 'Results',
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
static types() {
|
|
88
|
+
return {
|
|
89
|
+
count: 'number',
|
|
90
|
+
nextToken: 'string',
|
|
91
|
+
requestId: 'string',
|
|
92
|
+
results: { 'type': 'array', 'itemType': DescribeGlobalTimerRecordsResponseBodyResults },
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
validate() {
|
|
96
|
+
if (Array.isArray(this.results)) {
|
|
97
|
+
$dara.Model.validateArray(this.results);
|
|
98
|
+
}
|
|
99
|
+
super.validate();
|
|
100
|
+
}
|
|
101
|
+
constructor(map) {
|
|
102
|
+
super(map);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.DescribeGlobalTimerRecordsResponseBody = DescribeGlobalTimerRecordsResponseBody;
|
|
106
|
+
//# sourceMappingURL=DescribeGlobalTimerRecordsResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeGlobalTimerRecordsResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeGlobalTimerRecordsResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,6CAA8C,SAAQ,KAAK,CAAC,KAAK;IA2E5E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,YAAY,EAAE,cAAc;YAC5B,WAAW,EAAE,aAAa;YAC1B,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,OAAO,EAAE,QAAQ;YACjB,OAAO,EAAE,QAAQ;YACjB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,YAAY,EAAE,QAAQ;YACtB,WAAW,EAAE,QAAQ;YACrB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAlHD,sGAkHC;AAED,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;IA8BrE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,SAAS,EAAE,WAAW;YACtB,SAAS,EAAE,WAAW;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,SAAS,EAAE,QAAQ;YACnB,SAAS,EAAE,QAAQ;YACnB,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,6CAA6C,EAAE;SACxF,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAC/B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA1DD,wFA0DC"}
|
|
@@ -158,6 +158,13 @@ export declare class DescribeOfficeSitesRequest extends $dara.Model {
|
|
|
158
158
|
* REGISTERED
|
|
159
159
|
*/
|
|
160
160
|
status?: string;
|
|
161
|
+
/**
|
|
162
|
+
* @remarks
|
|
163
|
+
* The ID of the virtual private cloud (VPC).
|
|
164
|
+
*
|
|
165
|
+
* @example
|
|
166
|
+
* vpc-uf6bpyqivwl5f3pvoxxu0
|
|
167
|
+
*/
|
|
161
168
|
vpcId?: string;
|
|
162
169
|
static names(): {
|
|
163
170
|
[key: string]: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeOfficeSitesRequest.js","sourceRoot":"","sources":["../../src/models/DescribeOfficeSitesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeOfficeSitesRequest.js","sourceRoot":"","sources":["../../src/models/DescribeOfficeSitesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;IAuKzD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,YAAY,EAAE,cAAc;YAC5B,cAAc,EAAE,gBAAgB;YAChC,QAAQ,EAAE,UAAU;YACpB,kBAAkB,EAAE,oBAAoB;YACxC,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,YAAY,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACvD,cAAc,EAAE,QAAQ;YACxB,QAAQ,EAAE,QAAQ;YAClB,kBAAkB,EAAE,QAAQ;YAC5B,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,QAAQ;SAChB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;YACpC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC/C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3MD,gEA2MC"}
|
|
@@ -3,9 +3,7 @@ export declare class ModifyTemplateRequestDataDiskList extends $dara.Model {
|
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
5
|
* The PL of the data disk. Default value: `AutoPL`.
|
|
6
|
-
*
|
|
7
6
|
* Valid values:
|
|
8
|
-
*
|
|
9
7
|
* * PL1: a PL1 ESSD
|
|
10
8
|
* * PL0: a PL0 ESSD
|
|
11
9
|
* * AutoPL: an AutoPL ESSD
|
|
@@ -13,7 +11,7 @@ export declare class ModifyTemplateRequestDataDiskList extends $dara.Model {
|
|
|
13
11
|
performanceLevel?: string;
|
|
14
12
|
/**
|
|
15
13
|
* @remarks
|
|
16
|
-
* The size of the data disk. Unit: GiB.
|
|
14
|
+
* The size of the data disk. Unit: GiB.Valid range: 40 to 2040 GiB with an increment of 10 GiB.
|
|
17
15
|
*
|
|
18
16
|
* @example
|
|
19
17
|
* 40
|
|
@@ -32,36 +30,62 @@ export declare class ModifyTemplateRequestDataDiskList extends $dara.Model {
|
|
|
32
30
|
}
|
|
33
31
|
export declare class ModifyTemplateRequestRegionConfigList extends $dara.Model {
|
|
34
32
|
/**
|
|
33
|
+
* @remarks
|
|
34
|
+
* The office network ID.
|
|
35
|
+
*
|
|
35
36
|
* @example
|
|
36
37
|
* cn-hangzhou+dir-709****
|
|
37
38
|
*/
|
|
38
39
|
officeSiteId?: string;
|
|
39
40
|
/**
|
|
41
|
+
* @remarks
|
|
42
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
43
|
+
*
|
|
40
44
|
* @example
|
|
41
45
|
* cn-beijing
|
|
42
46
|
*/
|
|
43
47
|
regionId?: string;
|
|
44
48
|
/**
|
|
49
|
+
* @remarks
|
|
50
|
+
* The ID of the cloud computer type.
|
|
51
|
+
*
|
|
45
52
|
* @example
|
|
46
53
|
* eds.enterprise_office.8c16g
|
|
47
54
|
*/
|
|
48
55
|
resourceInstanceType?: string;
|
|
49
56
|
/**
|
|
57
|
+
* @remarks
|
|
58
|
+
* The ID of the automatic snapshot policy.
|
|
59
|
+
*
|
|
50
60
|
* @example
|
|
51
61
|
* sp-35fvn8m2*****
|
|
52
62
|
*/
|
|
53
63
|
snapshotPolicyId?: string;
|
|
54
64
|
/**
|
|
65
|
+
* @remarks
|
|
66
|
+
* The subnet ID.
|
|
67
|
+
*
|
|
55
68
|
* @example
|
|
56
69
|
* vsw-adjrehad1****
|
|
57
70
|
*/
|
|
58
71
|
subnetId?: string;
|
|
59
72
|
/**
|
|
73
|
+
* @remarks
|
|
74
|
+
* Specifies whether to enable disk encryption.
|
|
75
|
+
*
|
|
76
|
+
* Valid values:
|
|
77
|
+
*
|
|
78
|
+
* * false (default): disables disk encryption.
|
|
79
|
+
* * true: enables disk encryption.
|
|
80
|
+
*
|
|
60
81
|
* @example
|
|
61
82
|
* false
|
|
62
83
|
*/
|
|
63
84
|
volumeEncryptionEnable?: boolean;
|
|
64
85
|
/**
|
|
86
|
+
* @remarks
|
|
87
|
+
* The ID of the Key Management Service (KMS) key that you want to use to encrypt disks.
|
|
88
|
+
*
|
|
65
89
|
* @example
|
|
66
90
|
* a7b3c0c8-b3a2-4876-b1cc-116dddc9****
|
|
67
91
|
*/
|
|
@@ -79,11 +103,17 @@ export declare class ModifyTemplateRequestRegionConfigList extends $dara.Model {
|
|
|
79
103
|
}
|
|
80
104
|
export declare class ModifyTemplateRequestResourceTagList extends $dara.Model {
|
|
81
105
|
/**
|
|
106
|
+
* @remarks
|
|
107
|
+
* The tag key.
|
|
108
|
+
*
|
|
82
109
|
* @example
|
|
83
110
|
* department
|
|
84
111
|
*/
|
|
85
112
|
key?: string;
|
|
86
113
|
/**
|
|
114
|
+
* @remarks
|
|
115
|
+
* The tag value.
|
|
116
|
+
*
|
|
87
117
|
* @example
|
|
88
118
|
* design
|
|
89
119
|
*/
|
|
@@ -119,16 +149,35 @@ export declare class ModifyTemplateRequest extends $dara.Model {
|
|
|
119
149
|
chargeType?: string;
|
|
120
150
|
dataDiskList?: ModifyTemplateRequestDataDiskList[];
|
|
121
151
|
/**
|
|
152
|
+
* @remarks
|
|
153
|
+
* The default language of the cloud computer during startup. This parameter takes effect only when the cloud computer is created from a system image.
|
|
154
|
+
*
|
|
155
|
+
* Valid values:
|
|
156
|
+
*
|
|
157
|
+
* * en-US: English.
|
|
158
|
+
* * zh-HK: Chinese, Traditional (Hong Kong, China).
|
|
159
|
+
* * zh-CN: Simplified Chinese.
|
|
160
|
+
* * ja-JP: Japanese.
|
|
161
|
+
*
|
|
122
162
|
* @example
|
|
123
163
|
* zh-CN
|
|
124
164
|
*/
|
|
125
165
|
defaultLanguage?: string;
|
|
126
166
|
/**
|
|
167
|
+
* @remarks
|
|
168
|
+
* The template description. It must meet the following criteria:
|
|
169
|
+
*
|
|
170
|
+
* * It can be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
171
|
+
* * It can contain letters, digits, and special characters, including spaces. Note: You can use carriage returns to break lines.
|
|
172
|
+
*
|
|
127
173
|
* @example
|
|
128
174
|
* testDescription
|
|
129
175
|
*/
|
|
130
176
|
description?: string;
|
|
131
177
|
/**
|
|
178
|
+
* @remarks
|
|
179
|
+
* The ID of the cloud computer image. You can query image IDs on the Images page. System images and custom images are supported.
|
|
180
|
+
*
|
|
132
181
|
* @example
|
|
133
182
|
* m-gx2x1dhsmusr2****
|
|
134
183
|
*/
|
|
@@ -136,39 +185,84 @@ export declare class ModifyTemplateRequest extends $dara.Model {
|
|
|
136
185
|
period?: number;
|
|
137
186
|
periodUnit?: string;
|
|
138
187
|
/**
|
|
188
|
+
* @remarks
|
|
189
|
+
* The ID of the policy group.
|
|
190
|
+
*
|
|
139
191
|
* @example
|
|
140
192
|
* pg-gx2x1dhsmthe9****
|
|
141
193
|
*/
|
|
142
194
|
policyGroupId?: string;
|
|
143
195
|
postPaidAfterUsedUp?: boolean;
|
|
196
|
+
/**
|
|
197
|
+
* @remarks
|
|
198
|
+
* The regions by which you can search for cloud computer templates. When this parameter takes effect, cloud computer templates are matched based on the specified regions.
|
|
199
|
+
*
|
|
200
|
+
* > You can specify up to 20 regions.
|
|
201
|
+
*/
|
|
144
202
|
regionConfigList?: ModifyTemplateRequestRegionConfigList[];
|
|
145
203
|
/**
|
|
204
|
+
* @remarks
|
|
205
|
+
* The ID of the resource group.
|
|
206
|
+
*
|
|
146
207
|
* @example
|
|
147
208
|
* rg-a5fqjjqaejt***
|
|
148
209
|
*/
|
|
149
210
|
resourceGroupId?: string;
|
|
211
|
+
/**
|
|
212
|
+
* @remarks
|
|
213
|
+
* The tags added to cloud computers. Specify tags in key-value pairs. You can specify up to 20 tags.
|
|
214
|
+
*/
|
|
150
215
|
resourceTagList?: ModifyTemplateRequestResourceTagList[];
|
|
151
216
|
siteConfigList?: ModifyTemplateRequestSiteConfigList[];
|
|
152
217
|
/**
|
|
218
|
+
* @remarks
|
|
219
|
+
* The performance level (PL) of the system disk.
|
|
220
|
+
*
|
|
221
|
+
* > Only cloud computers of the Graphics or High Frequency type support Enterprise SSDs (ESSDs).
|
|
222
|
+
*
|
|
223
|
+
* Valid values:
|
|
224
|
+
*
|
|
225
|
+
* * PL1: a PL1 ESSD.
|
|
226
|
+
* * PL0: a PL0 ESSD.
|
|
227
|
+
* * AutoPL: an AutoPL ESSD.
|
|
228
|
+
*
|
|
153
229
|
* @example
|
|
154
230
|
* AutoPL
|
|
155
231
|
*/
|
|
156
232
|
systemDiskPerformanceLevel?: string;
|
|
157
233
|
/**
|
|
234
|
+
* @remarks
|
|
235
|
+
* The size of the system disk. Unit: GiB. Valid values: 40 to 500. Increments: 10 GiB.
|
|
236
|
+
*
|
|
237
|
+
* > The system disk size must be at least as large as the configured image size.
|
|
238
|
+
*
|
|
158
239
|
* @example
|
|
159
240
|
* 80
|
|
160
241
|
*/
|
|
161
242
|
systemDiskSize?: number;
|
|
162
243
|
/**
|
|
163
244
|
* @remarks
|
|
245
|
+
* The template ID.
|
|
246
|
+
*
|
|
164
247
|
* This parameter is required.
|
|
165
248
|
*
|
|
166
249
|
* @example
|
|
167
250
|
* b-0caoeogs88y*****
|
|
168
251
|
*/
|
|
169
252
|
templateId?: string;
|
|
253
|
+
/**
|
|
254
|
+
* @remarks
|
|
255
|
+
* The template name. It must meet the following criteria:
|
|
256
|
+
*
|
|
257
|
+
* * It can be 2 to 126 characters in length.
|
|
258
|
+
* * It must begin with a letter and cannot start with `http://` or `https://`.
|
|
259
|
+
* * It can contain letters, digits, colons (:), underscores (_), and hyphens (-). Note: Periods (.) are not supported in the name.
|
|
260
|
+
*/
|
|
170
261
|
templateName?: string;
|
|
171
262
|
/**
|
|
263
|
+
* @remarks
|
|
264
|
+
* The ID of the scheduled task group.
|
|
265
|
+
*
|
|
172
266
|
* @example
|
|
173
267
|
* bcc-dweha*****
|
|
174
268
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModifyTemplateRequest.js","sourceRoot":"","sources":["../../src/models/ModifyTemplateRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ModifyTemplateRequest.js","sourceRoot":"","sources":["../../src/models/ModifyTemplateRequest.ts"],"names":[],"mappings":"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"}
|