@alicloud/ecd20200930 4.16.3 → 4.18.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 +63 -0
- package/dist/client.js +210 -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/DescribeRecordFileRequest.d.ts +76 -0
- package/dist/models/DescribeRecordFileRequest.js +80 -0
- package/dist/models/DescribeRecordFileRequest.js.map +1 -0
- package/dist/models/DescribeRecordFileResponse.d.ts +19 -0
- package/dist/models/DescribeRecordFileResponse.js +69 -0
- package/dist/models/DescribeRecordFileResponse.js.map +1 -0
- package/dist/models/DescribeRecordFileResponseBody.d.ts +137 -0
- package/dist/models/DescribeRecordFileResponseBody.js +138 -0
- package/dist/models/DescribeRecordFileResponseBody.js.map +1 -0
- 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 +13 -0
- package/dist/models/model.js +47 -20
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +244 -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/DescribeRecordFileRequest.ts +111 -0
- package/src/models/DescribeRecordFileResponse.ts +40 -0
- package/src/models/DescribeRecordFileResponseBody.ts +212 -0
- package/src/models/ModifyTemplateRequest.ts +97 -3
- package/src/models/ModifyTemplateResponseBody.ts +15 -0
- package/src/models/model.ts +13 -0
|
@@ -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.DescribeRecordFileResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DescribeRecordFileResponseBody_1 = require("./DescribeRecordFileResponseBody");
|
|
40
|
+
class DescribeRecordFileResponse 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: DescribeRecordFileResponseBody_1.DescribeRecordFileResponseBody,
|
|
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.DescribeRecordFileResponse = DescribeRecordFileResponse;
|
|
69
|
+
//# sourceMappingURL=DescribeRecordFileResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeRecordFileResponse.js","sourceRoot":"","sources":["../../src/models/DescribeRecordFileResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,qFAAkF;AAGlF,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;IAIzD,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,+DAA8B;SACrC,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,gEAiCC"}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeRecordFileResponseBodyRecordFilesEventDetails extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* {\\n\\t\\"messageInfo\\" : \\"mouse_move\\",\\n\\t\\"messageType\\" : \\"UserInput\\"\\n}\\n"
|
|
6
|
+
*/
|
|
7
|
+
eventName?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 60
|
|
11
|
+
*/
|
|
12
|
+
eventTime?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* UserInput
|
|
16
|
+
*/
|
|
17
|
+
eventType?: string;
|
|
18
|
+
static names(): {
|
|
19
|
+
[key: string]: string;
|
|
20
|
+
};
|
|
21
|
+
static types(): {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
};
|
|
24
|
+
validate(): void;
|
|
25
|
+
constructor(map?: {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
export declare class DescribeRecordFileResponseBodyRecordFiles extends $dara.Model {
|
|
30
|
+
/**
|
|
31
|
+
* @example
|
|
32
|
+
* ecd-7yulhw1g1attet7d2
|
|
33
|
+
*/
|
|
34
|
+
desktopId?: string;
|
|
35
|
+
/**
|
|
36
|
+
* @example
|
|
37
|
+
* fvt-ecd
|
|
38
|
+
*/
|
|
39
|
+
desktopName?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @example
|
|
42
|
+
* Alice
|
|
43
|
+
*/
|
|
44
|
+
endUserId?: string;
|
|
45
|
+
eventDetails?: DescribeRecordFileResponseBodyRecordFilesEventDetails[];
|
|
46
|
+
/**
|
|
47
|
+
* @example
|
|
48
|
+
* Task3
|
|
49
|
+
*/
|
|
50
|
+
fileName?: string;
|
|
51
|
+
/**
|
|
52
|
+
* @example
|
|
53
|
+
* 139
|
|
54
|
+
*/
|
|
55
|
+
fileSize?: number;
|
|
56
|
+
/**
|
|
57
|
+
* @example
|
|
58
|
+
* pg-**
|
|
59
|
+
*/
|
|
60
|
+
policyId?: string;
|
|
61
|
+
/**
|
|
62
|
+
* @example
|
|
63
|
+
* 2025-12-18T06:02:25Z
|
|
64
|
+
*/
|
|
65
|
+
recordEndTime?: string;
|
|
66
|
+
/**
|
|
67
|
+
* @example
|
|
68
|
+
* 1774656000000
|
|
69
|
+
*/
|
|
70
|
+
recordExpire?: number;
|
|
71
|
+
/**
|
|
72
|
+
* @example
|
|
73
|
+
* 2025-12-18T06:02:25Z
|
|
74
|
+
*/
|
|
75
|
+
recordStartTime?: string;
|
|
76
|
+
/**
|
|
77
|
+
* @example
|
|
78
|
+
* period
|
|
79
|
+
*/
|
|
80
|
+
recordType?: number;
|
|
81
|
+
/**
|
|
82
|
+
* @example
|
|
83
|
+
* cn-beijing
|
|
84
|
+
*/
|
|
85
|
+
regionId?: string;
|
|
86
|
+
/**
|
|
87
|
+
* @example
|
|
88
|
+
* rg-f3s3dgt8dtb0vlqc8
|
|
89
|
+
*/
|
|
90
|
+
resourceGroupId?: string;
|
|
91
|
+
/**
|
|
92
|
+
* @example
|
|
93
|
+
* resource
|
|
94
|
+
*/
|
|
95
|
+
resourceGroupName?: string;
|
|
96
|
+
/**
|
|
97
|
+
* @example
|
|
98
|
+
* 1
|
|
99
|
+
*/
|
|
100
|
+
status?: number;
|
|
101
|
+
static names(): {
|
|
102
|
+
[key: string]: string;
|
|
103
|
+
};
|
|
104
|
+
static types(): {
|
|
105
|
+
[key: string]: any;
|
|
106
|
+
};
|
|
107
|
+
validate(): void;
|
|
108
|
+
constructor(map?: {
|
|
109
|
+
[key: string]: any;
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
export declare class DescribeRecordFileResponseBody extends $dara.Model {
|
|
113
|
+
recordFiles?: DescribeRecordFileResponseBodyRecordFiles[];
|
|
114
|
+
/**
|
|
115
|
+
* @remarks
|
|
116
|
+
* RequestId
|
|
117
|
+
*
|
|
118
|
+
* @example
|
|
119
|
+
* 05C2791F-41A7-5E7C-B5E4-1401FD0E****
|
|
120
|
+
*/
|
|
121
|
+
requestId?: string;
|
|
122
|
+
/**
|
|
123
|
+
* @example
|
|
124
|
+
* 2
|
|
125
|
+
*/
|
|
126
|
+
totalCount?: number;
|
|
127
|
+
static names(): {
|
|
128
|
+
[key: string]: string;
|
|
129
|
+
};
|
|
130
|
+
static types(): {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
};
|
|
133
|
+
validate(): void;
|
|
134
|
+
constructor(map?: {
|
|
135
|
+
[key: string]: any;
|
|
136
|
+
});
|
|
137
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
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.DescribeRecordFileResponseBody = exports.DescribeRecordFileResponseBodyRecordFiles = exports.DescribeRecordFileResponseBodyRecordFilesEventDetails = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeRecordFileResponseBodyRecordFilesEventDetails extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
eventName: 'EventName',
|
|
43
|
+
eventTime: 'EventTime',
|
|
44
|
+
eventType: 'EventType',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
eventName: 'string',
|
|
50
|
+
eventTime: 'number',
|
|
51
|
+
eventType: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.DescribeRecordFileResponseBodyRecordFilesEventDetails = DescribeRecordFileResponseBodyRecordFilesEventDetails;
|
|
62
|
+
class DescribeRecordFileResponseBodyRecordFiles extends $dara.Model {
|
|
63
|
+
static names() {
|
|
64
|
+
return {
|
|
65
|
+
desktopId: 'DesktopId',
|
|
66
|
+
desktopName: 'DesktopName',
|
|
67
|
+
endUserId: 'EndUserId',
|
|
68
|
+
eventDetails: 'EventDetails',
|
|
69
|
+
fileName: 'FileName',
|
|
70
|
+
fileSize: 'FileSize',
|
|
71
|
+
policyId: 'PolicyId',
|
|
72
|
+
recordEndTime: 'RecordEndTime',
|
|
73
|
+
recordExpire: 'RecordExpire',
|
|
74
|
+
recordStartTime: 'RecordStartTime',
|
|
75
|
+
recordType: 'RecordType',
|
|
76
|
+
regionId: 'RegionId',
|
|
77
|
+
resourceGroupId: 'ResourceGroupId',
|
|
78
|
+
resourceGroupName: 'ResourceGroupName',
|
|
79
|
+
status: 'Status',
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
static types() {
|
|
83
|
+
return {
|
|
84
|
+
desktopId: 'string',
|
|
85
|
+
desktopName: 'string',
|
|
86
|
+
endUserId: 'string',
|
|
87
|
+
eventDetails: { 'type': 'array', 'itemType': DescribeRecordFileResponseBodyRecordFilesEventDetails },
|
|
88
|
+
fileName: 'string',
|
|
89
|
+
fileSize: 'number',
|
|
90
|
+
policyId: 'string',
|
|
91
|
+
recordEndTime: 'string',
|
|
92
|
+
recordExpire: 'number',
|
|
93
|
+
recordStartTime: 'string',
|
|
94
|
+
recordType: 'number',
|
|
95
|
+
regionId: 'string',
|
|
96
|
+
resourceGroupId: 'string',
|
|
97
|
+
resourceGroupName: 'string',
|
|
98
|
+
status: 'number',
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
validate() {
|
|
102
|
+
if (Array.isArray(this.eventDetails)) {
|
|
103
|
+
$dara.Model.validateArray(this.eventDetails);
|
|
104
|
+
}
|
|
105
|
+
super.validate();
|
|
106
|
+
}
|
|
107
|
+
constructor(map) {
|
|
108
|
+
super(map);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
exports.DescribeRecordFileResponseBodyRecordFiles = DescribeRecordFileResponseBodyRecordFiles;
|
|
112
|
+
class DescribeRecordFileResponseBody extends $dara.Model {
|
|
113
|
+
static names() {
|
|
114
|
+
return {
|
|
115
|
+
recordFiles: 'RecordFiles',
|
|
116
|
+
requestId: 'RequestId',
|
|
117
|
+
totalCount: 'TotalCount',
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
static types() {
|
|
121
|
+
return {
|
|
122
|
+
recordFiles: { 'type': 'array', 'itemType': DescribeRecordFileResponseBodyRecordFiles },
|
|
123
|
+
requestId: 'string',
|
|
124
|
+
totalCount: 'number',
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
validate() {
|
|
128
|
+
if (Array.isArray(this.recordFiles)) {
|
|
129
|
+
$dara.Model.validateArray(this.recordFiles);
|
|
130
|
+
}
|
|
131
|
+
super.validate();
|
|
132
|
+
}
|
|
133
|
+
constructor(map) {
|
|
134
|
+
super(map);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
exports.DescribeRecordFileResponseBody = DescribeRecordFileResponseBody;
|
|
138
|
+
//# sourceMappingURL=DescribeRecordFileResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeRecordFileResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeRecordFileResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -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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"}
|
|
@@ -1,26 +1,41 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
2
|
export declare class ModifyTemplateResponseBody extends $dara.Model {
|
|
3
3
|
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* The execution result of the operation. If the request was successful, `success` is returned. If the request failed, an error message is returned.
|
|
6
|
+
*
|
|
4
7
|
* @example
|
|
5
8
|
* success
|
|
6
9
|
*/
|
|
7
10
|
code?: string;
|
|
8
11
|
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* The HTTP status code returned.
|
|
14
|
+
*
|
|
9
15
|
* @example
|
|
10
16
|
* 200
|
|
11
17
|
*/
|
|
12
18
|
httpStatusCode?: number;
|
|
13
19
|
/**
|
|
20
|
+
* @remarks
|
|
21
|
+
* The error message returned. This parameter is not returned if the value of Code is `success`.
|
|
22
|
+
*
|
|
14
23
|
* @example
|
|
15
24
|
* success
|
|
16
25
|
*/
|
|
17
26
|
message?: string;
|
|
18
27
|
/**
|
|
28
|
+
* @remarks
|
|
29
|
+
* The request ID.
|
|
30
|
+
*
|
|
19
31
|
* @example
|
|
20
32
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
21
33
|
*/
|
|
22
34
|
requestId?: string;
|
|
23
35
|
/**
|
|
36
|
+
* @remarks
|
|
37
|
+
* Indicates whether the operation is successful. Valid values: true false
|
|
38
|
+
*
|
|
24
39
|
* @example
|
|
25
40
|
* true
|
|
26
41
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModifyTemplateResponseBody.js","sourceRoot":"","sources":["../../src/models/ModifyTemplateResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ModifyTemplateResponseBody.js","sourceRoot":"","sources":["../../src/models/ModifyTemplateResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;IAyCzD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,cAAc,EAAE,gBAAgB;YAChC,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,cAAc,EAAE,QAAQ;YACxB,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;YACnB,OAAO,EAAE,SAAS;SACnB,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;AApED,gEAoEC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -121,6 +121,8 @@ export { DescribeFotaTasksResponseBodyFotaTasks } from './DescribeFotaTasksRespo
|
|
|
121
121
|
export { DescribeGlobalDesktopRecordsResponseBodySessionsResourceGroups } from './DescribeGlobalDesktopRecordsResponseBody';
|
|
122
122
|
export { DescribeGlobalDesktopRecordsResponseBodySessionsSessions } from './DescribeGlobalDesktopRecordsResponseBody';
|
|
123
123
|
export { DescribeGlobalDesktopRecordsResponseBodySessions } from './DescribeGlobalDesktopRecordsResponseBody';
|
|
124
|
+
export { DescribeGlobalTimerBatchesResponseBodyResults } from './DescribeGlobalTimerBatchesResponseBody';
|
|
125
|
+
export { DescribeGlobalTimerRecordsResponseBodyResults } from './DescribeGlobalTimerRecordsResponseBody';
|
|
124
126
|
export { DescribeGuestApplicationsResponseBodyApplicationsProcessData } from './DescribeGuestApplicationsResponseBody';
|
|
125
127
|
export { DescribeGuestApplicationsResponseBodyApplications } from './DescribeGuestApplicationsResponseBody';
|
|
126
128
|
export { DescribeImageModifiedRecordsResponseBodyImageModifiedRecords } from './DescribeImageModifiedRecordsResponseBody';
|
|
@@ -162,6 +164,8 @@ export { DescribePriceResponseBodyPriceInfo } from './DescribePriceResponseBody'
|
|
|
162
164
|
export { DescribePriceForCreateDesktopOversoldGroupResponseBodyData } from './DescribePriceForCreateDesktopOversoldGroupResponseBody';
|
|
163
165
|
export { DescribePriceForModifyDesktopOversoldGroupSaleResponseBodyData } from './DescribePriceForModifyDesktopOversoldGroupSaleResponseBody';
|
|
164
166
|
export { DescribePriceForRenewDesktopOversoldGroupResponseBodyData } from './DescribePriceForRenewDesktopOversoldGroupResponseBody';
|
|
167
|
+
export { DescribeRecordFileResponseBodyRecordFilesEventDetails } from './DescribeRecordFileResponseBody';
|
|
168
|
+
export { DescribeRecordFileResponseBodyRecordFiles } from './DescribeRecordFileResponseBody';
|
|
165
169
|
export { DescribeRecordingsResponseBodyRecordings } from './DescribeRecordingsResponseBody';
|
|
166
170
|
export { DescribeRefundPriceResponseBodyPriceInfo } from './DescribeRefundPriceResponseBody';
|
|
167
171
|
export { DescribeRegionsResponseBodyRegions } from './DescribeRegionsResponseBody';
|
|
@@ -643,6 +647,12 @@ export { DescribeFotaTasksResponse } from './DescribeFotaTasksResponse';
|
|
|
643
647
|
export { DescribeGlobalDesktopRecordsRequest } from './DescribeGlobalDesktopRecordsRequest';
|
|
644
648
|
export { DescribeGlobalDesktopRecordsResponseBody } from './DescribeGlobalDesktopRecordsResponseBody';
|
|
645
649
|
export { DescribeGlobalDesktopRecordsResponse } from './DescribeGlobalDesktopRecordsResponse';
|
|
650
|
+
export { DescribeGlobalTimerBatchesRequest } from './DescribeGlobalTimerBatchesRequest';
|
|
651
|
+
export { DescribeGlobalTimerBatchesResponseBody } from './DescribeGlobalTimerBatchesResponseBody';
|
|
652
|
+
export { DescribeGlobalTimerBatchesResponse } from './DescribeGlobalTimerBatchesResponse';
|
|
653
|
+
export { DescribeGlobalTimerRecordsRequest } from './DescribeGlobalTimerRecordsRequest';
|
|
654
|
+
export { DescribeGlobalTimerRecordsResponseBody } from './DescribeGlobalTimerRecordsResponseBody';
|
|
655
|
+
export { DescribeGlobalTimerRecordsResponse } from './DescribeGlobalTimerRecordsResponse';
|
|
646
656
|
export { DescribeGuestApplicationsRequest } from './DescribeGuestApplicationsRequest';
|
|
647
657
|
export { DescribeGuestApplicationsResponseBody } from './DescribeGuestApplicationsResponseBody';
|
|
648
658
|
export { DescribeGuestApplicationsResponse } from './DescribeGuestApplicationsResponse';
|
|
@@ -694,6 +704,9 @@ export { DescribePriceForModifyDesktopOversoldGroupSaleResponse } from './Descri
|
|
|
694
704
|
export { DescribePriceForRenewDesktopOversoldGroupRequest } from './DescribePriceForRenewDesktopOversoldGroupRequest';
|
|
695
705
|
export { DescribePriceForRenewDesktopOversoldGroupResponseBody } from './DescribePriceForRenewDesktopOversoldGroupResponseBody';
|
|
696
706
|
export { DescribePriceForRenewDesktopOversoldGroupResponse } from './DescribePriceForRenewDesktopOversoldGroupResponse';
|
|
707
|
+
export { DescribeRecordFileRequest } from './DescribeRecordFileRequest';
|
|
708
|
+
export { DescribeRecordFileResponseBody } from './DescribeRecordFileResponseBody';
|
|
709
|
+
export { DescribeRecordFileResponse } from './DescribeRecordFileResponse';
|
|
697
710
|
export { DescribeRecordingsRequest } from './DescribeRecordingsRequest';
|
|
698
711
|
export { DescribeRecordingsResponseBody } from './DescribeRecordingsResponseBody';
|
|
699
712
|
export { DescribeRecordingsResponse } from './DescribeRecordingsResponse';
|