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.
@@ -15,6 +15,211 @@
15
15
  * under the License.
16
16
  */
17
17
 
18
+ /**
19
+ * project Score分数实体
20
+ */
21
+ export interface ScoreInfo {
22
+ /**
23
+ * duration
24
+ */
25
+ StaticDuration: string
26
+
27
+ /**
28
+ * pv
29
+ */
30
+ PagePv: string
31
+
32
+ /**
33
+ * 失败
34
+ */
35
+ ApiFail: string
36
+
37
+ /**
38
+ * 请求
39
+ */
40
+ ApiNum: string
41
+
42
+ /**
43
+ * fail
44
+ */
45
+ StaticFail: string
46
+
47
+ /**
48
+ * 项目id
49
+ */
50
+ ProjectID: number
51
+
52
+ /**
53
+ * uv
54
+ */
55
+ PageUv: string
56
+
57
+ /**
58
+ * 请求次数
59
+ */
60
+ ApiDuration: string
61
+
62
+ /**
63
+ * 分数
64
+ */
65
+ Score: string
66
+
67
+ /**
68
+ * error
69
+ */
70
+ PageError: string
71
+
72
+ /**
73
+ * num
74
+ */
75
+ StaticNum: string
76
+
77
+ /**
78
+ * num
79
+ */
80
+ RecordNum: number
81
+
82
+ /**
83
+ * Duration
84
+ */
85
+ PageDuration: string
86
+ }
87
+
88
+ /**
89
+ * DescribeProjects请求参数结构体
90
+ */
91
+ export interface DescribeProjectsRequest {
92
+ /**
93
+ * 分页每页数目,整型
94
+ */
95
+ Limit: number
96
+
97
+ /**
98
+ * 分页页码,整型
99
+ */
100
+ Offset: number
101
+
102
+ /**
103
+ * 过滤条件
104
+ */
105
+ Filters?: Array<Filter>
106
+ }
107
+
108
+ /**
109
+ * DescribeDataEventUrl请求参数结构体
110
+ */
111
+ export interface DescribeDataEventUrlRequest {
112
+ /**
113
+ * 开始时间
114
+ */
115
+ StartTime: number
116
+
117
+ /**
118
+ * 类型
119
+ */
120
+ Type: string
121
+
122
+ /**
123
+ * 结束时间
124
+ */
125
+ EndTime: number
126
+
127
+ /**
128
+ * 项目ID
129
+ */
130
+ ID: number
131
+
132
+ /**
133
+ * 自定义2
134
+ */
135
+ ExtSecond?: string
136
+
137
+ /**
138
+ * 浏览器引擎
139
+ */
140
+ Engine?: string
141
+
142
+ /**
143
+ * 运营商
144
+ */
145
+ Isp?: string
146
+
147
+ /**
148
+ * 来源页面
149
+ */
150
+ From?: string
151
+
152
+ /**
153
+ * 日志等级
154
+ */
155
+ Level?: string
156
+
157
+ /**
158
+ * 品牌
159
+ */
160
+ Brand?: string
161
+
162
+ /**
163
+ * 地区
164
+ */
165
+ Area?: string
166
+
167
+ /**
168
+ * 版本
169
+ */
170
+ VersionNum?: string
171
+
172
+ /**
173
+ * 平台
174
+ */
175
+ Platform?: string
176
+
177
+ /**
178
+ * 自定义3
179
+ */
180
+ ExtThird?: string
181
+
182
+ /**
183
+ * 自定义1
184
+ */
185
+ ExtFirst?: string
186
+
187
+ /**
188
+ * 网络类型
189
+ */
190
+ NetType?: string
191
+
192
+ /**
193
+ * 机型
194
+ */
195
+ Device?: string
196
+
197
+ /**
198
+ * 是否海外
199
+ */
200
+ IsAbroad?: string
201
+
202
+ /**
203
+ * 操作系统
204
+ */
205
+ Os?: string
206
+
207
+ /**
208
+ * 浏览器
209
+ */
210
+ Browser?: string
211
+
212
+ /**
213
+ * 筛选条件
214
+ */
215
+ Name?: string
216
+
217
+ /**
218
+ * 环境
219
+ */
220
+ Env?: string
221
+ }
222
+
18
223
  /**
19
224
  * Rum 项目信息
20
225
  */
