tencentcloud-sdk-nodejs-rum 4.0.252 → 4.0.258
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 +1036 -63
- package/package.json +1 -1
- package/products.md +48 -48
- package/src/services/rum/v20210622/rum_client.ts +27 -3
- package/src/services/rum/v20210622/rum_models.ts +290 -25
- 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 +241 -25
|
@@ -80,6 +80,19 @@ export interface DescribeDataPerformancePageResponse {
|
|
|
80
80
|
*/
|
|
81
81
|
RequestId?: string;
|
|
82
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* DescribeLogList返回参数结构体
|
|
85
|
+
*/
|
|
86
|
+
export interface DescribeLogListResponse {
|
|
87
|
+
/**
|
|
88
|
+
* 返回字符串
|
|
89
|
+
*/
|
|
90
|
+
Result: string;
|
|
91
|
+
/**
|
|
92
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
93
|
+
*/
|
|
94
|
+
RequestId?: string;
|
|
95
|
+
}
|
|
83
96
|
/**
|
|
84
97
|
* DescribeDataPerformancePage请求参数结构体
|
|
85
98
|
*/
|
|
@@ -168,6 +181,10 @@ export interface DescribeDataPerformancePageRequest {
|
|
|
168
181
|
* 耗时计算方式
|
|
169
182
|
*/
|
|
170
183
|
CostType?: string;
|
|
184
|
+
/**
|
|
185
|
+
* 环境变量
|
|
186
|
+
*/
|
|
187
|
+
Env?: string;
|
|
171
188
|
}
|
|
172
189
|
/**
|
|
173
190
|
* DescribeProjects返回参数结构体
|
|
@@ -291,11 +308,11 @@ export interface DescribeProjectsRequest {
|
|
|
291
308
|
Filters?: Array<Filter>;
|
|
292
309
|
}
|
|
293
310
|
/**
|
|
294
|
-
*
|
|
311
|
+
* DescribeDataEventUrl返回参数结构体
|
|
295
312
|
*/
|
|
296
|
-
export interface
|
|
313
|
+
export interface DescribeDataEventUrlResponse {
|
|
297
314
|
/**
|
|
298
|
-
*
|
|
315
|
+
* 返回值
|
|
299
316
|
*/
|
|
300
317
|
Result: string;
|
|
301
318
|
/**
|
|
@@ -303,6 +320,43 @@ export interface DescribeLogListResponse {
|
|
|
303
320
|
*/
|
|
304
321
|
RequestId?: string;
|
|
305
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* DescribeLogList请求参数结构体
|
|
325
|
+
*/
|
|
326
|
+
export interface DescribeLogListRequest {
|
|
327
|
+
/**
|
|
328
|
+
* 排序方式 desc asc
|
|
329
|
+
*/
|
|
330
|
+
Sort: string;
|
|
331
|
+
/**
|
|
332
|
+
* searchlog histogram
|
|
333
|
+
*/
|
|
334
|
+
ActionType: string;
|
|
335
|
+
/**
|
|
336
|
+
* 项目ID
|
|
337
|
+
*/
|
|
338
|
+
ID: number;
|
|
339
|
+
/**
|
|
340
|
+
* 开始时间
|
|
341
|
+
*/
|
|
342
|
+
StartTime?: string;
|
|
343
|
+
/**
|
|
344
|
+
* 单次查询返回的原始日志条数,最大值为100
|
|
345
|
+
*/
|
|
346
|
+
Limit?: number;
|
|
347
|
+
/**
|
|
348
|
+
* 上下文,加载更多日志时使用,透传上次返回的 Context 值,获取后续的日志内容,总计最多可获取1万条原始日志。过期时间1小时
|
|
349
|
+
*/
|
|
350
|
+
Context?: string;
|
|
351
|
+
/**
|
|
352
|
+
* 查询语句,语句长度最大为4096
|
|
353
|
+
*/
|
|
354
|
+
Query?: string;
|
|
355
|
+
/**
|
|
356
|
+
* 结束时间
|
|
357
|
+
*/
|
|
358
|
+
EndTime?: string;
|
|
359
|
+
}
|
|
306
360
|
/**
|
|
307
361
|
* 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
308
362
|
|
|
@@ -350,54 +404,186 @@ export interface CreateProjectResponse {
|
|
|
350
404
|
RequestId?: string;
|
|
351
405
|
}
|
|
352
406
|
/**
|
|
353
|
-
*
|
|
407
|
+
* DescribeDataEventUrl请求参数结构体
|
|
354
408
|
*/
|
|
355
|
-
export interface
|
|
409
|
+
export interface DescribeDataEventUrlRequest {
|
|
356
410
|
/**
|
|
357
|
-
*
|
|
411
|
+
* 开始时间
|
|
358
412
|
*/
|
|
359
|
-
|
|
413
|
+
StartTime: number;
|
|
360
414
|
/**
|
|
361
|
-
*
|
|
415
|
+
* 类型
|
|
362
416
|
*/
|
|
363
|
-
|
|
417
|
+
Type: string;
|
|
418
|
+
/**
|
|
419
|
+
* 结束时间
|
|
420
|
+
*/
|
|
421
|
+
EndTime: number;
|
|
364
422
|
/**
|
|
365
423
|
* 项目ID
|
|
366
424
|
*/
|
|
367
425
|
ID: number;
|
|
368
426
|
/**
|
|
369
|
-
*
|
|
427
|
+
* 自定义2
|
|
370
428
|
*/
|
|
371
|
-
|
|
429
|
+
ExtSecond?: string;
|
|
372
430
|
/**
|
|
373
|
-
*
|
|
431
|
+
* 浏览器引擎
|
|
374
432
|
*/
|
|
375
|
-
|
|
433
|
+
Engine?: string;
|
|
376
434
|
/**
|
|
377
|
-
*
|
|
435
|
+
* 运营商
|
|
378
436
|
*/
|
|
379
|
-
|
|
437
|
+
Isp?: string;
|
|
438
|
+
/**
|
|
439
|
+
* 来源页面
|
|
440
|
+
*/
|
|
441
|
+
From?: string;
|
|
380
442
|
/**
|
|
381
|
-
*
|
|
443
|
+
* 日志等级
|
|
382
444
|
*/
|
|
383
|
-
|
|
445
|
+
Level?: string;
|
|
384
446
|
/**
|
|
385
|
-
*
|
|
447
|
+
* 品牌
|
|
386
448
|
*/
|
|
387
|
-
|
|
449
|
+
Brand?: string;
|
|
450
|
+
/**
|
|
451
|
+
* 地区
|
|
452
|
+
*/
|
|
453
|
+
Area?: string;
|
|
454
|
+
/**
|
|
455
|
+
* 版本
|
|
456
|
+
*/
|
|
457
|
+
VersionNum?: string;
|
|
458
|
+
/**
|
|
459
|
+
* 平台
|
|
460
|
+
*/
|
|
461
|
+
Platform?: string;
|
|
462
|
+
/**
|
|
463
|
+
* 自定义3
|
|
464
|
+
*/
|
|
465
|
+
ExtThird?: string;
|
|
466
|
+
/**
|
|
467
|
+
* 自定义1
|
|
468
|
+
*/
|
|
469
|
+
ExtFirst?: string;
|
|
470
|
+
/**
|
|
471
|
+
* 网络类型
|
|
472
|
+
*/
|
|
473
|
+
NetType?: string;
|
|
474
|
+
/**
|
|
475
|
+
* 机型
|
|
476
|
+
*/
|
|
477
|
+
Device?: string;
|
|
478
|
+
/**
|
|
479
|
+
* 是否海外
|
|
480
|
+
*/
|
|
481
|
+
IsAbroad?: string;
|
|
482
|
+
/**
|
|
483
|
+
* 操作系统
|
|
484
|
+
*/
|
|
485
|
+
Os?: string;
|
|
486
|
+
/**
|
|
487
|
+
* 浏览器
|
|
488
|
+
*/
|
|
489
|
+
Browser?: string;
|
|
490
|
+
/**
|
|
491
|
+
* 筛选条件
|
|
492
|
+
*/
|
|
493
|
+
Name?: string;
|
|
494
|
+
/**
|
|
495
|
+
* 环境
|
|
496
|
+
*/
|
|
497
|
+
Env?: string;
|
|
388
498
|
}
|
|
389
499
|
/**
|
|
390
|
-
*
|
|
500
|
+
* DescribeDataPvUrlStatistics请求参数结构体
|
|
391
501
|
*/
|
|
392
|
-
export interface
|
|
502
|
+
export interface DescribeDataPvUrlStatisticsRequest {
|
|
393
503
|
/**
|
|
394
|
-
*
|
|
504
|
+
* 开始时间
|
|
395
505
|
*/
|
|
396
|
-
|
|
506
|
+
StartTime: number;
|
|
397
507
|
/**
|
|
398
|
-
*
|
|
508
|
+
* 类型:"allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
|
399
509
|
*/
|
|
400
|
-
|
|
510
|
+
Type: string;
|
|
511
|
+
/**
|
|
512
|
+
* 结束时间
|
|
513
|
+
*/
|
|
514
|
+
EndTime: number;
|
|
515
|
+
/**
|
|
516
|
+
* 项目ID
|
|
517
|
+
*/
|
|
518
|
+
ID: number;
|
|
519
|
+
/**
|
|
520
|
+
* 自定义2
|
|
521
|
+
*/
|
|
522
|
+
ExtSecond?: string;
|
|
523
|
+
/**
|
|
524
|
+
* 浏览器引擎
|
|
525
|
+
*/
|
|
526
|
+
Engine?: string;
|
|
527
|
+
/**
|
|
528
|
+
* 运营商
|
|
529
|
+
*/
|
|
530
|
+
Isp?: string;
|
|
531
|
+
/**
|
|
532
|
+
* 来源页面
|
|
533
|
+
*/
|
|
534
|
+
From?: string;
|
|
535
|
+
/**
|
|
536
|
+
* 日志等级
|
|
537
|
+
*/
|
|
538
|
+
Level?: string;
|
|
539
|
+
/**
|
|
540
|
+
* 品牌
|
|
541
|
+
*/
|
|
542
|
+
Brand?: string;
|
|
543
|
+
/**
|
|
544
|
+
* 地区
|
|
545
|
+
*/
|
|
546
|
+
Area?: string;
|
|
547
|
+
/**
|
|
548
|
+
* 版本
|
|
549
|
+
*/
|
|
550
|
+
VersionNum?: string;
|
|
551
|
+
/**
|
|
552
|
+
* 平台
|
|
553
|
+
*/
|
|
554
|
+
Platform?: string;
|
|
555
|
+
/**
|
|
556
|
+
* 自定义3
|
|
557
|
+
*/
|
|
558
|
+
ExtThird?: string;
|
|
559
|
+
/**
|
|
560
|
+
* 自定义1
|
|
561
|
+
*/
|
|
562
|
+
ExtFirst?: string;
|
|
563
|
+
/**
|
|
564
|
+
* 网络类型
|
|
565
|
+
*/
|
|
566
|
+
NetType?: string;
|
|
567
|
+
/**
|
|
568
|
+
* 机型
|
|
569
|
+
*/
|
|
570
|
+
Device?: string;
|
|
571
|
+
/**
|
|
572
|
+
* 是否海外
|
|
573
|
+
*/
|
|
574
|
+
IsAbroad?: string;
|
|
575
|
+
/**
|
|
576
|
+
* 操作系统
|
|
577
|
+
*/
|
|
578
|
+
Os?: string;
|
|
579
|
+
/**
|
|
580
|
+
* 浏览器
|
|
581
|
+
*/
|
|
582
|
+
Browser?: string;
|
|
583
|
+
/**
|
|
584
|
+
* 环境
|
|
585
|
+
*/
|
|
586
|
+
Env?: string;
|
|
401
587
|
}
|
|
402
588
|
/**
|
|
403
589
|
* DescribeError返回参数结构体
|
|
@@ -504,6 +690,23 @@ export interface DescribeDataLogUrlStatisticsRequest {
|
|
|
504
690
|
* 浏览器
|
|
505
691
|
*/
|
|
506
692
|
Browser?: string;
|
|
693
|
+
/**
|
|
694
|
+
* 环境区分
|
|
695
|
+
*/
|
|
696
|
+
Env?: string;
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* DescribeDataPvUrlStatistics返回参数结构体
|
|
700
|
+
*/
|
|
701
|
+
export interface DescribeDataPvUrlStatisticsResponse {
|
|
702
|
+
/**
|
|
703
|
+
* 返回值
|
|
704
|
+
*/
|
|
705
|
+
Result: string;
|
|
706
|
+
/**
|
|
707
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
708
|
+
*/
|
|
709
|
+
RequestId?: string;
|
|
507
710
|
}
|
|
508
711
|
/**
|
|
509
712
|
* CreateProject请求参数结构体
|
|
@@ -542,3 +745,16 @@ export interface CreateProjectRequest {
|
|
|
542
745
|
*/
|
|
543
746
|
Desc?: string;
|
|
544
747
|
}
|
|
748
|
+
/**
|
|
749
|
+
* DescribeScores返回参数结构体
|
|
750
|
+
*/
|
|
751
|
+
export interface DescribeScoresResponse {
|
|
752
|
+
/**
|
|
753
|
+
* 数组
|
|
754
|
+
*/
|
|
755
|
+
ScoreSet: Array<ScoreInfo>;
|
|
756
|
+
/**
|
|
757
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
758
|
+
*/
|
|
759
|
+
RequestId?: string;
|
|
760
|
+
}
|