tencentcloud-sdk-nodejs-rum 4.0.271 → 4.0.275
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/CHANGELOG.md +887 -0
- package/SERVICE_CHANGELOG.md +963 -47
- package/package.json +1 -1
- package/products.md +41 -41
- package/src/services/rum/v20210622/rum_client.ts +36 -12
- package/src/services/rum/v20210622/rum_models.ts +489 -219
- package/tencentcloud/services/rum/v20210622/rum_client.d.ts +9 -1
- package/tencentcloud/services/rum/v20210622/rum_client.js +12 -0
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +436 -216
|
@@ -1,3 +1,170 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* project Score分数实体
|
|
3
|
+
*/
|
|
4
|
+
export interface ScoreInfo {
|
|
5
|
+
/**
|
|
6
|
+
* duration
|
|
7
|
+
*/
|
|
8
|
+
StaticDuration: string;
|
|
9
|
+
/**
|
|
10
|
+
* pv
|
|
11
|
+
*/
|
|
12
|
+
PagePv: string;
|
|
13
|
+
/**
|
|
14
|
+
* 失败
|
|
15
|
+
*/
|
|
16
|
+
ApiFail: string;
|
|
17
|
+
/**
|
|
18
|
+
* 请求
|
|
19
|
+
*/
|
|
20
|
+
ApiNum: string;
|
|
21
|
+
/**
|
|
22
|
+
* fail
|
|
23
|
+
*/
|
|
24
|
+
StaticFail: string;
|
|
25
|
+
/**
|
|
26
|
+
* 项目id
|
|
27
|
+
*/
|
|
28
|
+
ProjectID: number;
|
|
29
|
+
/**
|
|
30
|
+
* uv
|
|
31
|
+
*/
|
|
32
|
+
PageUv: string;
|
|
33
|
+
/**
|
|
34
|
+
* 请求次数
|
|
35
|
+
*/
|
|
36
|
+
ApiDuration: string;
|
|
37
|
+
/**
|
|
38
|
+
* 分数
|
|
39
|
+
*/
|
|
40
|
+
Score: string;
|
|
41
|
+
/**
|
|
42
|
+
* error
|
|
43
|
+
*/
|
|
44
|
+
PageError: string;
|
|
45
|
+
/**
|
|
46
|
+
* num
|
|
47
|
+
*/
|
|
48
|
+
StaticNum: string;
|
|
49
|
+
/**
|
|
50
|
+
* num
|
|
51
|
+
*/
|
|
52
|
+
RecordNum: number;
|
|
53
|
+
/**
|
|
54
|
+
* Duration
|
|
55
|
+
*/
|
|
56
|
+
PageDuration: string;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* DescribeProjects请求参数结构体
|
|
60
|
+
*/
|
|
61
|
+
export interface DescribeProjectsRequest {
|
|
62
|
+
/**
|
|
63
|
+
* 分页每页数目,整型
|
|
64
|
+
*/
|
|
65
|
+
Limit: number;
|
|
66
|
+
/**
|
|
67
|
+
* 分页页码,整型
|
|
68
|
+
*/
|
|
69
|
+
Offset: number;
|
|
70
|
+
/**
|
|
71
|
+
* 过滤条件
|
|
72
|
+
*/
|
|
73
|
+
Filters?: Array<Filter>;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* DescribeDataEventUrl请求参数结构体
|
|
77
|
+
*/
|
|
78
|
+
export interface DescribeDataEventUrlRequest {
|
|
79
|
+
/**
|
|
80
|
+
* 开始时间
|
|
81
|
+
*/
|
|
82
|
+
StartTime: number;
|
|
83
|
+
/**
|
|
84
|
+
* 类型
|
|
85
|
+
*/
|
|
86
|
+
Type: string;
|
|
87
|
+
/**
|
|
88
|
+
* 结束时间
|
|
89
|
+
*/
|
|
90
|
+
EndTime: number;
|
|
91
|
+
/**
|
|
92
|
+
* 项目ID
|
|
93
|
+
*/
|
|
94
|
+
ID: number;
|
|
95
|
+
/**
|
|
96
|
+
* 自定义2
|
|
97
|
+
*/
|
|
98
|
+
ExtSecond?: string;
|
|
99
|
+
/**
|
|
100
|
+
* 浏览器引擎
|
|
101
|
+
*/
|
|
102
|
+
Engine?: string;
|
|
103
|
+
/**
|
|
104
|
+
* 运营商
|
|
105
|
+
*/
|
|
106
|
+
Isp?: string;
|
|
107
|
+
/**
|
|
108
|
+
* 来源页面
|
|
109
|
+
*/
|
|
110
|
+
From?: string;
|
|
111
|
+
/**
|
|
112
|
+
* 日志等级
|
|
113
|
+
*/
|
|
114
|
+
Level?: string;
|
|
115
|
+
/**
|
|
116
|
+
* 品牌
|
|
117
|
+
*/
|
|
118
|
+
Brand?: string;
|
|
119
|
+
/**
|
|
120
|
+
* 地区
|
|
121
|
+
*/
|
|
122
|
+
Area?: string;
|
|
123
|
+
/**
|
|
124
|
+
* 版本
|
|
125
|
+
*/
|
|
126
|
+
VersionNum?: string;
|
|
127
|
+
/**
|
|
128
|
+
* 平台
|
|
129
|
+
*/
|
|
130
|
+
Platform?: string;
|
|
131
|
+
/**
|
|
132
|
+
* 自定义3
|
|
133
|
+
*/
|
|
134
|
+
ExtThird?: string;
|
|
135
|
+
/**
|
|
136
|
+
* 自定义1
|
|
137
|
+
*/
|
|
138
|
+
ExtFirst?: string;
|
|
139
|
+
/**
|
|
140
|
+
* 网络类型
|
|
141
|
+
*/
|
|
142
|
+
NetType?: string;
|
|
143
|
+
/**
|
|
144
|
+
* 机型
|
|
145
|
+
*/
|
|
146
|
+
Device?: string;
|
|
147
|
+
/**
|
|
148
|
+
* 是否海外
|
|
149
|
+
*/
|
|
150
|
+
IsAbroad?: string;
|
|
151
|
+
/**
|
|
152
|
+
* 操作系统
|
|
153
|
+
*/
|
|
154
|
+
Os?: string;
|
|
155
|
+
/**
|
|
156
|
+
* 浏览器
|
|
157
|
+
*/
|
|
158
|
+
Browser?: string;
|
|
159
|
+
/**
|
|
160
|
+
* 筛选条件
|
|
161
|
+
*/
|
|
162
|
+
Name?: string;
|
|
163
|
+
/**
|
|
164
|
+
* 环境
|
|
165
|
+
*/
|
|
166
|
+
Env?: string;
|
|
167
|
+
}
|
|
1
168
|
/**
|
|
2
169
|
* Rum 项目信息
|
|
3
170
|
*/
|
|
@@ -68,24 +235,28 @@ export interface RumProject {
|
|
|
68
235
|
IsStar: number;
|
|
69
236
|
}
|
|
70
237
|
/**
|
|
71
|
-
*
|
|
238
|
+
* DescribeProjects返回参数结构体
|
|
72
239
|
*/
|
|
73
|
-
export interface
|
|
240
|
+
export interface DescribeProjectsResponse {
|
|
74
241
|
/**
|
|
75
|
-
*
|
|
242
|
+
* 列表总数
|
|
76
243
|
*/
|
|
77
|
-
|
|
244
|
+
TotalCount: number;
|
|
245
|
+
/**
|
|
246
|
+
* 项目列表
|
|
247
|
+
*/
|
|
248
|
+
ProjectSet: Array<RumProject>;
|
|
78
249
|
/**
|
|
79
250
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
80
251
|
*/
|
|
81
252
|
RequestId?: string;
|
|
82
253
|
}
|
|
83
254
|
/**
|
|
84
|
-
*
|
|
255
|
+
* DescribeDataFetchUrl返回参数结构体
|
|
85
256
|
*/
|
|
86
|
-
export interface
|
|
257
|
+
export interface DescribeDataFetchUrlResponse {
|
|
87
258
|
/**
|
|
88
|
-
*
|
|
259
|
+
* 返回值
|
|
89
260
|
*/
|
|
90
261
|
Result: string;
|
|
91
262
|
/**
|
|
@@ -94,319 +265,292 @@ export interface DescribeLogListResponse {
|
|
|
94
265
|
RequestId?: string;
|
|
95
266
|
}
|
|
96
267
|
/**
|
|
97
|
-
*
|
|
268
|
+
* DescribeError请求参数结构体
|
|
98
269
|
*/
|
|
99
|
-
export interface
|
|
100
|
-
/**
|
|
101
|
-
* 项目ID
|
|
102
|
-
*/
|
|
103
|
-
ID: number;
|
|
270
|
+
export interface DescribeErrorRequest {
|
|
104
271
|
/**
|
|
105
|
-
*
|
|
272
|
+
* 日期
|
|
106
273
|
*/
|
|
107
|
-
|
|
274
|
+
Date: string;
|
|
108
275
|
/**
|
|
109
|
-
*
|
|
276
|
+
* 项目ID
|
|
110
277
|
*/
|
|
111
|
-
|
|
278
|
+
ID: number;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* DescribeLogList请求参数结构体
|
|
282
|
+
*/
|
|
283
|
+
export interface DescribeLogListRequest {
|
|
112
284
|
/**
|
|
113
|
-
*
|
|
285
|
+
* 排序方式 desc asc
|
|
114
286
|
*/
|
|
115
|
-
|
|
287
|
+
Sort: string;
|
|
116
288
|
/**
|
|
117
|
-
*
|
|
289
|
+
* searchlog histogram
|
|
118
290
|
*/
|
|
119
|
-
|
|
291
|
+
ActionType: string;
|
|
120
292
|
/**
|
|
121
|
-
*
|
|
293
|
+
* 项目ID
|
|
122
294
|
*/
|
|
123
|
-
|
|
295
|
+
ID: number;
|
|
124
296
|
/**
|
|
125
|
-
*
|
|
297
|
+
* 开始时间
|
|
126
298
|
*/
|
|
127
|
-
|
|
299
|
+
StartTime?: string;
|
|
128
300
|
/**
|
|
129
|
-
*
|
|
301
|
+
* 单次查询返回的原始日志条数,最大值为100
|
|
130
302
|
*/
|
|
131
|
-
|
|
303
|
+
Limit?: number;
|
|
132
304
|
/**
|
|
133
|
-
*
|
|
305
|
+
* 上下文,加载更多日志时使用,透传上次返回的 Context 值,获取后续的日志内容,总计最多可获取1万条原始日志。过期时间1小时
|
|
134
306
|
*/
|
|
135
|
-
|
|
307
|
+
Context?: string;
|
|
136
308
|
/**
|
|
137
|
-
*
|
|
309
|
+
* 查询语句,语句长度最大为4096
|
|
138
310
|
*/
|
|
139
|
-
|
|
311
|
+
Query?: string;
|
|
140
312
|
/**
|
|
141
|
-
*
|
|
313
|
+
* 结束时间
|
|
142
314
|
*/
|
|
143
|
-
|
|
315
|
+
EndTime?: string;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* DescribeScores返回参数结构体
|
|
319
|
+
*/
|
|
320
|
+
export interface DescribeScoresResponse {
|
|
144
321
|
/**
|
|
145
|
-
*
|
|
322
|
+
* 数组
|
|
146
323
|
*/
|
|
147
|
-
|
|
324
|
+
ScoreSet: Array<ScoreInfo>;
|
|
148
325
|
/**
|
|
149
|
-
*
|
|
326
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
150
327
|
*/
|
|
151
|
-
|
|
328
|
+
RequestId?: string;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* DescribeError返回参数结构体
|
|
332
|
+
*/
|
|
333
|
+
export interface DescribeErrorResponse {
|
|
152
334
|
/**
|
|
153
|
-
*
|
|
335
|
+
* 内容
|
|
154
336
|
*/
|
|
155
|
-
|
|
337
|
+
Content: string;
|
|
156
338
|
/**
|
|
157
|
-
*
|
|
339
|
+
* 项目ID
|
|
158
340
|
*/
|
|
159
|
-
|
|
341
|
+
ID: number;
|
|
160
342
|
/**
|
|
161
|
-
*
|
|
343
|
+
* 时间
|
|
162
344
|
*/
|
|
163
|
-
|
|
345
|
+
CreateTime: string;
|
|
164
346
|
/**
|
|
165
|
-
*
|
|
347
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
166
348
|
*/
|
|
167
|
-
|
|
349
|
+
RequestId?: string;
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* DescribeDataLogUrlStatistics请求参数结构体
|
|
353
|
+
*/
|
|
354
|
+
export interface DescribeDataLogUrlStatisticsRequest {
|
|
168
355
|
/**
|
|
169
|
-
*
|
|
356
|
+
* 开始时间
|
|
170
357
|
*/
|
|
171
|
-
|
|
358
|
+
StartTime: number;
|
|
172
359
|
/**
|
|
173
|
-
*
|
|
360
|
+
* "analysis", "compare", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
|
174
361
|
*/
|
|
175
|
-
|
|
362
|
+
Type: string;
|
|
176
363
|
/**
|
|
177
|
-
*
|
|
364
|
+
* 结束时间
|
|
178
365
|
*/
|
|
179
|
-
|
|
366
|
+
EndTime: number;
|
|
180
367
|
/**
|
|
181
|
-
*
|
|
368
|
+
* 项目ID
|
|
182
369
|
*/
|
|
183
|
-
|
|
370
|
+
ID: number;
|
|
184
371
|
/**
|
|
185
|
-
*
|
|
372
|
+
* 自定义2
|
|
186
373
|
*/
|
|
187
|
-
|
|
188
|
-
}
|
|
189
|
-
/**
|
|
190
|
-
* DescribeProjects返回参数结构体
|
|
191
|
-
*/
|
|
192
|
-
export interface DescribeProjectsResponse {
|
|
374
|
+
ExtSecond?: string;
|
|
193
375
|
/**
|
|
194
|
-
*
|
|
376
|
+
* 浏览器引擎
|
|
195
377
|
*/
|
|
196
|
-
|
|
378
|
+
Engine?: string;
|
|
197
379
|
/**
|
|
198
|
-
*
|
|
380
|
+
* 运营商
|
|
199
381
|
*/
|
|
200
|
-
|
|
382
|
+
Isp?: string;
|
|
201
383
|
/**
|
|
202
|
-
*
|
|
384
|
+
* 来源页面
|
|
203
385
|
*/
|
|
204
|
-
|
|
205
|
-
}
|
|
206
|
-
/**
|
|
207
|
-
* DescribeScores请求参数结构体
|
|
208
|
-
*/
|
|
209
|
-
export interface DescribeScoresRequest {
|
|
386
|
+
From?: string;
|
|
210
387
|
/**
|
|
211
|
-
*
|
|
388
|
+
* 日志等级
|
|
212
389
|
*/
|
|
213
|
-
|
|
390
|
+
Level?: string;
|
|
214
391
|
/**
|
|
215
|
-
*
|
|
392
|
+
* 品牌
|
|
216
393
|
*/
|
|
217
|
-
|
|
394
|
+
Brand?: string;
|
|
218
395
|
/**
|
|
219
|
-
*
|
|
396
|
+
* 地区
|
|
220
397
|
*/
|
|
221
|
-
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* DescribeError请求参数结构体
|
|
225
|
-
*/
|
|
226
|
-
export interface DescribeErrorRequest {
|
|
398
|
+
Area?: string;
|
|
227
399
|
/**
|
|
228
|
-
*
|
|
400
|
+
* 版本
|
|
229
401
|
*/
|
|
230
|
-
|
|
402
|
+
VersionNum?: string;
|
|
231
403
|
/**
|
|
232
|
-
*
|
|
404
|
+
* 平台
|
|
233
405
|
*/
|
|
234
|
-
|
|
235
|
-
}
|
|
236
|
-
/**
|
|
237
|
-
* project Score分数实体
|
|
238
|
-
*/
|
|
239
|
-
export interface ScoreInfo {
|
|
406
|
+
Platform?: string;
|
|
240
407
|
/**
|
|
241
|
-
*
|
|
408
|
+
* 自定义3
|
|
242
409
|
*/
|
|
243
|
-
|
|
410
|
+
ExtThird?: string;
|
|
244
411
|
/**
|
|
245
|
-
*
|
|
412
|
+
* 自定义1
|
|
246
413
|
*/
|
|
247
|
-
|
|
414
|
+
ExtFirst?: string;
|
|
248
415
|
/**
|
|
249
|
-
*
|
|
416
|
+
* 网络类型
|
|
250
417
|
*/
|
|
251
|
-
|
|
418
|
+
NetType?: string;
|
|
252
419
|
/**
|
|
253
|
-
*
|
|
420
|
+
* 机型
|
|
254
421
|
*/
|
|
255
|
-
|
|
422
|
+
Device?: string;
|
|
256
423
|
/**
|
|
257
|
-
*
|
|
424
|
+
* 是否海外
|
|
258
425
|
*/
|
|
259
|
-
|
|
426
|
+
IsAbroad?: string;
|
|
260
427
|
/**
|
|
261
|
-
*
|
|
428
|
+
* 操作系统
|
|
262
429
|
*/
|
|
263
|
-
|
|
430
|
+
Os?: string;
|
|
264
431
|
/**
|
|
265
|
-
*
|
|
432
|
+
* 浏览器
|
|
266
433
|
*/
|
|
267
|
-
|
|
434
|
+
Browser?: string;
|
|
268
435
|
/**
|
|
269
|
-
*
|
|
436
|
+
* 环境区分
|
|
270
437
|
*/
|
|
271
|
-
|
|
438
|
+
Env?: string;
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* DescribeDataPerformancePage请求参数结构体
|
|
442
|
+
*/
|
|
443
|
+
export interface DescribeDataPerformancePageRequest {
|
|
272
444
|
/**
|
|
273
|
-
*
|
|
445
|
+
* 项目ID
|
|
274
446
|
*/
|
|
275
|
-
|
|
447
|
+
ID: number;
|
|
276
448
|
/**
|
|
277
|
-
*
|
|
449
|
+
* 开始时间
|
|
278
450
|
*/
|
|
279
|
-
|
|
451
|
+
StartTime: number;
|
|
280
452
|
/**
|
|
281
|
-
*
|
|
453
|
+
* 结束时间
|
|
282
454
|
*/
|
|
283
|
-
|
|
455
|
+
EndTime: number;
|
|
284
456
|
/**
|
|
285
|
-
*
|
|
457
|
+
* ["pagepv", "allcount"]
|
|
286
458
|
*/
|
|
287
|
-
|
|
459
|
+
Type: string;
|
|
288
460
|
/**
|
|
289
|
-
*
|
|
461
|
+
* 日志等级
|
|
290
462
|
*/
|
|
291
|
-
|
|
292
|
-
}
|
|
293
|
-
/**
|
|
294
|
-
* DescribeProjects请求参数结构体
|
|
295
|
-
*/
|
|
296
|
-
export interface DescribeProjectsRequest {
|
|
463
|
+
Level?: string;
|
|
297
464
|
/**
|
|
298
|
-
*
|
|
465
|
+
* 运营商
|
|
299
466
|
*/
|
|
300
|
-
|
|
467
|
+
Isp?: string;
|
|
301
468
|
/**
|
|
302
|
-
*
|
|
469
|
+
* 地区
|
|
303
470
|
*/
|
|
304
|
-
|
|
471
|
+
Area?: string;
|
|
305
472
|
/**
|
|
306
|
-
*
|
|
473
|
+
* 网络类型
|
|
307
474
|
*/
|
|
308
|
-
|
|
309
|
-
}
|
|
310
|
-
/**
|
|
311
|
-
* DescribeDataEventUrl返回参数结构体
|
|
312
|
-
*/
|
|
313
|
-
export interface DescribeDataEventUrlResponse {
|
|
475
|
+
NetType?: string;
|
|
314
476
|
/**
|
|
315
|
-
*
|
|
477
|
+
* 平台
|
|
316
478
|
*/
|
|
317
|
-
|
|
479
|
+
Platform?: string;
|
|
318
480
|
/**
|
|
319
|
-
*
|
|
481
|
+
* 机型
|
|
320
482
|
*/
|
|
321
|
-
|
|
322
|
-
}
|
|
323
|
-
/**
|
|
324
|
-
* DescribeLogList请求参数结构体
|
|
325
|
-
*/
|
|
326
|
-
export interface DescribeLogListRequest {
|
|
483
|
+
Device?: string;
|
|
327
484
|
/**
|
|
328
|
-
*
|
|
485
|
+
* 版本
|
|
329
486
|
*/
|
|
330
|
-
|
|
487
|
+
VersionNum?: string;
|
|
331
488
|
/**
|
|
332
|
-
*
|
|
489
|
+
* 自定义1
|
|
333
490
|
*/
|
|
334
|
-
|
|
491
|
+
ExtFirst?: string;
|
|
335
492
|
/**
|
|
336
|
-
*
|
|
493
|
+
* 自定义2
|
|
337
494
|
*/
|
|
338
|
-
|
|
495
|
+
ExtSecond?: string;
|
|
339
496
|
/**
|
|
340
|
-
*
|
|
497
|
+
* 自定义3
|
|
341
498
|
*/
|
|
342
|
-
|
|
499
|
+
ExtThird?: string;
|
|
343
500
|
/**
|
|
344
|
-
*
|
|
501
|
+
* 是否海外
|
|
345
502
|
*/
|
|
346
|
-
|
|
503
|
+
IsAbroad?: string;
|
|
347
504
|
/**
|
|
348
|
-
*
|
|
505
|
+
* 浏览器
|
|
349
506
|
*/
|
|
350
|
-
|
|
507
|
+
Browser?: string;
|
|
351
508
|
/**
|
|
352
|
-
*
|
|
509
|
+
* 操作系统
|
|
353
510
|
*/
|
|
354
|
-
|
|
511
|
+
Os?: string;
|
|
355
512
|
/**
|
|
356
|
-
*
|
|
513
|
+
* 浏览器引擎
|
|
357
514
|
*/
|
|
358
|
-
|
|
359
|
-
}
|
|
360
|
-
/**
|
|
361
|
-
* 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
362
|
-
|
|
363
|
-
· 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
|
|
364
|
-
· 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
|
|
365
|
-
*/
|
|
366
|
-
export interface Filter {
|
|
515
|
+
Engine?: string;
|
|
367
516
|
/**
|
|
368
|
-
*
|
|
517
|
+
* 品牌
|
|
369
518
|
*/
|
|
370
|
-
|
|
519
|
+
Brand?: string;
|
|
371
520
|
/**
|
|
372
|
-
*
|
|
521
|
+
* 来源页面
|
|
373
522
|
*/
|
|
374
|
-
|
|
375
|
-
}
|
|
376
|
-
/**
|
|
377
|
-
* DescribeDataLogUrlStatistics返回参数结构体
|
|
378
|
-
*/
|
|
379
|
-
export interface DescribeDataLogUrlStatisticsResponse {
|
|
523
|
+
From?: string;
|
|
380
524
|
/**
|
|
381
|
-
*
|
|
525
|
+
* 耗时计算方式
|
|
382
526
|
*/
|
|
383
|
-
|
|
527
|
+
CostType?: string;
|
|
384
528
|
/**
|
|
385
|
-
*
|
|
529
|
+
* 环境变量
|
|
386
530
|
*/
|
|
387
|
-
|
|
531
|
+
Env?: string;
|
|
388
532
|
}
|
|
389
533
|
/**
|
|
390
|
-
*
|
|
534
|
+
* DescribeScores请求参数结构体
|
|
391
535
|
*/
|
|
392
|
-
export interface
|
|
536
|
+
export interface DescribeScoresRequest {
|
|
393
537
|
/**
|
|
394
|
-
*
|
|
538
|
+
* 结束时间
|
|
395
539
|
*/
|
|
396
|
-
|
|
540
|
+
EndTime: string;
|
|
397
541
|
/**
|
|
398
|
-
*
|
|
542
|
+
* 开始时间
|
|
399
543
|
*/
|
|
400
|
-
|
|
544
|
+
StartTime: string;
|
|
401
545
|
/**
|
|
402
|
-
*
|
|
546
|
+
* 项目ID
|
|
403
547
|
*/
|
|
404
|
-
|
|
548
|
+
ID?: number;
|
|
405
549
|
}
|
|
406
550
|
/**
|
|
407
|
-
*
|
|
551
|
+
* DescribeDataFetchUrl请求参数结构体
|
|
408
552
|
*/
|
|
409
|
-
export interface
|
|
553
|
+
export interface DescribeDataFetchUrlRequest {
|
|
410
554
|
/**
|
|
411
555
|
* 开始时间
|
|
412
556
|
*/
|
|
@@ -488,14 +632,61 @@ export interface DescribeDataEventUrlRequest {
|
|
|
488
632
|
*/
|
|
489
633
|
Browser?: string;
|
|
490
634
|
/**
|
|
491
|
-
*
|
|
635
|
+
* 耗时计算方式
|
|
492
636
|
*/
|
|
493
|
-
|
|
637
|
+
CostType?: string;
|
|
638
|
+
/**
|
|
639
|
+
* 来源
|
|
640
|
+
*/
|
|
641
|
+
Url?: string;
|
|
494
642
|
/**
|
|
495
643
|
* 环境
|
|
496
644
|
*/
|
|
497
645
|
Env?: string;
|
|
498
646
|
}
|
|
647
|
+
/**
|
|
648
|
+
* DescribeDataLogUrlStatistics返回参数结构体
|
|
649
|
+
*/
|
|
650
|
+
export interface DescribeDataLogUrlStatisticsResponse {
|
|
651
|
+
/**
|
|
652
|
+
* 返回值
|
|
653
|
+
*/
|
|
654
|
+
Result: string;
|
|
655
|
+
/**
|
|
656
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
657
|
+
*/
|
|
658
|
+
RequestId?: string;
|
|
659
|
+
}
|
|
660
|
+
/**
|
|
661
|
+
* CreateProject返回参数结构体
|
|
662
|
+
*/
|
|
663
|
+
export interface CreateProjectResponse {
|
|
664
|
+
/**
|
|
665
|
+
* 项目 id
|
|
666
|
+
*/
|
|
667
|
+
ID: number;
|
|
668
|
+
/**
|
|
669
|
+
* 项目唯一key
|
|
670
|
+
*/
|
|
671
|
+
Key: string;
|
|
672
|
+
/**
|
|
673
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
674
|
+
*/
|
|
675
|
+
RequestId?: string;
|
|
676
|
+
}
|
|
677
|
+
/**
|
|
678
|
+
* DescribeDataFetchUrlInfo返回参数结构体
|
|
679
|
+
*/
|
|
680
|
+
export interface DescribeDataFetchUrlInfoResponse {
|
|
681
|
+
/**
|
|
682
|
+
* 返回值
|
|
683
|
+
*/
|
|
684
|
+
Result: string;
|
|
685
|
+
/**
|
|
686
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
687
|
+
*/
|
|
688
|
+
RequestId?: string;
|
|
689
|
+
}
|
|
499
690
|
/**
|
|
500
691
|
* DescribeDataPvUrlStatistics请求参数结构体
|
|
501
692
|
*/
|
|
@@ -586,36 +777,57 @@ export interface DescribeDataPvUrlStatisticsRequest {
|
|
|
586
777
|
Env?: string;
|
|
587
778
|
}
|
|
588
779
|
/**
|
|
589
|
-
*
|
|
780
|
+
* 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
781
|
+
|
|
782
|
+
· 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
|
|
783
|
+
· 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
|
|
590
784
|
*/
|
|
591
|
-
export interface
|
|
785
|
+
export interface Filter {
|
|
592
786
|
/**
|
|
593
|
-
*
|
|
787
|
+
* 一个或者多个过滤值。
|
|
594
788
|
*/
|
|
595
|
-
|
|
789
|
+
Values?: Array<string>;
|
|
596
790
|
/**
|
|
597
|
-
*
|
|
791
|
+
* 过滤键的名称。
|
|
598
792
|
*/
|
|
599
|
-
|
|
793
|
+
Name?: string;
|
|
794
|
+
}
|
|
795
|
+
/**
|
|
796
|
+
* DescribeDataPerformancePage返回参数结构体
|
|
797
|
+
*/
|
|
798
|
+
export interface DescribeDataPerformancePageResponse {
|
|
600
799
|
/**
|
|
601
|
-
*
|
|
800
|
+
* 返回值
|
|
602
801
|
*/
|
|
603
|
-
|
|
802
|
+
Result: string;
|
|
604
803
|
/**
|
|
605
804
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
606
805
|
*/
|
|
607
806
|
RequestId?: string;
|
|
608
807
|
}
|
|
609
808
|
/**
|
|
610
|
-
*
|
|
809
|
+
* DescribeDataEventUrl返回参数结构体
|
|
611
810
|
*/
|
|
612
|
-
export interface
|
|
811
|
+
export interface DescribeDataEventUrlResponse {
|
|
812
|
+
/**
|
|
813
|
+
* 返回值
|
|
814
|
+
*/
|
|
815
|
+
Result: string;
|
|
816
|
+
/**
|
|
817
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
818
|
+
*/
|
|
819
|
+
RequestId?: string;
|
|
820
|
+
}
|
|
821
|
+
/**
|
|
822
|
+
* DescribeDataFetchUrlInfo请求参数结构体
|
|
823
|
+
*/
|
|
824
|
+
export interface DescribeDataFetchUrlInfoRequest {
|
|
613
825
|
/**
|
|
614
826
|
* 开始时间
|
|
615
827
|
*/
|
|
616
828
|
StartTime: number;
|
|
617
829
|
/**
|
|
618
|
-
*
|
|
830
|
+
* 类型
|
|
619
831
|
*/
|
|
620
832
|
Type: string;
|
|
621
833
|
/**
|
|
@@ -691,10 +903,31 @@ export interface DescribeDataLogUrlStatisticsRequest {
|
|
|
691
903
|
*/
|
|
692
904
|
Browser?: string;
|
|
693
905
|
/**
|
|
694
|
-
*
|
|
906
|
+
* 耗时计算方式
|
|
907
|
+
*/
|
|
908
|
+
CostType?: string;
|
|
909
|
+
/**
|
|
910
|
+
* 来源
|
|
911
|
+
*/
|
|
912
|
+
Url?: string;
|
|
913
|
+
/**
|
|
914
|
+
* 环境
|
|
695
915
|
*/
|
|
696
916
|
Env?: string;
|
|
697
917
|
}
|
|
918
|
+
/**
|
|
919
|
+
* DescribeLogList返回参数结构体
|
|
920
|
+
*/
|
|
921
|
+
export interface DescribeLogListResponse {
|
|
922
|
+
/**
|
|
923
|
+
* 返回字符串
|
|
924
|
+
*/
|
|
925
|
+
Result: string;
|
|
926
|
+
/**
|
|
927
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
928
|
+
*/
|
|
929
|
+
RequestId?: string;
|
|
930
|
+
}
|
|
698
931
|
/**
|
|
699
932
|
* DescribeDataPvUrlStatistics返回参数结构体
|
|
700
933
|
*/
|
|
@@ -745,16 +978,3 @@ export interface CreateProjectRequest {
|
|
|
745
978
|
*/
|
|
746
979
|
Desc?: string;
|
|
747
980
|
}
|
|
748
|
-
/**
|
|
749
|
-
* DescribeScores返回参数结构体
|
|
750
|
-
*/
|
|
751
|
-
export interface DescribeScoresResponse {
|
|
752
|
-
/**
|
|
753
|
-
* 数组
|
|
754
|
-
*/
|
|
755
|
-
ScoreSet: Array<ScoreInfo>;
|
|
756
|
-
/**
|
|
757
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
758
|
-
*/
|
|
759
|
-
RequestId?: string;
|
|
760
|
-
}
|