tencentcloud-sdk-nodejs-rum 4.0.248 → 4.0.255
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 +1395 -76
- package/package.json +1 -1
- package/products.md +59 -58
- package/src/services/rum/v20210622/rum_client.ts +27 -3
- package/src/services/rum/v20210622/rum_models.ts +270 -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 +225 -25
|
@@ -114,6 +114,21 @@ export interface DescribeDataPerformancePageResponse {
|
|
|
114
114
|
RequestId?: string
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
+
/**
|
|
118
|
+
* DescribeLogList返回参数结构体
|
|
119
|
+
*/
|
|
120
|
+
export interface DescribeLogListResponse {
|
|
121
|
+
/**
|
|
122
|
+
* 返回字符串
|
|
123
|
+
*/
|
|
124
|
+
Result: string
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
128
|
+
*/
|
|
129
|
+
RequestId?: string
|
|
130
|
+
}
|
|
131
|
+
|
|
117
132
|
/**
|
|
118
133
|
* DescribeDataPerformancePage请求参数结构体
|
|
119
134
|
*/
|
|
@@ -370,11 +385,11 @@ export interface DescribeProjectsRequest {
|
|
|
370
385
|
}
|
|
371
386
|
|
|
372
387
|
/**
|
|
373
|
-
*
|
|
388
|
+
* DescribeDataEventUrl返回参数结构体
|
|
374
389
|
*/
|
|
375
|
-
export interface
|
|
390
|
+
export interface DescribeDataEventUrlResponse {
|
|
376
391
|
/**
|
|
377
|
-
*
|
|
392
|
+
* 返回值
|
|
378
393
|
*/
|
|
379
394
|
Result: string
|
|
380
395
|
|
|
@@ -384,6 +399,51 @@ export interface DescribeLogListResponse {
|
|
|
384
399
|
RequestId?: string
|
|
385
400
|
}
|
|
386
401
|
|
|
402
|
+
/**
|
|
403
|
+
* DescribeLogList请求参数结构体
|
|
404
|
+
*/
|
|
405
|
+
export interface DescribeLogListRequest {
|
|
406
|
+
/**
|
|
407
|
+
* 排序方式 desc asc
|
|
408
|
+
*/
|
|
409
|
+
Sort: string
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* searchlog histogram
|
|
413
|
+
*/
|
|
414
|
+
ActionType: string
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* 项目ID
|
|
418
|
+
*/
|
|
419
|
+
ID: number
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* 开始时间
|
|
423
|
+
*/
|
|
424
|
+
StartTime?: string
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* 限制
|
|
428
|
+
*/
|
|
429
|
+
Limit?: number
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* 上下文
|
|
433
|
+
*/
|
|
434
|
+
Context?: string
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* 查询语句
|
|
438
|
+
*/
|
|
439
|
+
Query?: string
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* 结束时间
|
|
443
|
+
*/
|
|
444
|
+
EndTime?: string
|
|
445
|
+
}
|
|
446
|
+
|
|
387
447
|
/**
|
|
388
448
|
* 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
389
449
|
|
|
@@ -438,18 +498,23 @@ export interface CreateProjectResponse {
|
|
|
438
498
|
}
|
|
439
499
|
|
|
440
500
|
/**
|
|
441
|
-
*
|
|
501
|
+
* DescribeDataEventUrl请求参数结构体
|
|
442
502
|
*/
|
|
443
|
-
export interface
|
|
503
|
+
export interface DescribeDataEventUrlRequest {
|
|
444
504
|
/**
|
|
445
|
-
*
|
|
505
|
+
* 开始时间
|
|
446
506
|
*/
|
|
447
|
-
|
|
507
|
+
StartTime: number
|
|
448
508
|
|
|
449
509
|
/**
|
|
450
|
-
*
|
|
510
|
+
* 类型
|
|
451
511
|
*/
|
|
452
|
-
|
|
512
|
+
Type: string
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* 结束时间
|
|
516
|
+
*/
|
|
517
|
+
EndTime: number
|
|
453
518
|
|
|
454
519
|
/**
|
|
455
520
|
* 项目ID
|
|
@@ -457,44 +522,194 @@ export interface DescribeLogListRequest {
|
|
|
457
522
|
ID: number
|
|
458
523
|
|
|
459
524
|
/**
|
|
460
|
-
*
|
|
525
|
+
* 自定义2
|
|
461
526
|
*/
|
|
462
|
-
|
|
527
|
+
ExtSecond?: string
|
|
463
528
|
|
|
464
529
|
/**
|
|
465
|
-
*
|
|
530
|
+
* 浏览器引擎
|
|
466
531
|
*/
|
|
467
|
-
|
|
532
|
+
Engine?: string
|
|
468
533
|
|
|
469
534
|
/**
|
|
470
|
-
*
|
|
535
|
+
* 运营商
|
|
471
536
|
*/
|
|
472
|
-
|
|
537
|
+
Isp?: string
|
|
473
538
|
|
|
474
539
|
/**
|
|
475
|
-
*
|
|
540
|
+
* 来源页面
|
|
476
541
|
*/
|
|
477
|
-
|
|
542
|
+
From?: string
|
|
478
543
|
|
|
479
544
|
/**
|
|
480
|
-
*
|
|
545
|
+
* 日志等级
|
|
481
546
|
*/
|
|
482
|
-
|
|
547
|
+
Level?: string
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* 品牌
|
|
551
|
+
*/
|
|
552
|
+
Brand?: string
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* 地区
|
|
556
|
+
*/
|
|
557
|
+
Area?: string
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* 版本
|
|
561
|
+
*/
|
|
562
|
+
VersionNum?: string
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* 平台
|
|
566
|
+
*/
|
|
567
|
+
Platform?: string
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* 自定义3
|
|
571
|
+
*/
|
|
572
|
+
ExtThird?: string
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* 自定义1
|
|
576
|
+
*/
|
|
577
|
+
ExtFirst?: string
|
|
578
|
+
|
|
579
|
+
/**
|
|
580
|
+
* 网络类型
|
|
581
|
+
*/
|
|
582
|
+
NetType?: string
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* 机型
|
|
586
|
+
*/
|
|
587
|
+
Device?: string
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* 是否海外
|
|
591
|
+
*/
|
|
592
|
+
IsAbroad?: string
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* 操作系统
|
|
596
|
+
*/
|
|
597
|
+
Os?: string
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* 浏览器
|
|
601
|
+
*/
|
|
602
|
+
Browser?: string
|
|
603
|
+
|
|
604
|
+
/**
|
|
605
|
+
* 筛选条件
|
|
606
|
+
*/
|
|
607
|
+
Name?: string
|
|
483
608
|
}
|
|
484
609
|
|
|
485
610
|
/**
|
|
486
|
-
*
|
|
611
|
+
* DescribeDataPvUrlStatistics请求参数结构体
|
|
487
612
|
*/
|
|
488
|
-
export interface
|
|
613
|
+
export interface DescribeDataPvUrlStatisticsRequest {
|
|
489
614
|
/**
|
|
490
|
-
*
|
|
615
|
+
* 开始时间
|
|
491
616
|
*/
|
|
492
|
-
|
|
617
|
+
StartTime: number
|
|
493
618
|
|
|
494
619
|
/**
|
|
495
|
-
*
|
|
620
|
+
* 类型:"allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
|
496
621
|
*/
|
|
497
|
-
|
|
622
|
+
Type: string
|
|
623
|
+
|
|
624
|
+
/**
|
|
625
|
+
* 结束时间
|
|
626
|
+
*/
|
|
627
|
+
EndTime: number
|
|
628
|
+
|
|
629
|
+
/**
|
|
630
|
+
* 项目ID
|
|
631
|
+
*/
|
|
632
|
+
ID: number
|
|
633
|
+
|
|
634
|
+
/**
|
|
635
|
+
* 自定义2
|
|
636
|
+
*/
|
|
637
|
+
ExtSecond?: string
|
|
638
|
+
|
|
639
|
+
/**
|
|
640
|
+
* 浏览器引擎
|
|
641
|
+
*/
|
|
642
|
+
Engine?: string
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* 运营商
|
|
646
|
+
*/
|
|
647
|
+
Isp?: string
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
* 来源页面
|
|
651
|
+
*/
|
|
652
|
+
From?: string
|
|
653
|
+
|
|
654
|
+
/**
|
|
655
|
+
* 日志等级
|
|
656
|
+
*/
|
|
657
|
+
Level?: string
|
|
658
|
+
|
|
659
|
+
/**
|
|
660
|
+
* 品牌
|
|
661
|
+
*/
|
|
662
|
+
Brand?: string
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* 地区
|
|
666
|
+
*/
|
|
667
|
+
Area?: string
|
|
668
|
+
|
|
669
|
+
/**
|
|
670
|
+
* 版本
|
|
671
|
+
*/
|
|
672
|
+
VersionNum?: string
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* 平台
|
|
676
|
+
*/
|
|
677
|
+
Platform?: string
|
|
678
|
+
|
|
679
|
+
/**
|
|
680
|
+
* 自定义3
|
|
681
|
+
*/
|
|
682
|
+
ExtThird?: string
|
|
683
|
+
|
|
684
|
+
/**
|
|
685
|
+
* 自定义1
|
|
686
|
+
*/
|
|
687
|
+
ExtFirst?: string
|
|
688
|
+
|
|
689
|
+
/**
|
|
690
|
+
* 网络类型
|
|
691
|
+
*/
|
|
692
|
+
NetType?: string
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* 机型
|
|
696
|
+
*/
|
|
697
|
+
Device?: string
|
|
698
|
+
|
|
699
|
+
/**
|
|
700
|
+
* 是否海外
|
|
701
|
+
*/
|
|
702
|
+
IsAbroad?: string
|
|
703
|
+
|
|
704
|
+
/**
|
|
705
|
+
* 操作系统
|
|
706
|
+
*/
|
|
707
|
+
Os?: string
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* 浏览器
|
|
711
|
+
*/
|
|
712
|
+
Browser?: string
|
|
498
713
|
}
|
|
499
714
|
|
|
500
715
|
/**
|
|
@@ -627,6 +842,21 @@ export interface DescribeDataLogUrlStatisticsRequest {
|
|
|
627
842
|
Browser?: string
|
|
628
843
|
}
|
|
629
844
|
|
|
845
|
+
/**
|
|
846
|
+
* DescribeDataPvUrlStatistics返回参数结构体
|
|
847
|
+
*/
|
|
848
|
+
export interface DescribeDataPvUrlStatisticsResponse {
|
|
849
|
+
/**
|
|
850
|
+
* 返回值
|
|
851
|
+
*/
|
|
852
|
+
Result: string
|
|
853
|
+
|
|
854
|
+
/**
|
|
855
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
856
|
+
*/
|
|
857
|
+
RequestId?: string
|
|
858
|
+
}
|
|
859
|
+
|
|
630
860
|
/**
|
|
631
861
|
* CreateProject请求参数结构体
|
|
632
862
|
*/
|
|
@@ -671,3 +901,18 @@ export interface CreateProjectRequest {
|
|
|
671
901
|
*/
|
|
672
902
|
Desc?: string
|
|
673
903
|
}
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* DescribeScores返回参数结构体
|
|
907
|
+
*/
|
|
908
|
+
export interface DescribeScoresResponse {
|
|
909
|
+
/**
|
|
910
|
+
* 数组
|
|
911
|
+
*/
|
|
912
|
+
ScoreSet: Array<ScoreInfo>
|
|
913
|
+
|
|
914
|
+
/**
|
|
915
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
916
|
+
*/
|
|
917
|
+
RequestId?: string
|
|
918
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { DescribeDataPerformancePageResponse, DescribeDataPerformancePageRequest, DescribeProjectsResponse, DescribeScoresRequest, DescribeErrorRequest, DescribeProjectsRequest,
|
|
2
|
+
import { DescribeDataPerformancePageResponse, DescribeLogListResponse, DescribeDataPerformancePageRequest, DescribeProjectsResponse, DescribeScoresRequest, DescribeErrorRequest, DescribeProjectsRequest, DescribeDataEventUrlResponse, DescribeLogListRequest, DescribeDataLogUrlStatisticsResponse, CreateProjectResponse, DescribeDataEventUrlRequest, DescribeDataPvUrlStatisticsRequest, DescribeErrorResponse, DescribeDataLogUrlStatisticsRequest, DescribeDataPvUrlStatisticsResponse, CreateProjectRequest, DescribeScoresResponse } from "./rum_models";
|
|
3
3
|
/**
|
|
4
4
|
* rum client
|
|
5
5
|
* @class
|
|
@@ -14,6 +14,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
14
14
|
* 获取项目下的日志列表(实例创建的项目下的日志列表)
|
|
15
15
|
*/
|
|
16
16
|
DescribeLogList(req: DescribeLogListRequest, cb?: (error: string, rep: DescribeLogListResponse) => void): Promise<DescribeLogListResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* 获取DescribeDataEventUrl信息
|
|
19
|
+
*/
|
|
20
|
+
DescribeDataEventUrl(req: DescribeDataEventUrlRequest, cb?: (error: string, rep: DescribeDataEventUrlResponse) => void): Promise<DescribeDataEventUrlResponse>;
|
|
17
21
|
/**
|
|
18
22
|
* 获取首页分数列表
|
|
19
23
|
*/
|
|
@@ -34,4 +38,8 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
34
38
|
* 获取项目列表(实例创建的团队下的项目列表)
|
|
35
39
|
*/
|
|
36
40
|
DescribeProjects(req: DescribeProjectsRequest, cb?: (error: string, rep: DescribeProjectsResponse) => void): Promise<DescribeProjectsResponse>;
|
|
41
|
+
/**
|
|
42
|
+
* 获取DescribeDataPvUrlStatistics信息
|
|
43
|
+
*/
|
|
44
|
+
DescribeDataPvUrlStatistics(req: DescribeDataPvUrlStatisticsRequest, cb?: (error: string, rep: DescribeDataPvUrlStatisticsResponse) => void): Promise<DescribeDataPvUrlStatisticsResponse>;
|
|
37
45
|
}
|
|
@@ -39,6 +39,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
39
39
|
async DescribeLogList(req, cb) {
|
|
40
40
|
return this.request("DescribeLogList", req, cb);
|
|
41
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* 获取DescribeDataEventUrl信息
|
|
44
|
+
*/
|
|
45
|
+
async DescribeDataEventUrl(req, cb) {
|
|
46
|
+
return this.request("DescribeDataEventUrl", req, cb);
|
|
47
|
+
}
|
|
42
48
|
/**
|
|
43
49
|
* 获取首页分数列表
|
|
44
50
|
*/
|
|
@@ -69,5 +75,11 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
69
75
|
async DescribeProjects(req, cb) {
|
|
70
76
|
return this.request("DescribeProjects", req, cb);
|
|
71
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* 获取DescribeDataPvUrlStatistics信息
|
|
80
|
+
*/
|
|
81
|
+
async DescribeDataPvUrlStatistics(req, cb) {
|
|
82
|
+
return this.request("DescribeDataPvUrlStatistics", req, cb);
|
|
83
|
+
}
|
|
72
84
|
}
|
|
73
85
|
exports.Client = Client;
|