@alicloud/ecd20200930 4.17.0 → 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 +15 -0
- package/dist/client.js +72 -0
- package/dist/client.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/model.d.ts +5 -0
- package/dist/models/model.js +30 -19
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +86 -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/model.ts +5 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeRecordFileRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* ecd-7w78ozhjcwa3u****
|
|
9
|
+
*/
|
|
10
|
+
desktopId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 20251218205715
|
|
14
|
+
*/
|
|
15
|
+
endTime?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* Alice
|
|
19
|
+
*/
|
|
20
|
+
endUserId?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* Task7
|
|
24
|
+
*/
|
|
25
|
+
fileName?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* startTime
|
|
29
|
+
*/
|
|
30
|
+
orderBy?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* asc
|
|
34
|
+
*/
|
|
35
|
+
orderSort?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* 1
|
|
39
|
+
*/
|
|
40
|
+
pageNumber?: number;
|
|
41
|
+
/**
|
|
42
|
+
* @example
|
|
43
|
+
* 20
|
|
44
|
+
*/
|
|
45
|
+
pageSize?: number;
|
|
46
|
+
/**
|
|
47
|
+
* @example
|
|
48
|
+
* alltime
|
|
49
|
+
*/
|
|
50
|
+
recordType?: string;
|
|
51
|
+
/**
|
|
52
|
+
* @remarks
|
|
53
|
+
* This parameter is required.
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* cn-shanghai
|
|
57
|
+
*/
|
|
58
|
+
regionId?: string;
|
|
59
|
+
/**
|
|
60
|
+
* @example
|
|
61
|
+
* 20251218175715
|
|
62
|
+
*/
|
|
63
|
+
startTime?: string;
|
|
64
|
+
/**
|
|
65
|
+
* @example
|
|
66
|
+
* 1
|
|
67
|
+
*/
|
|
68
|
+
status?: number;
|
|
69
|
+
static names(): { [key: string]: string } {
|
|
70
|
+
return {
|
|
71
|
+
desktopId: 'DesktopId',
|
|
72
|
+
endTime: 'EndTime',
|
|
73
|
+
endUserId: 'EndUserId',
|
|
74
|
+
fileName: 'FileName',
|
|
75
|
+
orderBy: 'OrderBy',
|
|
76
|
+
orderSort: 'OrderSort',
|
|
77
|
+
pageNumber: 'PageNumber',
|
|
78
|
+
pageSize: 'PageSize',
|
|
79
|
+
recordType: 'RecordType',
|
|
80
|
+
regionId: 'RegionId',
|
|
81
|
+
startTime: 'StartTime',
|
|
82
|
+
status: 'Status',
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
static types(): { [key: string]: any } {
|
|
87
|
+
return {
|
|
88
|
+
desktopId: 'string',
|
|
89
|
+
endTime: 'string',
|
|
90
|
+
endUserId: 'string',
|
|
91
|
+
fileName: 'string',
|
|
92
|
+
orderBy: 'string',
|
|
93
|
+
orderSort: 'string',
|
|
94
|
+
pageNumber: 'number',
|
|
95
|
+
pageSize: 'number',
|
|
96
|
+
recordType: 'string',
|
|
97
|
+
regionId: 'string',
|
|
98
|
+
startTime: 'string',
|
|
99
|
+
status: 'number',
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
validate() {
|
|
104
|
+
super.validate();
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
constructor(map?: { [key: string]: any }) {
|
|
108
|
+
super(map);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DescribeRecordFileResponseBody } from "./DescribeRecordFileResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DescribeRecordFileResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DescribeRecordFileResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: DescribeRecordFileResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeRecordFileResponseBodyRecordFilesEventDetails extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* {\\n\\t\\"messageInfo\\" : \\"mouse_move\\",\\n\\t\\"messageType\\" : \\"UserInput\\"\\n}\\n"
|
|
9
|
+
*/
|
|
10
|
+
eventName?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 60
|
|
14
|
+
*/
|
|
15
|
+
eventTime?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* UserInput
|
|
19
|
+
*/
|
|
20
|
+
eventType?: string;
|
|
21
|
+
static names(): { [key: string]: string } {
|
|
22
|
+
return {
|
|
23
|
+
eventName: 'EventName',
|
|
24
|
+
eventTime: 'EventTime',
|
|
25
|
+
eventType: 'EventType',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
eventName: 'string',
|
|
32
|
+
eventTime: 'number',
|
|
33
|
+
eventType: 'string',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class DescribeRecordFileResponseBodyRecordFiles extends $dara.Model {
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* ecd-7yulhw1g1attet7d2
|
|
50
|
+
*/
|
|
51
|
+
desktopId?: string;
|
|
52
|
+
/**
|
|
53
|
+
* @example
|
|
54
|
+
* fvt-ecd
|
|
55
|
+
*/
|
|
56
|
+
desktopName?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @example
|
|
59
|
+
* Alice
|
|
60
|
+
*/
|
|
61
|
+
endUserId?: string;
|
|
62
|
+
eventDetails?: DescribeRecordFileResponseBodyRecordFilesEventDetails[];
|
|
63
|
+
/**
|
|
64
|
+
* @example
|
|
65
|
+
* Task3
|
|
66
|
+
*/
|
|
67
|
+
fileName?: string;
|
|
68
|
+
/**
|
|
69
|
+
* @example
|
|
70
|
+
* 139
|
|
71
|
+
*/
|
|
72
|
+
fileSize?: number;
|
|
73
|
+
/**
|
|
74
|
+
* @example
|
|
75
|
+
* pg-**
|
|
76
|
+
*/
|
|
77
|
+
policyId?: string;
|
|
78
|
+
/**
|
|
79
|
+
* @example
|
|
80
|
+
* 2025-12-18T06:02:25Z
|
|
81
|
+
*/
|
|
82
|
+
recordEndTime?: string;
|
|
83
|
+
/**
|
|
84
|
+
* @example
|
|
85
|
+
* 1774656000000
|
|
86
|
+
*/
|
|
87
|
+
recordExpire?: number;
|
|
88
|
+
/**
|
|
89
|
+
* @example
|
|
90
|
+
* 2025-12-18T06:02:25Z
|
|
91
|
+
*/
|
|
92
|
+
recordStartTime?: string;
|
|
93
|
+
/**
|
|
94
|
+
* @example
|
|
95
|
+
* period
|
|
96
|
+
*/
|
|
97
|
+
recordType?: number;
|
|
98
|
+
/**
|
|
99
|
+
* @example
|
|
100
|
+
* cn-beijing
|
|
101
|
+
*/
|
|
102
|
+
regionId?: string;
|
|
103
|
+
/**
|
|
104
|
+
* @example
|
|
105
|
+
* rg-f3s3dgt8dtb0vlqc8
|
|
106
|
+
*/
|
|
107
|
+
resourceGroupId?: string;
|
|
108
|
+
/**
|
|
109
|
+
* @example
|
|
110
|
+
* resource
|
|
111
|
+
*/
|
|
112
|
+
resourceGroupName?: string;
|
|
113
|
+
/**
|
|
114
|
+
* @example
|
|
115
|
+
* 1
|
|
116
|
+
*/
|
|
117
|
+
status?: number;
|
|
118
|
+
static names(): { [key: string]: string } {
|
|
119
|
+
return {
|
|
120
|
+
desktopId: 'DesktopId',
|
|
121
|
+
desktopName: 'DesktopName',
|
|
122
|
+
endUserId: 'EndUserId',
|
|
123
|
+
eventDetails: 'EventDetails',
|
|
124
|
+
fileName: 'FileName',
|
|
125
|
+
fileSize: 'FileSize',
|
|
126
|
+
policyId: 'PolicyId',
|
|
127
|
+
recordEndTime: 'RecordEndTime',
|
|
128
|
+
recordExpire: 'RecordExpire',
|
|
129
|
+
recordStartTime: 'RecordStartTime',
|
|
130
|
+
recordType: 'RecordType',
|
|
131
|
+
regionId: 'RegionId',
|
|
132
|
+
resourceGroupId: 'ResourceGroupId',
|
|
133
|
+
resourceGroupName: 'ResourceGroupName',
|
|
134
|
+
status: 'Status',
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
static types(): { [key: string]: any } {
|
|
139
|
+
return {
|
|
140
|
+
desktopId: 'string',
|
|
141
|
+
desktopName: 'string',
|
|
142
|
+
endUserId: 'string',
|
|
143
|
+
eventDetails: { 'type': 'array', 'itemType': DescribeRecordFileResponseBodyRecordFilesEventDetails },
|
|
144
|
+
fileName: 'string',
|
|
145
|
+
fileSize: 'number',
|
|
146
|
+
policyId: 'string',
|
|
147
|
+
recordEndTime: 'string',
|
|
148
|
+
recordExpire: 'number',
|
|
149
|
+
recordStartTime: 'string',
|
|
150
|
+
recordType: 'number',
|
|
151
|
+
regionId: 'string',
|
|
152
|
+
resourceGroupId: 'string',
|
|
153
|
+
resourceGroupName: 'string',
|
|
154
|
+
status: 'number',
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
validate() {
|
|
159
|
+
if(Array.isArray(this.eventDetails)) {
|
|
160
|
+
$dara.Model.validateArray(this.eventDetails);
|
|
161
|
+
}
|
|
162
|
+
super.validate();
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
constructor(map?: { [key: string]: any }) {
|
|
166
|
+
super(map);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export class DescribeRecordFileResponseBody extends $dara.Model {
|
|
171
|
+
recordFiles?: DescribeRecordFileResponseBodyRecordFiles[];
|
|
172
|
+
/**
|
|
173
|
+
* @remarks
|
|
174
|
+
* RequestId
|
|
175
|
+
*
|
|
176
|
+
* @example
|
|
177
|
+
* 05C2791F-41A7-5E7C-B5E4-1401FD0E****
|
|
178
|
+
*/
|
|
179
|
+
requestId?: string;
|
|
180
|
+
/**
|
|
181
|
+
* @example
|
|
182
|
+
* 2
|
|
183
|
+
*/
|
|
184
|
+
totalCount?: number;
|
|
185
|
+
static names(): { [key: string]: string } {
|
|
186
|
+
return {
|
|
187
|
+
recordFiles: 'RecordFiles',
|
|
188
|
+
requestId: 'RequestId',
|
|
189
|
+
totalCount: 'TotalCount',
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
static types(): { [key: string]: any } {
|
|
194
|
+
return {
|
|
195
|
+
recordFiles: { 'type': 'array', 'itemType': DescribeRecordFileResponseBodyRecordFiles },
|
|
196
|
+
requestId: 'string',
|
|
197
|
+
totalCount: 'number',
|
|
198
|
+
};
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
validate() {
|
|
202
|
+
if(Array.isArray(this.recordFiles)) {
|
|
203
|
+
$dara.Model.validateArray(this.recordFiles);
|
|
204
|
+
}
|
|
205
|
+
super.validate();
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
constructor(map?: { [key: string]: any }) {
|
|
209
|
+
super(map);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -164,6 +164,8 @@ export { DescribePriceResponseBodyPriceInfo } from './DescribePriceResponseBody'
|
|
|
164
164
|
export { DescribePriceForCreateDesktopOversoldGroupResponseBodyData } from './DescribePriceForCreateDesktopOversoldGroupResponseBody';
|
|
165
165
|
export { DescribePriceForModifyDesktopOversoldGroupSaleResponseBodyData } from './DescribePriceForModifyDesktopOversoldGroupSaleResponseBody';
|
|
166
166
|
export { DescribePriceForRenewDesktopOversoldGroupResponseBodyData } from './DescribePriceForRenewDesktopOversoldGroupResponseBody';
|
|
167
|
+
export { DescribeRecordFileResponseBodyRecordFilesEventDetails } from './DescribeRecordFileResponseBody';
|
|
168
|
+
export { DescribeRecordFileResponseBodyRecordFiles } from './DescribeRecordFileResponseBody';
|
|
167
169
|
export { DescribeRecordingsResponseBodyRecordings } from './DescribeRecordingsResponseBody';
|
|
168
170
|
export { DescribeRefundPriceResponseBodyPriceInfo } from './DescribeRefundPriceResponseBody';
|
|
169
171
|
export { DescribeRegionsResponseBodyRegions } from './DescribeRegionsResponseBody';
|
|
@@ -702,6 +704,9 @@ export { DescribePriceForModifyDesktopOversoldGroupSaleResponse } from './Descri
|
|
|
702
704
|
export { DescribePriceForRenewDesktopOversoldGroupRequest } from './DescribePriceForRenewDesktopOversoldGroupRequest';
|
|
703
705
|
export { DescribePriceForRenewDesktopOversoldGroupResponseBody } from './DescribePriceForRenewDesktopOversoldGroupResponseBody';
|
|
704
706
|
export { DescribePriceForRenewDesktopOversoldGroupResponse } from './DescribePriceForRenewDesktopOversoldGroupResponse';
|
|
707
|
+
export { DescribeRecordFileRequest } from './DescribeRecordFileRequest';
|
|
708
|
+
export { DescribeRecordFileResponseBody } from './DescribeRecordFileResponseBody';
|
|
709
|
+
export { DescribeRecordFileResponse } from './DescribeRecordFileResponse';
|
|
705
710
|
export { DescribeRecordingsRequest } from './DescribeRecordingsRequest';
|
|
706
711
|
export { DescribeRecordingsResponseBody } from './DescribeRecordingsResponseBody';
|
|
707
712
|
export { DescribeRecordingsResponse } from './DescribeRecordingsResponse';
|