@@ -100,13 +305,18 @@ export interface RumProject {
100
305
  }
101
306
 
102
307
  /**
103
- * DescribeDataPerformancePage返回参数结构体
308
+ * DescribeProjects返回参数结构体
104
309
  */
105
- export interface DescribeDataPerformancePageResponse {
310
+ export interface DescribeProjectsResponse {
106
311
  /**
107
- * 返回值
312
+ * 列表总数
108
313
  */
109
- Result: string
314
+ TotalCount: number
315
+
316
+ /**
317
+ * 项目列表
318
+ */
319
+ ProjectSet: Array<RumProject>
110
320
 
111
321
  /**
112
322
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -115,11 +325,11 @@ export interface DescribeDataPerformancePageResponse {
115
325
  }
116
326
 
117
327
  /**
118
- * DescribeLogList返回参数结构体
328
+ * DescribeDataFetchUrl返回参数结构体
119
329
  */
120
- export interface DescribeLogListResponse {
330
+ export interface DescribeDataFetchUrlResponse {
121
331
  /**
122
- * 返回字符串
332
+ * 返回值
123
333
  */
124
334
  Result: string
125
335
 
@@ -130,382 +340,354 @@ export interface DescribeLogListResponse {
130
340
  }
131
341
 
132
342
  /**
133
- * DescribeDataPerformancePage请求参数结构体
343
+ * DescribeError请求参数结构体
134
344
  */
135
- export interface DescribeDataPerformancePageRequest {
136
- /**
137
- * 项目ID
138
- */
139
- ID: number
140
-
345
+ export interface DescribeErrorRequest {
141
346
  /**
142
- * 开始时间
347
+ * 日期
143
348
  */
144
- StartTime: number
349
+ Date: string
145
350
 
146
351
  /**
147
- * 结束时间
352
+ * 项目ID
148
353
  */
149
- EndTime: number
354
+ ID: number
355
+ }
150
356
 
357
+ /**
358
+ * DescribeLogList请求参数结构体
359
+ */
360
+ export interface DescribeLogListRequest {
151
361
  /**
152
- * ["pagepv", "allcount"]
362
+ * 排序方式 desc asc
153
363
  */
154
- Type: string
364
+ Sort: string
155
365
 
156
366
  /**
157
- * 日志等级
367
+ * searchlog histogram
158
368
  */
159
- Level?: string
369
+ ActionType: string
160
370
 
161
371
  /**
162
- * 运营商
372
+ * 项目ID
163
373
  */
164
- Isp?: string
374
+ ID: number
165
375
 
166
376
  /**
167
- * 地区
377
+ * 开始时间
168
378
  */
169
- Area?: string
379
+ StartTime?: string
170
380
 
171
381
  /**
172
- * 网络类型
382
+ * 单次查询返回的原始日志条数,最大值为100
173
383
  */
174
- NetType?: string
384
+ Limit?: number
175
385
 
176
386
  /**
177
- * 平台
387
+ * 上下文,加载更多日志时使用,透传上次返回的 Context 值,获取后续的日志内容,总计最多可获取1万条原始日志。过期时间1小时
178
388
  */
179
- Platform?: string
389
+ Context?: string
180
390
 
181
391
  /**
182
- * 机型
392
+ * 查询语句,语句长度最大为4096
183
393
  */
184
- Device?: string
394
+ Query?: string
185
395
 
186
396
  /**
187
- * 版本
397
+ * 结束时间
188
398
  */
189
- VersionNum?: string
399
+ EndTime?: string
400
+ }
190
401
 
402
+ /**
403
+ * DescribeScores返回参数结构体
404
+ */
405
+ export interface DescribeScoresResponse {
191
406
  /**
192
- * 自定义1
407
+ * 数组
193
408
  */
194
- ExtFirst?: string
409
+ ScoreSet: Array<ScoreInfo>
195
410
 
196
411
  /**
197
- * 自定义2
412
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
198
413
  */
199
- ExtSecond?: string
414
+ RequestId?: string
415
+ }
200
416
 
417
+ /**
418
+ * DescribeError返回参数结构体
419
+ */
420
+ export interface DescribeErrorResponse {
201
421
  /**
202
- * 自定义3
422
+ * 内容
203
423
  */
204
- ExtThird?: string
424
+ Content: string
205
425
 
206
426
  /**
207
- * 是否海外
427
+ * 项目ID
208
428
  */
209
- IsAbroad?: string
429
+ ID: number
210
430
 
211
431
  /**
212
- * 浏览器
432
+ * 时间
213
433
  */
214
- Browser?: string
434
+ CreateTime: string
215
435
 
216
436
  /**
217
- * 操作系统
437
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
218
438
  */
219
- Os?: string
439
+ RequestId?: string
440
+ }
220
441
 
442
+ /**
443
+ * DescribeDataLogUrlStatistics请求参数结构体
444
+ */
445
+ export interface DescribeDataLogUrlStatisticsRequest {
221
446
  /**
222
- * 浏览器引擎
447
+ * 开始时间
223
448
  */
224
- Engine?: string
449
+ StartTime: number
225
450
 
226
451
  /**
227
- * 品牌
452
+ * "analysis", "compare", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
228
453
  */
229
- Brand?: string
454
+ Type: string
230
455
 
231
456
  /**
232
- * 来源页面
457
+ * 结束时间
233
458
  */
234
- From?: string
459
+ EndTime: number
235
460
 
236
461
  /**
237
- * 耗时计算方式
462
+ * 项目ID
238
463
  */
239
- CostType?: string
464
+ ID: number
240
465
 
241
466
  /**
242
- * 环境变量
467
+ * 自定义2
243
468
  */
244
- Env?: string
245
- }
469
+ ExtSecond?: string
246
470
 
247
- /**
248
- * DescribeProjects返回参数结构体
249
- */
250
- export interface DescribeProjectsResponse {
251
471
  /**
252
- * 列表总数
472
+ * 浏览器引擎
253
473
  */
254
- TotalCount: number
474
+ Engine?: string
255
475
 
256
476
  /**
257
- * 项目列表
477
+ * 运营商
258
478
  */
259
- ProjectSet: Array<RumProject>
479
+ Isp?: string
260
480
 
261
481
  /**
262
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
482
+ * 来源页面
263
483
  */
264
- RequestId?: string
265
- }
484
+ From?: string
266
485
 
267
- /**
268
- * DescribeScores请求参数结构体
269
- */
270
- export interface DescribeScoresRequest {
271
486
  /**
272
- * 结束时间
487
+ * 日志等级
273
488
  */
274
- EndTime: string
489
+ Level?: string
275
490
 
276
491
  /**
277
- * 开始时间
492
+ * 品牌
278
493
  */
279
- StartTime: string
494
+ Brand?: string
280
495
 
281
496
  /**
282
- * 项目ID
497
+ * 地区
283
498
  */
284
- ID?: number
285
- }
499
+ Area?: string
286
500
 
287
- /**
288
- * DescribeError请求参数结构体
289
- */
290
- export interface DescribeErrorRequest {
291
501
  /**
292
- * 日期
502
+ * 版本
293
503
  */
294
- Date: string
504
+ VersionNum?: string
295
505
 
296
506
  /**
297
- * 项目ID
507
+ * 平台
298
508
  */
299
- ID: number
300
- }
509
+ Platform?: string
301
510
 
302
- /**
303
- * project Score分数实体
304
- */
305
- export interface ScoreInfo {
306
511
  /**
307
- * duration
512
+ * 自定义3
308
513
  */
309
- StaticDuration: string
514
+ ExtThird?: string
310
515
 
311
516
  /**
312
- * pv
517
+ * 自定义1
313
518
  */
314
- PagePv: string
519
+ ExtFirst?: string
315
520
 
316
521
  /**
317
- * 失败
522
+ * 网络类型
318
523
  */
319
- ApiFail: string
524
+ NetType?: string
320
525
 
321
526
  /**
322
- * 请求
527
+ * 机型
323
528
  */
324
- ApiNum: string
529
+ Device?: string
325
530
 
326
531
  /**
327
- * fail
532
+ * 是否海外
328
533
  */
329
- StaticFail: string
534
+ IsAbroad?: string
330
535
 
331
536
  /**
332
- * 项目id
537
+ * 操作系统
333
538
  */
334
- ProjectID: number
539
+ Os?: string
335
540
 
336
541
  /**
337
- * uv
542
+ * 浏览器
338
543
  */
339
- PageUv: string
544
+ Browser?: string
340
545
 
341
546
  /**
342
- * 请求次数
547
+ * 环境区分
343
548
  */
344
- ApiDuration: string
549
+ Env?: string
550
+ }
345
551
 
552
+ /**
553
+ * DescribeDataPerformancePage请求参数结构体
554
+ */
555
+ export interface DescribeDataPerformancePageRequest {
346
556
  /**
347
- * 分数
557
+ * 项目ID
348
558
  */
349
- Score: string
559
+ ID: number
350
560
 
351
561
  /**
352
- * error
562
+ * 开始时间
353
563
  */
354
- PageError: string
564
+ StartTime: number
355
565
 
356
566
  /**
357
- * num
567
+ * 结束时间
358
568
  */
359
- StaticNum: string
569
+ EndTime: number
360
570
 
361
571
  /**
362
- * num
572
+ * ["pagepv", "allcount"]
363
573
  */
364
- RecordNum: number
574
+ Type: string
365
575
 
366
576
  /**
367
- * Duration
577
+ * 日志等级
368
578
  */
369
- PageDuration: string
370
- }
579
+ Level?: string
371
580
 
372
- /**
373
- * DescribeProjects请求参数结构体
374
- */
375
- export interface DescribeProjectsRequest {
376
581
  /**
377
- * 分页每页数目,整型
582
+ * 运营商
378
583
  */
379
- Limit: number
584
+ Isp?: string
380
585
 
381
586
  /**
382
- * 分页页码,整型
587
+ * 地区
383
588
  */
384
- Offset: number
589
+ Area?: string
385
590
 
386
591
  /**
387
- * 过滤条件
592
+ * 网络类型
388
593
  */
389
- Filters?: Array<Filter>
390
- }
594
+ NetType?: string
391
595
 
392
- /**
393
- * DescribeDataEventUrl返回参数结构体
394
- */
395
- export interface DescribeDataEventUrlResponse {
396
596
  /**
397
- * 返回值
597
+ * 平台
398
598
  */
399
- Result: string
599
+ Platform?: string
400
600
 
401
601
  /**
402
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
602
+ * 机型
403
603
  */
404
- RequestId?: string
405
- }
604
+ Device?: string
406
605
 
407
- /**
408
- * DescribeLogList请求参数结构体
409
- */
410
- export interface DescribeLogListRequest {
411
606
  /**
412
- * 排序方式 desc asc
607
+ * 版本
413
608
  */
414
- Sort: string
609
+ VersionNum?: string
415
610
 
416
611
  /**
417
- * searchlog histogram
612
+ * 自定义1
418
613
  */
419
- ActionType: string
614
+ ExtFirst?: string
420
615
 
421
616
  /**
422
- * 项目ID
617
+ * 自定义2
423
618
  */
424
- ID: number
619
+ ExtSecond?: string
425
620
 
426
621
  /**
427
- * 开始时间
622
+ * 自定义3
428
623
  */
429
- StartTime?: string
624
+ ExtThird?: string
430
625
 
431
626
  /**
432
- * 单次查询返回的原始日志条数,最大值为100
627
+ * 是否海外
433
628
  */
434
- Limit?: number
629
+ IsAbroad?: string
435
630
 
436
631
  /**
437
- * 上下文,加载更多日志时使用,透传上次返回的 Context 值,获取后续的日志内容,总计最多可获取1万条原始日志。过期时间1小时
632
+ * 浏览器
438
633
  */
439
- Context?: string
634
+ Browser?: string
440
635
 
441
636
  /**
442
- * 查询语句,语句长度最大为4096
637
+ * 操作系统
443
638
  */
444
- Query?: string
639
+ Os?: string
445
640
 
446
641
  /**
447
- * 结束时间
642
+ * 浏览器引擎
448
643
  */
449
- EndTime?: string
450
- }
451
-
452
- /**
453
- * 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
644
+ Engine?: string
454
645
 
455
- · 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
456
- · 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
457
- */
458
- export interface Filter {
459
646
  /**
460
- * 一个或者多个过滤值。
647
+ * 品牌
461
648
  */
462
- Values?: Array<string>
649
+ Brand?: string
463
650
 
464
651
  /**
465
- * 过滤键的名称。
652
+ * 来源页面
466
653
  */
467
- Name?: string
468
- }
654
+ From?: string
469
655
 
470
- /**
471
- * DescribeDataLogUrlStatistics返回参数结构体
472
- */
473
- export interface DescribeDataLogUrlStatisticsResponse {
474
656
  /**
475
- * 返回值
657
+ * 耗时计算方式
476
658
  */
477
- Result: string
659
+ CostType?: string
478
660
 
479
661
  /**
480
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
662
+ * 环境变量
481
663
  */
482
- RequestId?: string
664
+ Env?: string
483
665
  }
484
666
 
485
667
  /**
486
- * CreateProject返回参数结构体
668
+ * DescribeScores请求参数结构体
487
669
  */
488
- export interface CreateProjectResponse {
670
+ export interface DescribeScoresRequest {
489
671
  /**
490
- * 项目 id
672
+ * 结束时间
491
673
  */
492
- ID: number
674
+ EndTime: string
493
675
 
494
676
  /**
495
- * 项目唯一key
677
+ * 开始时间
496
678
  */
497
- Key: string
679
+ StartTime: string
498
680
 
499
681
  /**
500
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
682
+ * 项目ID
501
683
  */
502
- RequestId?: string
684
+ ID?: number
503
685
  }
504
686
 
505
687
  /**
506
- * DescribeDataEventUrl请求参数结构体
688
+ * DescribeDataFetchUrl请求参数结构体
507
689
  */
508
- export interface DescribeDataEventUrlRequest {
690
+ export interface DescribeDataFetchUrlRequest {
509
691
  /**
510
692
  * 开始时间
511
693
  */
@@ -607,9 +789,14 @@ export interface DescribeDataEventUrlRequest {
607
789
  Browser?: string
608
790
 
609
791
  /**
610
- * 筛选条件
792
+ * 耗时计算方式
611
793
  */
612
- Name?: string
794
+ CostType?: string
795
+
796
+ /**
797
+ * 来源
798
+ */
799
+ Url?: string
613
800
 
614
801
  /**
615
802
  * 环境
@@ -617,6 +804,56 @@ export interface DescribeDataEventUrlRequest {
617
804
  Env?: string
618
805
  }
619
806
 
807
+ /**
808
+ * DescribeDataLogUrlStatistics返回参数结构体
809
+ */
810
+ export interface DescribeDataLogUrlStatisticsResponse {
811
+ /**
812
+ * 返回值
813
+ */
814
+ Result: string
815
+
816
+ /**
817
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
818
+ */
819
+ RequestId?: string
820
+ }
821
+
822
+ /**
823
+ * CreateProject返回参数结构体
824
+ */
825
+ export interface CreateProjectResponse {
826
+ /**
827
+ * 项目 id
828
+ */
829
+ ID: number
830
+
831
+ /**
832
+ * 项目唯一key
833
+ */
834
+ Key: string
835
+
836
+ /**
837
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
838
+ */
839
+ RequestId?: string
840
+ }
841
+
842
+ /**
843
+ * DescribeDataFetchUrlInfo返回参数结构体
844
+ */
845
+ export interface DescribeDataFetchUrlInfoResponse {
846
+ /**
847
+ * 返回值
848
+ */
849
+ Result: string
850
+
851
+ /**
852
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
853
+ */
854
+ RequestId?: string
855
+ }
856
+
620
857
  /**
621
858
  * DescribeDataPvUrlStatistics请求参数结构体
622
859
  */
@@ -728,23 +965,46 @@ export interface DescribeDataPvUrlStatisticsRequest {
728
965
  }
729
966
 
730
967
  /**
731
- * DescribeError返回参数结构体
968
+ * 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
969
+
970
+ · 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
971
+ · 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
732
972
  */
733
- export interface DescribeErrorResponse {
973
+ export interface Filter {
734
974
  /**
735
- * 内容
975
+ * 一个或者多个过滤值。
736
976
  */
737
- Content: string
977
+ Values?: Array<string>
738
978
 
739
979
  /**
740
- * 项目ID
980
+ * 过滤键的名称。
741
981
  */
742
- ID: number
982
+ Name?: string
983
+ }
984
+
985
+ /**
986
+ * DescribeDataPerformancePage返回参数结构体
987
+ */
988
+ export interface DescribeDataPerformancePageResponse {
989
+ /**
990
+ * 返回值
991
+ */
992
+ Result: string
743
993
 
744
994
  /**
745
- * 时间
995
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
746
996
  */
747
- CreateTime: string
997
+ RequestId?: string
998
+ }
999
+
1000
+ /**
1001
+ * DescribeDataEventUrl返回参数结构体
1002
+ */
1003
+ export interface DescribeDataEventUrlResponse {
1004
+ /**
1005
+ * 返回值
1006
+ */
1007
+ Result: string
748
1008
 
749
1009
  /**
750
1010
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -753,16 +1013,16 @@ export interface DescribeErrorResponse {
753
1013
  }
754
1014
 
755
1015
  /**
756
- * DescribeDataLogUrlStatistics请求参数结构体
1016
+ * DescribeDataFetchUrlInfo请求参数结构体
757
1017
  */
758
- export interface DescribeDataLogUrlStatisticsRequest {
1018
+ export interface DescribeDataFetchUrlInfoRequest {
759
1019
  /**
760
1020
  * 开始时间
761
1021
  */
762
1022
  StartTime: number
763
1023
 
764
1024
  /**
765
- * "analysis", "compare", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
1025
+ * 类型
766
1026
  */
767
1027
  Type: string
768
1028
 
@@ -857,11 +1117,36 @@ export interface DescribeDataLogUrlStatisticsRequest {
857
1117
  Browser?: string
858
1118
 
859
1119
  /**
860
- * 环境区分
1120
+ * 耗时计算方式
1121
+ */
1122
+ CostType?: string
1123
+
1124
+ /**
1125
+ * 来源
1126
+ */
1127
+ Url?: string
1128
+
1129
+ /**
1130
+ * 环境
861
1131
  */
862
1132
  Env?: string
863
1133
  }
864
1134
 
1135
+ /**
1136
+ * DescribeLogList返回参数结构体
1137
+ */
1138
+ export interface DescribeLogListResponse {
1139
+ /**
1140
+ * 返回字符串
1141
+ */
1142
+ Result: string
1143
+
1144
+ /**
1145
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1146
+ */
1147
+ RequestId?: string
1148
+ }
1149
+
865
1150
  /**
866
1151
  * DescribeDataPvUrlStatistics返回参数结构体
867
1152
  */
@@ -921,18 +1206,3 @@ export interface CreateProjectRequest {
921
1206
  */
922
1207
  Desc?: string
923
1208
  }
924
-
925
- /**
926
- * DescribeScores返回参数结构体
927
- */
928
- export interface DescribeScoresResponse {
929
- /**
930
- * 数组
931
- */
932
- ScoreSet: Array<ScoreInfo>
933
-
934
- /**
935
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
936
- */
937
- RequestId?: string
938
- }