tencentcloud-sdk-nodejs-rum 4.0.286 → 4.0.290

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.
@@ -16,99 +16,54 @@
16
16
  */
17
17
 
18
18
  /**
19
- * project Score分数实体
19
+ * CreateTawInstance请求参数结构体
20
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
-
21
+ export interface CreateTawInstanceRequest {
52
22
  /**
53
- * uv
54
- */
55
- PageUv: string
56
-
57
- /**
58
- * 请求次数
59
- */
60
- ApiDuration: string
61
-
62
- /**
63
- * 分数
23
+ * 片区Id,(至少大于0)
64
24
  */
65
- Score: string
25
+ AreaId: number
66
26
 
67
27
  /**
68
- * error
28
+ * 计费类型, (1=体验,2=预付费,3=后付费)
69
29
  */
70
- PageError: string
30
+ ChargeType: number
71
31
 
72
32
  /**
73
- * num
33
+ * 数据保存时间,(至少大于0)
74
34
  */
75
- StaticNum: string
35
+ DataRetentionDays: number
76
36
 
77
37
  /**
78
- * num
38
+ * 实例名称,(最大长度不超过255字节)
79
39
  */
80
- RecordNum: number
40
+ InstanceName: string
81
41
 
82
42
  /**
83
- * Duration
43
+ * 标签列表
84
44
  */
85
- PageDuration: string
86
- }
45
+ Tags?: Array<Tag>
87
46
 
88
- /**
89
- * DescribeProjects请求参数结构体
90
- */
91
- export interface DescribeProjectsRequest {
92
47
  /**
93
- * 分页每页数目,整型
48
+ * 实例描述,(最大长度不超过1024字节)
94
49
  */
95
- Limit: number
50
+ InstanceDesc?: string
96
51
 
97
52
  /**
98
- * 分页页码,整型
53
+ * 每天数据上报量
99
54
  */
100
- Offset: number
55
+ CountNum?: string
101
56
 
102
57
  /**
103
- * 过滤条件
58
+ * 数据存储时长计费
104
59
  */
105
- Filters?: Array<Filter>
60
+ PeriodRetain?: string
106
61
  }
107
62
 
108
63
  /**
109
- * DescribeDataEventUrl请求参数结构体
64
+ * DescribeDataFetchProject请求参数结构体
110
65
  */
111
- export interface DescribeDataEventUrlRequest {
66
+ export interface DescribeDataFetchProjectRequest {
112
67
  /**
113
68
  * 开始时间
114
69
  */
@@ -210,9 +165,14 @@ export interface DescribeDataEventUrlRequest {
210
165
  Browser?: string
211
166
 
212
167
  /**
213
- * 筛选条件
168
+ * 耗时计算方式
214
169
  */
215
- Name?: string
170
+ CostType?: string
171
+
172
+ /**
173
+ * 来源
174
+ */
175
+ Url?: string
216
176
 
217
177
  /**
218
178
  * 环境
@@ -221,102 +181,128 @@ export interface DescribeDataEventUrlRequest {
221
181
  }
222
182
 
223
183
  /**
224
- * Rum 项目信息
184
+ * DescribeData返回参数结构体
225
185
  */
226
- export interface RumProject {
186
+ export interface DescribeDataResponse {
227
187
  /**
228
- * 项目名
188
+ * 返回字符串
229
189
  */
230
- Name: string
190
+ Result: string
231
191
 
232
192
  /**
233
- * 创建者 id
193
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
234
194
  */
235
- Creator: string
195
+ RequestId?: string
196
+ }
236
197
 
198
+ /**
199
+ * CreateTawInstance返回参数结构体
200
+ */
201
+ export interface CreateTawInstanceResponse {
237
202
  /**
238
- * 实例 id
203
+ * 实例Id
239
204
  */
240
- InstanceID: string
205
+ InstanceId: string
241
206
 
242
207
  /**
243
- * 项目类型
208
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
244
209
  */
245
- Type: string
210
+ RequestId?: string
211
+ }
246
212
 
213
+ /**
214
+ * DeleteProject请求参数结构体
215
+ */
216
+ export interface DeleteProjectRequest {
247
217
  /**
248
- * 创建时间
218
+ * 需要删除的项目 ID
249
219
  */
250
- CreateTime: string
220
+ ID: number
221
+ }
251
222
 
223
+ /**
224
+ * DescribeProjectLimits返回参数结构体
225
+ */
226
+ export interface DescribeProjectLimitsResponse {
252
227
  /**
253
- * 项目仓库地址
254
- 注意:此字段可能返回 null,表示取不到有效值。
255
- */
256
- Repo: string
228
+ * 上报率数组列表
229
+ */
230
+ ProjectLimitSet: Array<ProjectLimit>
257
231
 
258
232
  /**
259
- * 项目网址地址
260
- 注意:此字段可能返回 null,表示取不到有效值。
261
- */
262
- URL: string
233
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
234
+ */
235
+ RequestId?: string
236
+ }
263
237
 
238
+ /**
239
+ * DescribeTawInstances请求参数结构体
240
+ */
241
+ export interface DescribeTawInstancesRequest {
264
242
  /**
265
- * 项目采样频率
243
+ * 计费状态
266
244
  */
267
- Rate: string
245
+ ChargeStatuses?: Array<number>
268
246
 
269
247
  /**
270
- * 项目唯一key(长度 12 位)
248
+ * 计费类型
271
249
  */
272
- Key: string
250
+ ChargeTypes?: Array<number>
273
251
 
274
252
  /**
275
- * 是否开启url聚类
253
+ * 分页Limit
276
254
  */
277
- EnableURLGroup: number
255
+ Limit?: number
278
256
 
279
257
  /**
280
- * 实例名
258
+ * 分页Offset
281
259
  */
282
- InstanceName: string
260
+ Offset?: number
283
261
 
284
262
  /**
285
- * 项目 ID
263
+ * 片区Id
286
264
  */
287
- ID: number
265
+ AreaIds?: Array<number>
288
266
 
289
267
  /**
290
- * 实例 key
268
+ * 实例状态(1=创建中,2=运行中,3=异常,4=重启中,5=停止中,6=已停止,7=销毁中,8=已销毁)
291
269
  */
292
- InstanceKey: string
270
+ InstanceStatuses?: Array<number>
293
271
 
294
272
  /**
295
- * 项目描述
296
- 注意:此字段可能返回 null,表示取不到有效值。
297
- */
298
- Desc: string
273
+ * 实例Id
274
+ */
275
+ InstanceIds?: Array<string>
299
276
 
300
277
  /**
301
- * 是否星标 1:是 0:否
302
- 注意:此字段可能返回 null,表示取不到有效值。
303
- */
304
- IsStar: number
278
+ * 过滤参数
279
+ */
280
+ Filters?: Array<Filter>
305
281
  }
306
282
 
307
283
  /**
308
- * DescribeProjects返回参数结构体
284
+ * DeleteOfflineLogConfig返回参数结构体
309
285
  */
310
- export interface DescribeProjectsResponse {
286
+ export interface DeleteOfflineLogConfigResponse {
311
287
  /**
312
- * 列表总数
288
+ * 接口调用信息
313
289
  */
314
- TotalCount: number
290
+ Msg: string
315
291
 
316
292
  /**
317
- * 项目列表
293
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
318
294
  */
319
- ProjectSet: Array<RumProject>
295
+ RequestId?: string
296
+ }
297
+
298
+ /**
299
+ * DescribeDataPvUrlInfo返回参数结构体
300
+ */
301
+ export interface DescribeDataPvUrlInfoResponse {
302
+ /**
303
+ * 返回值
304
+ */
305
+ Result: string
320
306
 
321
307
  /**
322
308
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -354,6 +340,36 @@ export interface DescribeErrorRequest {
354
340
  ID: number
355
341
  }
356
342
 
343
+ /**
344
+ * StopInstance请求参数结构体
345
+ */
346
+ export interface StopInstanceRequest {
347
+ /**
348
+ * 需要停止的实例id
349
+ */
350
+ InstanceId: string
351
+ }
352
+
353
+ /**
354
+ * ModifyInstance请求参数结构体
355
+ */
356
+ export interface ModifyInstanceRequest {
357
+ /**
358
+ * 要修改的实例id
359
+ */
360
+ InstanceId: string
361
+
362
+ /**
363
+ * 新的实例名称(长度最大不超过255)
364
+ */
365
+ InstanceName?: string
366
+
367
+ /**
368
+ * 新的实例描述(长度最大不超过1024)
369
+ */
370
+ InstanceDesc?: string
371
+ }
372
+
357
373
  /**
358
374
  * DescribeLogList请求参数结构体
359
375
  */
@@ -399,21 +415,6 @@ export interface DescribeLogListRequest {
399
415
  EndTime?: string
400
416
  }
401
417
 
402
- /**
403
- * DescribeScores返回参数结构体
404
- */
405
- export interface DescribeScoresResponse {
406
- /**
407
- * 数组
408
- */
409
- ScoreSet: Array<ScoreInfo>
410
-
411
- /**
412
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
413
- */
414
- RequestId?: string
415
- }
416
-
417
418
  /**
418
419
  * DescribeError返回参数结构体
419
420
  */
@@ -440,97 +441,2676 @@ export interface DescribeErrorResponse {
440
441
  }
441
442
 
442
443
  /**
443
- * DescribeDataLogUrlStatistics请求参数结构体
444
+ * DeleteWhitelist返回参数结构体
444
445
  */
445
- export interface DescribeDataLogUrlStatisticsRequest {
446
- /**
447
- * 开始时间
448
- */
449
- StartTime: number
450
-
446
+ export interface DeleteWhitelistResponse {
451
447
  /**
452
- * "analysis", "compare", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
448
+ * 消息success
453
449
  */
454
- Type: string
450
+ Msg: string
455
451
 
456
452
  /**
457
- * 结束时间
453
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
458
454
  */
459
- EndTime: number
455
+ RequestId?: string
456
+ }
460
457
 
458
+ /**
459
+ * CreateLogExport请求参数结构体
460
+ */
461
+ export interface CreateLogExportRequest {
461
462
  /**
462
463
  * 项目ID
463
464
  */
464
465
  ID: number
465
466
 
466
467
  /**
467
- * 自定义2
468
+ * 日志导出起始时间
468
469
  */
469
- ExtSecond?: string
470
+ StartTime: string
470
471
 
471
472
  /**
472
- * 浏览器引擎
473
+ * 日志导出结束时间
473
474
  */
474
- Engine?: string
475
+ EndTime: string
475
476
 
476
477
  /**
477
- * 运营商
478
+ * 日志导出检索语句
478
479
  */
479
- Isp?: string
480
+ Query: string
480
481
 
481
482
  /**
482
- * 来源页面
483
+ * 日志导出数量, 最大值1000万
483
484
  */
484
- From?: string
485
+ Count: number
485
486
 
486
487
  /**
487
- * 日志等级
488
+ * 日志导出时间排序。desc,asc,默认为desc
488
489
  */
489
- Level?: string
490
+ Order?: string
490
491
 
491
492
  /**
492
- * 品牌
493
+ * 日志导出数据格式。json,csv,默认为json
493
494
  */
494
- Brand?: string
495
+ Format?: string
496
+ }
495
497
 
498
+ /**
499
+ * DescribePvList返回参数结构体
500
+ */
501
+ export interface DescribePvListResponse {
496
502
  /**
497
- * 地区
498
- */
499
- Area?: string
503
+ * pv列表
504
+ 注意:此字段可能返回 null,表示取不到有效值。
505
+ */
506
+ ProjectPvSet: Array<RumPvInfo>
500
507
 
501
508
  /**
502
- * 版本
509
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
503
510
  */
504
- VersionNum?: string
511
+ RequestId?: string
512
+ }
505
513
 
514
+ /**
515
+ * RumUv 访问量
516
+ */
517
+ export interface RumUvInfo {
506
518
  /**
507
- * 平台
519
+ * 项目ID
508
520
  */
509
- Platform?: string
521
+ ProjectId: number
510
522
 
511
523
  /**
512
- * 自定义3
524
+ * uv访问量
513
525
  */
514
- ExtThird?: string
526
+ Uv: string
515
527
 
516
528
  /**
517
- * 自定义1
529
+ * 创建时间
518
530
  */
519
- ExtFirst?: string
531
+ CreateTime: string
532
+ }
520
533
 
534
+ /**
535
+ * DescribeOfflineLogs请求参数结构体
536
+ */
537
+ export interface DescribeOfflineLogsRequest {
521
538
  /**
522
- * 网络类型
539
+ * 项目唯一上报 key
523
540
  */
524
- NetType?: string
541
+ ProjectKey: string
525
542
 
526
543
  /**
527
- * 机型
544
+ * 离线日志文件 id 列表
528
545
  */
529
- Device?: string
546
+ FileIDs: Array<string>
547
+ }
530
548
 
531
- /**
532
- * 是否海外
533
- */
549
+ /**
550
+ * DescribeScores请求参数结构体
551
+ */
552
+ export interface DescribeScoresRequest {
553
+ /**
554
+ * 结束时间
555
+ */
556
+ EndTime: string
557
+
558
+ /**
559
+ * 开始时间
560
+ */
561
+ StartTime: string
562
+
563
+ /**
564
+ * 项目ID
565
+ */
566
+ ID?: number
567
+ }
568
+
569
+ /**
570
+ * DescribeDataReportCount请求参数结构体
571
+ */
572
+ export interface DescribeDataReportCountRequest {
573
+ /**
574
+ * 开始时间
575
+ */
576
+ StartTime: number
577
+
578
+ /**
579
+ * 结束时间
580
+ */
581
+ EndTime: number
582
+
583
+ /**
584
+ * 项目ID
585
+ */
586
+ ID?: number
587
+
588
+ /**
589
+ * 上报类型
590
+ */
591
+ ReportType?: string
592
+
593
+ /**
594
+ * 实例ID
595
+ */
596
+ InstanceID?: string
597
+ }
598
+
599
+ /**
600
+ * DeleteOfflineLogRecord请求参数结构体
601
+ */
602
+ export interface DeleteOfflineLogRecordRequest {
603
+ /**
604
+ * 项目唯一上报 key
605
+ */
606
+ ProjectKey: string
607
+
608
+ /**
609
+ * 离线日志文件 id
610
+ */
611
+ FileID: string
612
+ }
613
+
614
+ /**
615
+ * DescribeReleaseFiles请求参数结构体
616
+ */
617
+ export interface DescribeReleaseFilesRequest {
618
+ /**
619
+ * 项目 id
620
+ */
621
+ ProjectID: number
622
+
623
+ /**
624
+ * 文件版本
625
+ */
626
+ FileVersion?: string
627
+ }
628
+
629
+ /**
630
+ * CreateReleaseFile请求参数结构体
631
+ */
632
+ export interface CreateReleaseFileRequest {
633
+ /**
634
+ * 项目 id
635
+ */
636
+ ProjectID: number
637
+
638
+ /**
639
+ * 文件信息列表
640
+ */
641
+ Files: Array<ReleaseFile>
642
+ }
643
+
644
+ /**
645
+ * DeleteOfflineLogRecord返回参数结构体
646
+ */
647
+ export interface DeleteOfflineLogRecordResponse {
648
+ /**
649
+ * 接口调用信息
650
+ */
651
+ Msg: string
652
+
653
+ /**
654
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
655
+ */
656
+ RequestId?: string
657
+ }
658
+
659
+ /**
660
+ * DescribeDataCustomUrl请求参数结构体
661
+ */
662
+ export interface DescribeDataCustomUrlRequest {
663
+ /**
664
+ * 开始时间
665
+ */
666
+ StartTime: number
667
+
668
+ /**
669
+ * 类型
670
+ */
671
+ Type: string
672
+
673
+ /**
674
+ * 结束时间
675
+ */
676
+ EndTime: number
677
+
678
+ /**
679
+ * 项目ID
680
+ */
681
+ ID: number
682
+
683
+ /**
684
+ * 自定义2
685
+ */
686
+ ExtSecond?: string
687
+
688
+ /**
689
+ * 浏览器引擎
690
+ */
691
+ Engine?: string
692
+
693
+ /**
694
+ * 运营商
695
+ */
696
+ Isp?: string
697
+
698
+ /**
699
+ * 来源页面
700
+ */
701
+ From?: string
702
+
703
+ /**
704
+ * 日志等级
705
+ */
706
+ Level?: string
707
+
708
+ /**
709
+ * 品牌
710
+ */
711
+ Brand?: string
712
+
713
+ /**
714
+ * 地区
715
+ */
716
+ Area?: string
717
+
718
+ /**
719
+ * 版本
720
+ */
721
+ VersionNum?: string
722
+
723
+ /**
724
+ * 平台
725
+ */
726
+ Platform?: string
727
+
728
+ /**
729
+ * 自定义3
730
+ */
731
+ ExtThird?: string
732
+
733
+ /**
734
+ * 自定义1
735
+ */
736
+ ExtFirst?: string
737
+
738
+ /**
739
+ * 网络类型
740
+ */
741
+ NetType?: string
742
+
743
+ /**
744
+ * 机型
745
+ */
746
+ Device?: string
747
+
748
+ /**
749
+ * 是否海外
750
+ */
751
+ IsAbroad?: string
752
+
753
+ /**
754
+ * 操作系统
755
+ */
756
+ Os?: string
757
+
758
+ /**
759
+ * 浏览器
760
+ */
761
+ Browser?: string
762
+
763
+ /**
764
+ * 耗时计算方式
765
+ */
766
+ CostType?: string
767
+
768
+ /**
769
+ * 自定义测速的key的值
770
+ */
771
+ Url?: string
772
+
773
+ /**
774
+ * 环境
775
+ */
776
+ Env?: string
777
+ }
778
+
779
+ /**
780
+ * DescribeUvList返回参数结构体
781
+ */
782
+ export interface DescribeUvListResponse {
783
+ /**
784
+ * uv列表
785
+ */
786
+ ProjectUvSet: Array<RumUvInfo>
787
+
788
+ /**
789
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
790
+ */
791
+ RequestId?: string
792
+ }
793
+
794
+ /**
795
+ * 标签
796
+ */
797
+ export interface Tag {
798
+ /**
799
+ * 标签key
800
+ */
801
+ Key: string
802
+
803
+ /**
804
+ * 标签value
805
+ */
806
+ Value: string
807
+ }
808
+
809
+ /**
810
+ * CreateProject请求参数结构体
811
+ */
812
+ export interface CreateProjectRequest {
813
+ /**
814
+ * 创建的项目名(不为空且最长为 200)
815
+ */
816
+ Name: string
817
+
818
+ /**
819
+ * 业务系统 ID
820
+ */
821
+ InstanceID: string
822
+
823
+ /**
824
+ * 项目抽样率(大于等于 0)
825
+ */
826
+ Rate: string
827
+
828
+ /**
829
+ * 是否开启聚类
830
+ */
831
+ EnableURLGroup: number
832
+
833
+ /**
834
+ * 项目类型("web", "mp", "android", "ios", "node", "hippy", "weex", "viola", "rn")
835
+ */
836
+ Type: string
837
+
838
+ /**
839
+ * 项目对应仓库地址(可选,最长为 256)
840
+ */
841
+ Repo?: string
842
+
843
+ /**
844
+ * 项目对应网页地址(可选,最长为 256)
845
+ */
846
+ URL?: string
847
+
848
+ /**
849
+ * 创建的项目描述(可选,最长为 1000)
850
+ */
851
+ Desc?: string
852
+ }
853
+
854
+ /**
855
+ * DescribeDataStaticUrl请求参数结构体
856
+ */
857
+ export interface DescribeDataStaticUrlRequest {
858
+ /**
859
+ * 开始时间
860
+ */
861
+ StartTime: number
862
+
863
+ /**
864
+ * 类型
865
+ */
866
+ Type: string
867
+
868
+ /**
869
+ * 结束时间
870
+ */
871
+ EndTime: number
872
+
873
+ /**
874
+ * 项目ID
875
+ */
876
+ ID: number
877
+
878
+ /**
879
+ * 自定义2
880
+ */
881
+ ExtSecond?: string
882
+
883
+ /**
884
+ * 浏览器引擎
885
+ */
886
+ Engine?: string
887
+
888
+ /**
889
+ * 运营商
890
+ */
891
+ Isp?: string
892
+
893
+ /**
894
+ * 来源页面
895
+ */
896
+ From?: string
897
+
898
+ /**
899
+ * 日志等级
900
+ */
901
+ Level?: string
902
+
903
+ /**
904
+ * 品牌
905
+ */
906
+ Brand?: string
907
+
908
+ /**
909
+ * 地区
910
+ */
911
+ Area?: string
912
+
913
+ /**
914
+ * 版本
915
+ */
916
+ VersionNum?: string
917
+
918
+ /**
919
+ * 平台
920
+ */
921
+ Platform?: string
922
+
923
+ /**
924
+ * 自定义3
925
+ */
926
+ ExtThird?: string
927
+
928
+ /**
929
+ * 自定义1
930
+ */
931
+ ExtFirst?: string
932
+
933
+ /**
934
+ * 网络类型
935
+ */
936
+ NetType?: string
937
+
938
+ /**
939
+ * 机型
940
+ */
941
+ Device?: string
942
+
943
+ /**
944
+ * 是否海外
945
+ */
946
+ IsAbroad?: string
947
+
948
+ /**
949
+ * 操作系统
950
+ */
951
+ Os?: string
952
+
953
+ /**
954
+ * 浏览器
955
+ */
956
+ Browser?: string
957
+
958
+ /**
959
+ * 耗时计算方式
960
+ */
961
+ CostType?: string
962
+
963
+ /**
964
+ * 来源
965
+ */
966
+ Url?: string
967
+
968
+ /**
969
+ * 环境
970
+ */
971
+ Env?: string
972
+ }
973
+
974
+ /**
975
+ * ModifyInstance返回参数结构体
976
+ */
977
+ export interface ModifyInstanceResponse {
978
+ /**
979
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
980
+ */
981
+ RequestId?: string
982
+ }
983
+
984
+ /**
985
+ * DescribeOfflineLogRecords返回参数结构体
986
+ */
987
+ export interface DescribeOfflineLogRecordsResponse {
988
+ /**
989
+ * 接口调用信息
990
+ */
991
+ Msg: string
992
+
993
+ /**
994
+ * 记录 ID 数组
995
+ */
996
+ RecordSet: Array<string>
997
+
998
+ /**
999
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1000
+ */
1001
+ RequestId?: string
1002
+ }
1003
+
1004
+ /**
1005
+ * DeleteStarProject请求参数结构体
1006
+ */
1007
+ export interface DeleteStarProjectRequest {
1008
+ /**
1009
+ * 实例ID:taw-123
1010
+ */
1011
+ InstanceID: string
1012
+
1013
+ /**
1014
+ * 项目ID
1015
+ */
1016
+ ID: number
1017
+ }
1018
+
1019
+ /**
1020
+ * DescribeWhitelists请求参数结构体
1021
+ */
1022
+ export interface DescribeWhitelistsRequest {
1023
+ /**
1024
+ * 实例instance-ID
1025
+ */
1026
+ InstanceID: string
1027
+ }
1028
+
1029
+ /**
1030
+ * DescribeLogExports返回参数结构体
1031
+ */
1032
+ export interface DescribeLogExportsResponse {
1033
+ /**
1034
+ * 日志导出记录列表
1035
+ */
1036
+ LogExportSet: Array<LogExport>
1037
+
1038
+ /**
1039
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1040
+ */
1041
+ RequestId?: string
1042
+ }
1043
+
1044
+ /**
1045
+ * DescribeUvList请求参数结构体
1046
+ */
1047
+ export interface DescribeUvListRequest {
1048
+ /**
1049
+ * ID
1050
+ */
1051
+ ProjectId: number
1052
+
1053
+ /**
1054
+ * 结束时间
1055
+ */
1056
+ EndTime: string
1057
+
1058
+ /**
1059
+ * 开始时间
1060
+ */
1061
+ StartTime: string
1062
+
1063
+ /**
1064
+ * 获取day:d, min:m
1065
+ */
1066
+ Dimension?: string
1067
+ }
1068
+
1069
+ /**
1070
+ * DescribeTawAreas返回参数结构体
1071
+ */
1072
+ export interface DescribeTawAreasResponse {
1073
+ /**
1074
+ * 片区总数
1075
+ */
1076
+ TotalCount: number
1077
+
1078
+ /**
1079
+ * 片区列表
1080
+ */
1081
+ AreaSet: Array<RumAreaInfo>
1082
+
1083
+ /**
1084
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1085
+ */
1086
+ RequestId?: string
1087
+ }
1088
+
1089
+ /**
1090
+ * DescribeData请求参数结构体
1091
+ */
1092
+ export interface DescribeDataRequest {
1093
+ /**
1094
+ * 查询字符串
1095
+ */
1096
+ Query: string
1097
+
1098
+ /**
1099
+ * 项目ID
1100
+ */
1101
+ ID: number
1102
+ }
1103
+
1104
+ /**
1105
+ * CreateOfflineLogConfig返回参数结构体
1106
+ */
1107
+ export interface CreateOfflineLogConfigResponse {
1108
+ /**
1109
+ * 接口返回信息
1110
+ */
1111
+ Msg: string
1112
+
1113
+ /**
1114
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1115
+ */
1116
+ RequestId?: string
1117
+ }
1118
+
1119
+ /**
1120
+ * ModifyProjectLimit请求参数结构体
1121
+ */
1122
+ export interface ModifyProjectLimitRequest {
1123
+ /**
1124
+ * 项目ID
1125
+ */
1126
+ ProjectID: number
1127
+
1128
+ /**
1129
+ * 项目接口
1130
+ */
1131
+ ProjectInterface?: string
1132
+
1133
+ /**
1134
+ * 上报比例 10代表10%
1135
+ */
1136
+ ReportRate?: number
1137
+
1138
+ /**
1139
+ * 上报类型 1:比例 2:上报量
1140
+ */
1141
+ ReportType?: number
1142
+
1143
+ /**
1144
+ * 主键ID
1145
+ */
1146
+ ID?: number
1147
+ }
1148
+
1149
+ /**
1150
+ * DeleteInstance返回参数结构体
1151
+ */
1152
+ export interface DeleteInstanceResponse {
1153
+ /**
1154
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1155
+ */
1156
+ RequestId?: string
1157
+ }
1158
+
1159
+ /**
1160
+ * DescribeDataPerformancePage请求参数结构体
1161
+ */
1162
+ export interface DescribeDataPerformancePageRequest {
1163
+ /**
1164
+ * 项目ID
1165
+ */
1166
+ ID: number
1167
+
1168
+ /**
1169
+ * 开始时间
1170
+ */
1171
+ StartTime: number
1172
+
1173
+ /**
1174
+ * 结束时间
1175
+ */
1176
+ EndTime: number
1177
+
1178
+ /**
1179
+ * ["pagepv", "allcount"]
1180
+ */
1181
+ Type: string
1182
+
1183
+ /**
1184
+ * 日志等级
1185
+ */
1186
+ Level?: string
1187
+
1188
+ /**
1189
+ * 运营商
1190
+ */
1191
+ Isp?: string
1192
+
1193
+ /**
1194
+ * 地区
1195
+ */
1196
+ Area?: string
1197
+
1198
+ /**
1199
+ * 网络类型
1200
+ */
1201
+ NetType?: string
1202
+
1203
+ /**
1204
+ * 平台
1205
+ */
1206
+ Platform?: string
1207
+
1208
+ /**
1209
+ * 机型
1210
+ */
1211
+ Device?: string
1212
+
1213
+ /**
1214
+ * 版本
1215
+ */
1216
+ VersionNum?: string
1217
+
1218
+ /**
1219
+ * 自定义1
1220
+ */
1221
+ ExtFirst?: string
1222
+
1223
+ /**
1224
+ * 自定义2
1225
+ */
1226
+ ExtSecond?: string
1227
+
1228
+ /**
1229
+ * 自定义3
1230
+ */
1231
+ ExtThird?: string
1232
+
1233
+ /**
1234
+ * 是否海外
1235
+ */
1236
+ IsAbroad?: string
1237
+
1238
+ /**
1239
+ * 浏览器
1240
+ */
1241
+ Browser?: string
1242
+
1243
+ /**
1244
+ * 操作系统
1245
+ */
1246
+ Os?: string
1247
+
1248
+ /**
1249
+ * 浏览器引擎
1250
+ */
1251
+ Engine?: string
1252
+
1253
+ /**
1254
+ * 品牌
1255
+ */
1256
+ Brand?: string
1257
+
1258
+ /**
1259
+ * 来源页面
1260
+ */
1261
+ From?: string
1262
+
1263
+ /**
1264
+ * 耗时计算方式
1265
+ */
1266
+ CostType?: string
1267
+
1268
+ /**
1269
+ * 环境变量
1270
+ */
1271
+ Env?: string
1272
+ }
1273
+
1274
+ /**
1275
+ * DeleteReleaseFile请求参数结构体
1276
+ */
1277
+ export interface DeleteReleaseFileRequest {
1278
+ /**
1279
+ * 文件 id
1280
+ */
1281
+ ID: number
1282
+ }
1283
+
1284
+ /**
1285
+ * ResumeInstance请求参数结构体
1286
+ */
1287
+ export interface ResumeInstanceRequest {
1288
+ /**
1289
+ * 需要恢复的实例id
1290
+ */
1291
+ InstanceId: string
1292
+ }
1293
+
1294
+ /**
1295
+ * DescribeDataFetchUrl请求参数结构体
1296
+ */
1297
+ export interface DescribeDataFetchUrlRequest {
1298
+ /**
1299
+ * 开始时间
1300
+ */
1301
+ StartTime: number
1302
+
1303
+ /**
1304
+ * 类型
1305
+ */
1306
+ Type: string
1307
+
1308
+ /**
1309
+ * 结束时间
1310
+ */
1311
+ EndTime: number
1312
+
1313
+ /**
1314
+ * 项目ID
1315
+ */
1316
+ ID: number
1317
+
1318
+ /**
1319
+ * 自定义2
1320
+ */
1321
+ ExtSecond?: string
1322
+
1323
+ /**
1324
+ * 浏览器引擎
1325
+ */
1326
+ Engine?: string
1327
+
1328
+ /**
1329
+ * 运营商
1330
+ */
1331
+ Isp?: string
1332
+
1333
+ /**
1334
+ * 来源页面
1335
+ */
1336
+ From?: string
1337
+
1338
+ /**
1339
+ * 日志等级
1340
+ */
1341
+ Level?: string
1342
+
1343
+ /**
1344
+ * 品牌
1345
+ */
1346
+ Brand?: string
1347
+
1348
+ /**
1349
+ * 地区
1350
+ */
1351
+ Area?: string
1352
+
1353
+ /**
1354
+ * 版本
1355
+ */
1356
+ VersionNum?: string
1357
+
1358
+ /**
1359
+ * 平台
1360
+ */
1361
+ Platform?: string
1362
+
1363
+ /**
1364
+ * 自定义3
1365
+ */
1366
+ ExtThird?: string
1367
+
1368
+ /**
1369
+ * 自定义1
1370
+ */
1371
+ ExtFirst?: string
1372
+
1373
+ /**
1374
+ * 网络类型
1375
+ */
1376
+ NetType?: string
1377
+
1378
+ /**
1379
+ * 机型
1380
+ */
1381
+ Device?: string
1382
+
1383
+ /**
1384
+ * 是否海外
1385
+ */
1386
+ IsAbroad?: string
1387
+
1388
+ /**
1389
+ * 操作系统
1390
+ */
1391
+ Os?: string
1392
+
1393
+ /**
1394
+ * 浏览器
1395
+ */
1396
+ Browser?: string
1397
+
1398
+ /**
1399
+ * 耗时计算方式
1400
+ */
1401
+ CostType?: string
1402
+
1403
+ /**
1404
+ * 来源
1405
+ */
1406
+ Url?: string
1407
+
1408
+ /**
1409
+ * 环境
1410
+ */
1411
+ Env?: string
1412
+ }
1413
+
1414
+ /**
1415
+ * DescribeDataLogUrlStatistics返回参数结构体
1416
+ */
1417
+ export interface DescribeDataLogUrlStatisticsResponse {
1418
+ /**
1419
+ * 返回值
1420
+ */
1421
+ Result: string
1422
+
1423
+ /**
1424
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1425
+ */
1426
+ RequestId?: string
1427
+ }
1428
+
1429
+ /**
1430
+ * CreateProject返回参数结构体
1431
+ */
1432
+ export interface CreateProjectResponse {
1433
+ /**
1434
+ * 项目 id
1435
+ */
1436
+ ID: number
1437
+
1438
+ /**
1439
+ * 项目唯一key
1440
+ */
1441
+ Key: string
1442
+
1443
+ /**
1444
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1445
+ */
1446
+ RequestId?: string
1447
+ }
1448
+
1449
+ /**
1450
+ * StopInstance返回参数结构体
1451
+ */
1452
+ export interface StopInstanceResponse {
1453
+ /**
1454
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1455
+ */
1456
+ RequestId?: string
1457
+ }
1458
+
1459
+ /**
1460
+ * DescribeProjectLimits请求参数结构体
1461
+ */
1462
+ export interface DescribeProjectLimitsRequest {
1463
+ /**
1464
+ * 项目ID
1465
+ */
1466
+ ProjectID: number
1467
+ }
1468
+
1469
+ /**
1470
+ * CreateStarProject返回参数结构体
1471
+ */
1472
+ export interface CreateStarProjectResponse {
1473
+ /**
1474
+ * 接口返回信息
1475
+ */
1476
+ Msg: string
1477
+
1478
+ /**
1479
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1480
+ */
1481
+ RequestId?: string
1482
+ }
1483
+
1484
+ /**
1485
+ * DeleteProject返回参数结构体
1486
+ */
1487
+ export interface DeleteProjectResponse {
1488
+ /**
1489
+ * 操作信息
1490
+ */
1491
+ Msg: string
1492
+
1493
+ /**
1494
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1495
+ */
1496
+ RequestId?: string
1497
+ }
1498
+
1499
+ /**
1500
+ * DescribeOfflineLogRecords请求参数结构体
1501
+ */
1502
+ export interface DescribeOfflineLogRecordsRequest {
1503
+ /**
1504
+ * 项目唯一上报 key
1505
+ */
1506
+ ProjectKey: string
1507
+ }
1508
+
1509
+ /**
1510
+ * DescribeDataPvUrlStatistics请求参数结构体
1511
+ */
1512
+ export interface DescribeDataPvUrlStatisticsRequest {
1513
+ /**
1514
+ * 开始时间
1515
+ */
1516
+ StartTime: number
1517
+
1518
+ /**
1519
+ * 类型:"allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
1520
+ */
1521
+ Type: string
1522
+
1523
+ /**
1524
+ * 结束时间
1525
+ */
1526
+ EndTime: number
1527
+
1528
+ /**
1529
+ * 项目ID
1530
+ */
1531
+ ID: number
1532
+
1533
+ /**
1534
+ * 自定义2
1535
+ */
1536
+ ExtSecond?: string
1537
+
1538
+ /**
1539
+ * 浏览器引擎
1540
+ */
1541
+ Engine?: string
1542
+
1543
+ /**
1544
+ * 运营商
1545
+ */
1546
+ Isp?: string
1547
+
1548
+ /**
1549
+ * 来源页面
1550
+ */
1551
+ From?: string
1552
+
1553
+ /**
1554
+ * 日志等级
1555
+ */
1556
+ Level?: string
1557
+
1558
+ /**
1559
+ * 品牌
1560
+ */
1561
+ Brand?: string
1562
+
1563
+ /**
1564
+ * 地区
1565
+ */
1566
+ Area?: string
1567
+
1568
+ /**
1569
+ * 版本
1570
+ */
1571
+ VersionNum?: string
1572
+
1573
+ /**
1574
+ * 平台
1575
+ */
1576
+ Platform?: string
1577
+
1578
+ /**
1579
+ * 自定义3
1580
+ */
1581
+ ExtThird?: string
1582
+
1583
+ /**
1584
+ * 自定义1
1585
+ */
1586
+ ExtFirst?: string
1587
+
1588
+ /**
1589
+ * 网络类型
1590
+ */
1591
+ NetType?: string
1592
+
1593
+ /**
1594
+ * 机型
1595
+ */
1596
+ Device?: string
1597
+
1598
+ /**
1599
+ * 是否海外
1600
+ */
1601
+ IsAbroad?: string
1602
+
1603
+ /**
1604
+ * 操作系统
1605
+ */
1606
+ Os?: string
1607
+
1608
+ /**
1609
+ * 浏览器
1610
+ */
1611
+ Browser?: string
1612
+
1613
+ /**
1614
+ * 环境
1615
+ */
1616
+ Env?: string
1617
+ }
1618
+
1619
+ /**
1620
+ * 发布文件列表(SOURCEMAP)
1621
+ */
1622
+ export interface ReleaseFile {
1623
+ /**
1624
+ * 文件版本
1625
+ */
1626
+ Version: string
1627
+
1628
+ /**
1629
+ * 文件唯一 key
1630
+ */
1631
+ FileKey: string
1632
+
1633
+ /**
1634
+ * 文件名
1635
+ */
1636
+ FileName: string
1637
+
1638
+ /**
1639
+ * 文件哈希值
1640
+ */
1641
+ FileHash: string
1642
+
1643
+ /**
1644
+ * 文件 id
1645
+ 注意:此字段可能返回 null,表示取不到有效值。
1646
+ */
1647
+ ID: number
1648
+ }
1649
+
1650
+ /**
1651
+ * ModifyProjectLimit返回参数结构体
1652
+ */
1653
+ export interface ModifyProjectLimitResponse {
1654
+ /**
1655
+ * 返回信息
1656
+ 注意:此字段可能返回 null,表示取不到有效值。
1657
+ */
1658
+ Msg: string
1659
+
1660
+ /**
1661
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1662
+ */
1663
+ RequestId?: string
1664
+ }
1665
+
1666
+ /**
1667
+ * DescribeDataStaticProject请求参数结构体
1668
+ */
1669
+ export interface DescribeDataStaticProjectRequest {
1670
+ /**
1671
+ * 开始时间
1672
+ */
1673
+ StartTime: number
1674
+
1675
+ /**
1676
+ * 类型
1677
+ */
1678
+ Type: string
1679
+
1680
+ /**
1681
+ * 结束时间
1682
+ */
1683
+ EndTime: number
1684
+
1685
+ /**
1686
+ * 项目ID
1687
+ */
1688
+ ID: number
1689
+
1690
+ /**
1691
+ * 自定义2
1692
+ */
1693
+ ExtSecond?: string
1694
+
1695
+ /**
1696
+ * 浏览器引擎
1697
+ */
1698
+ Engine?: string
1699
+
1700
+ /**
1701
+ * 运营商
1702
+ */
1703
+ Isp?: string
1704
+
1705
+ /**
1706
+ * 来源页面
1707
+ */
1708
+ From?: string
1709
+
1710
+ /**
1711
+ * 日志等级
1712
+ */
1713
+ Level?: string
1714
+
1715
+ /**
1716
+ * 品牌
1717
+ */
1718
+ Brand?: string
1719
+
1720
+ /**
1721
+ * 地区
1722
+ */
1723
+ Area?: string
1724
+
1725
+ /**
1726
+ * 版本
1727
+ */
1728
+ VersionNum?: string
1729
+
1730
+ /**
1731
+ * 平台
1732
+ */
1733
+ Platform?: string
1734
+
1735
+ /**
1736
+ * 自定义3
1737
+ */
1738
+ ExtThird?: string
1739
+
1740
+ /**
1741
+ * 自定义1
1742
+ */
1743
+ ExtFirst?: string
1744
+
1745
+ /**
1746
+ * 网络类型
1747
+ */
1748
+ NetType?: string
1749
+
1750
+ /**
1751
+ * 机型
1752
+ */
1753
+ Device?: string
1754
+
1755
+ /**
1756
+ * 是否海外
1757
+ */
1758
+ IsAbroad?: string
1759
+
1760
+ /**
1761
+ * 操作系统
1762
+ */
1763
+ Os?: string
1764
+
1765
+ /**
1766
+ * 浏览器
1767
+ */
1768
+ Browser?: string
1769
+
1770
+ /**
1771
+ * 耗时计算
1772
+ */
1773
+ CostType?: string
1774
+
1775
+ /**
1776
+ * 来源
1777
+ */
1778
+ Url?: Array<string>
1779
+
1780
+ /**
1781
+ * 环境
1782
+ */
1783
+ Env?: string
1784
+ }
1785
+
1786
+ /**
1787
+ * 项目接口限制类型
1788
+ */
1789
+ export interface ProjectLimit {
1790
+ /**
1791
+ * 主键ID
1792
+ */
1793
+ ID: number
1794
+
1795
+ /**
1796
+ * 项目ID
1797
+ */
1798
+ ProjectID: number
1799
+
1800
+ /**
1801
+ * 接口
1802
+ */
1803
+ ProjectInterface: string
1804
+
1805
+ /**
1806
+ * 上报率
1807
+ */
1808
+ ReportRate: number
1809
+
1810
+ /**
1811
+ * 上报类型 1:上报率 2:上报量限制
1812
+ */
1813
+ ReportType: number
1814
+ }
1815
+
1816
+ /**
1817
+ * DeleteLogExport请求参数结构体
1818
+ */
1819
+ export interface DeleteLogExportRequest {
1820
+ /**
1821
+ * 项目ID
1822
+ */
1823
+ ID: number
1824
+
1825
+ /**
1826
+ * 日志导出ID
1827
+ */
1828
+ ExportID: string
1829
+ }
1830
+
1831
+ /**
1832
+ * DescribeWhitelists返回参数结构体
1833
+ */
1834
+ export interface DescribeWhitelistsResponse {
1835
+ /**
1836
+ * 白名单列表
1837
+ */
1838
+ WhitelistSet: Array<Whitelist>
1839
+
1840
+ /**
1841
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1842
+ */
1843
+ RequestId?: string
1844
+ }
1845
+
1846
+ /**
1847
+ * CreateWhitelist请求参数结构体
1848
+ */
1849
+ export interface CreateWhitelistRequest {
1850
+ /**
1851
+ * 实例ID:taw-123
1852
+ */
1853
+ InstanceID: string
1854
+
1855
+ /**
1856
+ * 备注
1857
+ */
1858
+ Remark: string
1859
+
1860
+ /**
1861
+ * uin:业务方标识
1862
+ */
1863
+ WhitelistUin: string
1864
+
1865
+ /**
1866
+ * 业务方标识
1867
+ */
1868
+ Aid?: string
1869
+ }
1870
+
1871
+ /**
1872
+ * DescribeDataPvUrlStatistics返回参数结构体
1873
+ */
1874
+ export interface DescribeDataPvUrlStatisticsResponse {
1875
+ /**
1876
+ * 返回值
1877
+ */
1878
+ Result: string
1879
+
1880
+ /**
1881
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1882
+ */
1883
+ RequestId?: string
1884
+ }
1885
+
1886
+ /**
1887
+ * DescribeDataLogUrlInfo请求参数结构体
1888
+ */
1889
+ export interface DescribeDataLogUrlInfoRequest {
1890
+ /**
1891
+ * 项目ID
1892
+ */
1893
+ ID: number
1894
+
1895
+ /**
1896
+ * 时间戳
1897
+ */
1898
+ StartTime: number
1899
+
1900
+ /**
1901
+ * 时间戳
1902
+ */
1903
+ EndTime: number
1904
+ }
1905
+
1906
+ /**
1907
+ * DescribeDataCustomUrl返回参数结构体
1908
+ */
1909
+ export interface DescribeDataCustomUrlResponse {
1910
+ /**
1911
+ * 返回值
1912
+ */
1913
+ Result: string
1914
+
1915
+ /**
1916
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1917
+ */
1918
+ RequestId?: string
1919
+ }
1920
+
1921
+ /**
1922
+ * Rum片区信息
1923
+ */
1924
+ export interface RumAreaInfo {
1925
+ /**
1926
+ * 片区Id
1927
+ */
1928
+ AreaId: number
1929
+
1930
+ /**
1931
+ * 片区状态(1=有效,2=无效)
1932
+ */
1933
+ AreaStatus: number
1934
+
1935
+ /**
1936
+ * 片区名称
1937
+ */
1938
+ AreaName: string
1939
+
1940
+ /**
1941
+ * 片区Key
1942
+ */
1943
+ AreaKey: string
1944
+ }
1945
+
1946
+ /**
1947
+ * DescribeDataSetUrlStatistics请求参数结构体
1948
+ */
1949
+ export interface DescribeDataSetUrlStatisticsRequest {
1950
+ /**
1951
+ * 开始时间
1952
+ */
1953
+ StartTime: number
1954
+
1955
+ /**
1956
+ * "allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
1957
+ */
1958
+ Type: string
1959
+
1960
+ /**
1961
+ * 结束时间
1962
+ */
1963
+ EndTime: number
1964
+
1965
+ /**
1966
+ * 项目ID
1967
+ */
1968
+ ID: number
1969
+
1970
+ /**
1971
+ * 自定义2
1972
+ */
1973
+ ExtSecond?: string
1974
+
1975
+ /**
1976
+ * 浏览器引擎
1977
+ */
1978
+ Engine?: string
1979
+
1980
+ /**
1981
+ * 运营商
1982
+ */
1983
+ Isp?: string
1984
+
1985
+ /**
1986
+ * 来源页面
1987
+ */
1988
+ From?: string
1989
+
1990
+ /**
1991
+ * 日志等级
1992
+ */
1993
+ Level?: string
1994
+
1995
+ /**
1996
+ * 品牌
1997
+ */
1998
+ Brand?: string
1999
+
2000
+ /**
2001
+ * 地区
2002
+ */
2003
+ Area?: string
2004
+
2005
+ /**
2006
+ * 版本
2007
+ */
2008
+ VersionNum?: string
2009
+
2010
+ /**
2011
+ * 平台
2012
+ */
2013
+ Platform?: string
2014
+
2015
+ /**
2016
+ * 自定义3
2017
+ */
2018
+ ExtThird?: string
2019
+
2020
+ /**
2021
+ * 自定义1
2022
+ */
2023
+ ExtFirst?: string
2024
+
2025
+ /**
2026
+ * 网络类型
2027
+ */
2028
+ NetType?: string
2029
+
2030
+ /**
2031
+ * 机型
2032
+ */
2033
+ Device?: string
2034
+
2035
+ /**
2036
+ * 是否海外
2037
+ */
2038
+ IsAbroad?: string
2039
+
2040
+ /**
2041
+ * 操作系统
2042
+ */
2043
+ Os?: string
2044
+
2045
+ /**
2046
+ * 浏览器
2047
+ */
2048
+ Browser?: string
2049
+
2050
+ /**
2051
+ * 耗时计算
2052
+ */
2053
+ CostType?: string
2054
+
2055
+ /**
2056
+ * 环境
2057
+ */
2058
+ Env?: string
2059
+ }
2060
+
2061
+ /**
2062
+ * DescribeDataPerformanceProject返回参数结构体
2063
+ */
2064
+ export interface DescribeDataPerformanceProjectResponse {
2065
+ /**
2066
+ * 返回值
2067
+ */
2068
+ Result: string
2069
+
2070
+ /**
2071
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2072
+ */
2073
+ RequestId?: string
2074
+ }
2075
+
2076
+ /**
2077
+ * DescribeDataFetchUrlInfo返回参数结构体
2078
+ */
2079
+ export interface DescribeDataFetchUrlInfoResponse {
2080
+ /**
2081
+ * 返回值
2082
+ */
2083
+ Result: string
2084
+
2085
+ /**
2086
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2087
+ */
2088
+ RequestId?: string
2089
+ }
2090
+
2091
+ /**
2092
+ * ResumeInstance返回参数结构体
2093
+ */
2094
+ export interface ResumeInstanceResponse {
2095
+ /**
2096
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2097
+ */
2098
+ RequestId?: string
2099
+ }
2100
+
2101
+ /**
2102
+ * DescribeDataStaticProject返回参数结构体
2103
+ */
2104
+ export interface DescribeDataStaticProjectResponse {
2105
+ /**
2106
+ * 返回值
2107
+ */
2108
+ Result: string
2109
+
2110
+ /**
2111
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2112
+ */
2113
+ RequestId?: string
2114
+ }
2115
+
2116
+ /**
2117
+ * CreateStarProject请求参数结构体
2118
+ */
2119
+ export interface CreateStarProjectRequest {
2120
+ /**
2121
+ * 实例ID:taw-123
2122
+ */
2123
+ InstanceID: string
2124
+
2125
+ /**
2126
+ * 项目ID
2127
+ */
2128
+ ID: number
2129
+ }
2130
+
2131
+ /**
2132
+ * DescribeReleaseFileSign请求参数结构体
2133
+ */
2134
+ export interface DescribeReleaseFileSignRequest {
2135
+ /**
2136
+ * 超时时间,不填默认是 5 分钟
2137
+ */
2138
+ Timeout?: number
2139
+ }
2140
+
2141
+ /**
2142
+ * DeleteWhitelist请求参数结构体
2143
+ */
2144
+ export interface DeleteWhitelistRequest {
2145
+ /**
2146
+ * 实例ID
2147
+ */
2148
+ InstanceID: string
2149
+
2150
+ /**
2151
+ * 名单ID
2152
+ */
2153
+ ID: string
2154
+ }
2155
+
2156
+ /**
2157
+ * DescribeDataLogUrlInfo返回参数结构体
2158
+ */
2159
+ export interface DescribeDataLogUrlInfoResponse {
2160
+ /**
2161
+ * 返回字符串
2162
+ */
2163
+ Result: string
2164
+
2165
+ /**
2166
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2167
+ */
2168
+ RequestId?: string
2169
+ }
2170
+
2171
+ /**
2172
+ * rum 日志对象
2173
+ */
2174
+ export interface RumPvInfo {
2175
+ /**
2176
+ * 项目ID
2177
+ */
2178
+ ProjectId: number
2179
+
2180
+ /**
2181
+ * pv访问量
2182
+ 注意:此字段可能返回 null,表示取不到有效值。
2183
+ */
2184
+ Pv: string
2185
+
2186
+ /**
2187
+ * 时间
2188
+ */
2189
+ CreateTime: string
2190
+ }
2191
+
2192
+ /**
2193
+ * DeleteReleaseFile返回参数结构体
2194
+ */
2195
+ export interface DeleteReleaseFileResponse {
2196
+ /**
2197
+ * 接口请求返回字符串
2198
+ */
2199
+ Msg: string
2200
+
2201
+ /**
2202
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2203
+ */
2204
+ RequestId?: string
2205
+ }
2206
+
2207
+ /**
2208
+ * DescribeScores返回参数结构体
2209
+ */
2210
+ export interface DescribeScoresResponse {
2211
+ /**
2212
+ * 数组
2213
+ */
2214
+ ScoreSet: Array<ScoreInfo>
2215
+
2216
+ /**
2217
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2218
+ */
2219
+ RequestId?: string
2220
+ }
2221
+
2222
+ /**
2223
+ * DescribeOfflineLogConfigs返回参数结构体
2224
+ */
2225
+ export interface DescribeOfflineLogConfigsResponse {
2226
+ /**
2227
+ * 接口调用信息
2228
+ */
2229
+ Msg: string
2230
+
2231
+ /**
2232
+ * 用户唯一标示数组
2233
+ */
2234
+ UniqueIDSet: Array<string>
2235
+
2236
+ /**
2237
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2238
+ */
2239
+ RequestId?: string
2240
+ }
2241
+
2242
+ /**
2243
+ * DeleteLogExport返回参数结构体
2244
+ */
2245
+ export interface DeleteLogExportResponse {
2246
+ /**
2247
+ * 是否成功,成功则为success;失败则直接返回Error,不返回该参数
2248
+ 注意:此字段可能返回 null,表示取不到有效值。
2249
+ */
2250
+ Msg: string
2251
+
2252
+ /**
2253
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2254
+ */
2255
+ RequestId?: string
2256
+ }
2257
+
2258
+ /**
2259
+ * DescribeReleaseFileSign返回参数结构体
2260
+ */
2261
+ export interface DescribeReleaseFileSignResponse {
2262
+ /**
2263
+ * 临时密钥key
2264
+ */
2265
+ SecretKey: string
2266
+
2267
+ /**
2268
+ * 临时密钥 id
2269
+ */
2270
+ SecretID: string
2271
+
2272
+ /**
2273
+ * 临时密钥临时 token
2274
+ */
2275
+ SessionToken: string
2276
+
2277
+ /**
2278
+ * 开始时间戳
2279
+ */
2280
+ StartTime: number
2281
+
2282
+ /**
2283
+ * 过期时间戳
2284
+ */
2285
+ ExpiredTime: number
2286
+
2287
+ /**
2288
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2289
+ */
2290
+ RequestId?: string
2291
+ }
2292
+
2293
+ /**
2294
+ * DescribeOfflineLogs返回参数结构体
2295
+ */
2296
+ export interface DescribeOfflineLogsResponse {
2297
+ /**
2298
+ * 接口调用返回信息
2299
+ */
2300
+ Msg: string
2301
+
2302
+ /**
2303
+ * 日志列表
2304
+ */
2305
+ LogSet: Array<string>
2306
+
2307
+ /**
2308
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2309
+ */
2310
+ RequestId?: string
2311
+ }
2312
+
2313
+ /**
2314
+ * DescribeTawAreas请求参数结构体
2315
+ */
2316
+ export interface DescribeTawAreasRequest {
2317
+ /**
2318
+ * 片区Id
2319
+ */
2320
+ AreaIds?: Array<number>
2321
+
2322
+ /**
2323
+ * 片区Key
2324
+ */
2325
+ AreaKeys?: Array<string>
2326
+
2327
+ /**
2328
+ * 分页Limit
2329
+ */
2330
+ Limit?: number
2331
+
2332
+ /**
2333
+ * 片区状态(1=有效,2=无效)
2334
+ */
2335
+ AreaStatuses?: Array<number>
2336
+
2337
+ /**
2338
+ * 分页Offset
2339
+ */
2340
+ Offset?: number
2341
+ }
2342
+
2343
+ /**
2344
+ * 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
2345
+
2346
+ · 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
2347
+ · 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
2348
+ */
2349
+ export interface Filter {
2350
+ /**
2351
+ * 一个或者多个过滤值。
2352
+ */
2353
+ Values?: Array<string>
2354
+
2355
+ /**
2356
+ * 过滤键的名称。
2357
+ */
2358
+ Name?: string
2359
+ }
2360
+
2361
+ /**
2362
+ * DescribeDataLogUrlStatistics请求参数结构体
2363
+ */
2364
+ export interface DescribeDataLogUrlStatisticsRequest {
2365
+ /**
2366
+ * 开始时间
2367
+ */
2368
+ StartTime: number
2369
+
2370
+ /**
2371
+ * "analysis", "compare", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
2372
+ */
2373
+ Type: string
2374
+
2375
+ /**
2376
+ * 结束时间
2377
+ */
2378
+ EndTime: number
2379
+
2380
+ /**
2381
+ * 项目ID
2382
+ */
2383
+ ID: number
2384
+
2385
+ /**
2386
+ * 自定义2
2387
+ */
2388
+ ExtSecond?: string
2389
+
2390
+ /**
2391
+ * 浏览器引擎
2392
+ */
2393
+ Engine?: string
2394
+
2395
+ /**
2396
+ * 运营商
2397
+ */
2398
+ Isp?: string
2399
+
2400
+ /**
2401
+ * 来源页面
2402
+ */
2403
+ From?: string
2404
+
2405
+ /**
2406
+ * 日志等级
2407
+ */
2408
+ Level?: string
2409
+
2410
+ /**
2411
+ * 品牌
2412
+ */
2413
+ Brand?: string
2414
+
2415
+ /**
2416
+ * 地区
2417
+ */
2418
+ Area?: string
2419
+
2420
+ /**
2421
+ * 版本
2422
+ */
2423
+ VersionNum?: string
2424
+
2425
+ /**
2426
+ * 平台
2427
+ */
2428
+ Platform?: string
2429
+
2430
+ /**
2431
+ * 自定义3
2432
+ */
2433
+ ExtThird?: string
2434
+
2435
+ /**
2436
+ * 自定义1
2437
+ */
2438
+ ExtFirst?: string
2439
+
2440
+ /**
2441
+ * 网络类型
2442
+ */
2443
+ NetType?: string
2444
+
2445
+ /**
2446
+ * 机型
2447
+ */
2448
+ Device?: string
2449
+
2450
+ /**
2451
+ * 是否海外
2452
+ */
2453
+ IsAbroad?: string
2454
+
2455
+ /**
2456
+ * 操作系统
2457
+ */
2458
+ Os?: string
2459
+
2460
+ /**
2461
+ * 浏览器
2462
+ */
2463
+ Browser?: string
2464
+
2465
+ /**
2466
+ * 环境区分
2467
+ */
2468
+ Env?: string
2469
+ }
2470
+
2471
+ /**
2472
+ * DeleteStarProject返回参数结构体
2473
+ */
2474
+ export interface DeleteStarProjectResponse {
2475
+ /**
2476
+ * 返回消息
2477
+ 注意:此字段可能返回 null,表示取不到有效值。
2478
+ */
2479
+ Msg: string
2480
+
2481
+ /**
2482
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2483
+ */
2484
+ RequestId?: string
2485
+ }
2486
+
2487
+ /**
2488
+ * DescribeDataPerformancePage返回参数结构体
2489
+ */
2490
+ export interface DescribeDataPerformancePageResponse {
2491
+ /**
2492
+ * 返回值
2493
+ */
2494
+ Result: string
2495
+
2496
+ /**
2497
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2498
+ */
2499
+ RequestId?: string
2500
+ }
2501
+
2502
+ /**
2503
+ * DeleteInstance请求参数结构体
2504
+ */
2505
+ export interface DeleteInstanceRequest {
2506
+ /**
2507
+ * 需要删除的实例id
2508
+ */
2509
+ InstanceId: string
2510
+ }
2511
+
2512
+ /**
2513
+ * 日志导出记录
2514
+ */
2515
+ export interface LogExport {
2516
+ /**
2517
+ * 日志导出路径
2518
+ */
2519
+ CosPath: string
2520
+
2521
+ /**
2522
+ * 日志导出数量
2523
+ */
2524
+ Count: number
2525
+
2526
+ /**
2527
+ * 日志导出任务创建时间
2528
+ */
2529
+ CreateTime: string
2530
+
2531
+ /**
2532
+ * 日志导出任务ID
2533
+ */
2534
+ ExportID: string
2535
+
2536
+ /**
2537
+ * 日志导出文件名
2538
+ */
2539
+ FileName: string
2540
+
2541
+ /**
2542
+ * 日志文件大小
2543
+ */
2544
+ FileSize: number
2545
+
2546
+ /**
2547
+ * 日志导出格式
2548
+ */
2549
+ Format: string
2550
+
2551
+ /**
2552
+ * 日志导出时间排序
2553
+ */
2554
+ Order: string
2555
+
2556
+ /**
2557
+ * 日志导出查询语句
2558
+ */
2559
+ Query: string
2560
+
2561
+ /**
2562
+ * 日志导出起始时间
2563
+ */
2564
+ StartTime: string
2565
+
2566
+ /**
2567
+ * 日志导出结束时间
2568
+ */
2569
+ EndTime: string
2570
+
2571
+ /**
2572
+ * 日志下载状态。Queuing:导出正在排队中,Processing:导出正在进行中,Complete:导出完成,Failed:导出失败,Expired:日志导出已过期(三天有效期)。
2573
+ */
2574
+ Status: string
2575
+ }
2576
+
2577
+ /**
2578
+ * DescribeDataStaticResource返回参数结构体
2579
+ */
2580
+ export interface DescribeDataStaticResourceResponse {
2581
+ /**
2582
+ * 返回值
2583
+ */
2584
+ Result: string
2585
+
2586
+ /**
2587
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2588
+ */
2589
+ RequestId?: string
2590
+ }
2591
+
2592
+ /**
2593
+ * DescribeDataEventUrl返回参数结构体
2594
+ */
2595
+ export interface DescribeDataEventUrlResponse {
2596
+ /**
2597
+ * 返回值
2598
+ */
2599
+ Result: string
2600
+
2601
+ /**
2602
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2603
+ */
2604
+ RequestId?: string
2605
+ }
2606
+
2607
+ /**
2608
+ * DescribeDataWebVitalsPage请求参数结构体
2609
+ */
2610
+ export interface DescribeDataWebVitalsPageRequest {
2611
+ /**
2612
+ * 开始时间
2613
+ */
2614
+ StartTime: number
2615
+
2616
+ /**
2617
+ * 结束时间
2618
+ */
2619
+ EndTime: number
2620
+
2621
+ /**
2622
+ * 项目ID
2623
+ */
2624
+ ID: number
2625
+
2626
+ /**
2627
+ * 自定义2
2628
+ */
2629
+ ExtSecond?: string
2630
+
2631
+ /**
2632
+ * 浏览器引擎
2633
+ */
2634
+ Engine?: string
2635
+
2636
+ /**
2637
+ * 运营商
2638
+ */
2639
+ Isp?: string
2640
+
2641
+ /**
2642
+ * 来源页面
2643
+ */
2644
+ From?: string
2645
+
2646
+ /**
2647
+ * 日志等级
2648
+ */
2649
+ Level?: string
2650
+
2651
+ /**
2652
+ * 类型暂无
2653
+ */
2654
+ Type?: string
2655
+
2656
+ /**
2657
+ * 品牌
2658
+ */
2659
+ Brand?: string
2660
+
2661
+ /**
2662
+ * 地区
2663
+ */
2664
+ Area?: string
2665
+
2666
+ /**
2667
+ * 版本
2668
+ */
2669
+ VersionNum?: string
2670
+
2671
+ /**
2672
+ * 平台
2673
+ */
2674
+ Platform?: string
2675
+
2676
+ /**
2677
+ * 自定义3
2678
+ */
2679
+ ExtThird?: string
2680
+
2681
+ /**
2682
+ * 自定义1
2683
+ */
2684
+ ExtFirst?: string
2685
+
2686
+ /**
2687
+ * 网络类型
2688
+ */
2689
+ NetType?: string
2690
+
2691
+ /**
2692
+ * 机型
2693
+ */
2694
+ Device?: string
2695
+
2696
+ /**
2697
+ * 是否海外
2698
+ */
2699
+ IsAbroad?: string
2700
+
2701
+ /**
2702
+ * 操作系统
2703
+ */
2704
+ Os?: string
2705
+
2706
+ /**
2707
+ * 浏览器
2708
+ */
2709
+ Browser?: string
2710
+
2711
+ /**
2712
+ * 耗时计算
2713
+ */
2714
+ CostType?: string
2715
+
2716
+ /**
2717
+ * 环境
2718
+ */
2719
+ Env?: string
2720
+ }
2721
+
2722
+ /**
2723
+ * DescribeDataFetchUrlInfo请求参数结构体
2724
+ */
2725
+ export interface DescribeDataFetchUrlInfoRequest {
2726
+ /**
2727
+ * 开始时间
2728
+ */
2729
+ StartTime: number
2730
+
2731
+ /**
2732
+ * 类型
2733
+ */
2734
+ Type: string
2735
+
2736
+ /**
2737
+ * 结束时间
2738
+ */
2739
+ EndTime: number
2740
+
2741
+ /**
2742
+ * 项目ID
2743
+ */
2744
+ ID: number
2745
+
2746
+ /**
2747
+ * 自定义2
2748
+ */
2749
+ ExtSecond?: string
2750
+
2751
+ /**
2752
+ * 浏览器引擎
2753
+ */
2754
+ Engine?: string
2755
+
2756
+ /**
2757
+ * 运营商
2758
+ */
2759
+ Isp?: string
2760
+
2761
+ /**
2762
+ * 来源页面
2763
+ */
2764
+ From?: string
2765
+
2766
+ /**
2767
+ * 日志等级
2768
+ */
2769
+ Level?: string
2770
+
2771
+ /**
2772
+ * 品牌
2773
+ */
2774
+ Brand?: string
2775
+
2776
+ /**
2777
+ * 地区
2778
+ */
2779
+ Area?: string
2780
+
2781
+ /**
2782
+ * 版本
2783
+ */
2784
+ VersionNum?: string
2785
+
2786
+ /**
2787
+ * 平台
2788
+ */
2789
+ Platform?: string
2790
+
2791
+ /**
2792
+ * 自定义3
2793
+ */
2794
+ ExtThird?: string
2795
+
2796
+ /**
2797
+ * 自定义1
2798
+ */
2799
+ ExtFirst?: string
2800
+
2801
+ /**
2802
+ * 网络类型
2803
+ */
2804
+ NetType?: string
2805
+
2806
+ /**
2807
+ * 机型
2808
+ */
2809
+ Device?: string
2810
+
2811
+ /**
2812
+ * 是否海外
2813
+ */
2814
+ IsAbroad?: string
2815
+
2816
+ /**
2817
+ * 操作系统
2818
+ */
2819
+ Os?: string
2820
+
2821
+ /**
2822
+ * 浏览器
2823
+ */
2824
+ Browser?: string
2825
+
2826
+ /**
2827
+ * 耗时计算方式
2828
+ */
2829
+ CostType?: string
2830
+
2831
+ /**
2832
+ * 来源
2833
+ */
2834
+ Url?: string
2835
+
2836
+ /**
2837
+ * 环境
2838
+ */
2839
+ Env?: string
2840
+ }
2841
+
2842
+ /**
2843
+ * DescribeLogList返回参数结构体
2844
+ */
2845
+ export interface DescribeLogListResponse {
2846
+ /**
2847
+ * 返回字符串
2848
+ */
2849
+ Result: string
2850
+
2851
+ /**
2852
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2853
+ */
2854
+ RequestId?: string
2855
+ }
2856
+
2857
+ /**
2858
+ * DescribeReleaseFiles返回参数结构体
2859
+ */
2860
+ export interface DescribeReleaseFilesResponse {
2861
+ /**
2862
+ * 文件信息列表
2863
+ */
2864
+ Files: Array<ReleaseFile>
2865
+
2866
+ /**
2867
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2868
+ */
2869
+ RequestId?: string
2870
+ }
2871
+
2872
+ /**
2873
+ * CreateOfflineLogConfig请求参数结构体
2874
+ */
2875
+ export interface CreateOfflineLogConfigRequest {
2876
+ /**
2877
+ * 项目唯一上报 key
2878
+ */
2879
+ ProjectKey: string
2880
+
2881
+ /**
2882
+ * 需要监听的用户唯一标示(aid 或 uin)
2883
+ */
2884
+ UniqueID: string
2885
+ }
2886
+
2887
+ /**
2888
+ * DescribeDataStaticUrl返回参数结构体
2889
+ */
2890
+ export interface DescribeDataStaticUrlResponse {
2891
+ /**
2892
+ * 返回值
2893
+ */
2894
+ Result: string
2895
+
2896
+ /**
2897
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2898
+ */
2899
+ RequestId?: string
2900
+ }
2901
+
2902
+ /**
2903
+ * CreateWhitelist返回参数结构体
2904
+ */
2905
+ export interface CreateWhitelistResponse {
2906
+ /**
2907
+ * 消息
2908
+ */
2909
+ Msg: string
2910
+
2911
+ /**
2912
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2913
+ */
2914
+ RequestId?: string
2915
+ }
2916
+
2917
+ /**
2918
+ * project Score分数实体
2919
+ */
2920
+ export interface ScoreInfo {
2921
+ /**
2922
+ * duration
2923
+ */
2924
+ StaticDuration: string
2925
+
2926
+ /**
2927
+ * pv
2928
+ */
2929
+ PagePv: string
2930
+
2931
+ /**
2932
+ * 失败
2933
+ */
2934
+ ApiFail: string
2935
+
2936
+ /**
2937
+ * 请求
2938
+ */
2939
+ ApiNum: string
2940
+
2941
+ /**
2942
+ * fail
2943
+ */
2944
+ StaticFail: string
2945
+
2946
+ /**
2947
+ * 项目id
2948
+ */
2949
+ ProjectID: number
2950
+
2951
+ /**
2952
+ * uv
2953
+ */
2954
+ PageUv: string
2955
+
2956
+ /**
2957
+ * 请求次数
2958
+ */
2959
+ ApiDuration: string
2960
+
2961
+ /**
2962
+ * 分数
2963
+ */
2964
+ Score: string
2965
+
2966
+ /**
2967
+ * error
2968
+ */
2969
+ PageError: string
2970
+
2971
+ /**
2972
+ * num
2973
+ */
2974
+ StaticNum: string
2975
+
2976
+ /**
2977
+ * num
2978
+ */
2979
+ RecordNum: number
2980
+
2981
+ /**
2982
+ * Duration
2983
+ */
2984
+ PageDuration: string
2985
+ }
2986
+
2987
+ /**
2988
+ * DescribeDataWebVitalsPage返回参数结构体
2989
+ */
2990
+ export interface DescribeDataWebVitalsPageResponse {
2991
+ /**
2992
+ * 返回值
2993
+ */
2994
+ Result: string
2995
+
2996
+ /**
2997
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2998
+ */
2999
+ RequestId?: string
3000
+ }
3001
+
3002
+ /**
3003
+ * DescribeProjects请求参数结构体
3004
+ */
3005
+ export interface DescribeProjectsRequest {
3006
+ /**
3007
+ * 分页每页数目,整型
3008
+ */
3009
+ Limit: number
3010
+
3011
+ /**
3012
+ * 分页页码,整型
3013
+ */
3014
+ Offset: number
3015
+
3016
+ /**
3017
+ * 过滤条件
3018
+ */
3019
+ Filters?: Array<Filter>
3020
+ }
3021
+
3022
+ /**
3023
+ * DescribeDataEventUrl请求参数结构体
3024
+ */
3025
+ export interface DescribeDataEventUrlRequest {
3026
+ /**
3027
+ * 开始时间
3028
+ */
3029
+ StartTime: number
3030
+
3031
+ /**
3032
+ * 类型
3033
+ */
3034
+ Type: string
3035
+
3036
+ /**
3037
+ * 结束时间
3038
+ */
3039
+ EndTime: number
3040
+
3041
+ /**
3042
+ * 项目ID
3043
+ */
3044
+ ID: number
3045
+
3046
+ /**
3047
+ * 自定义2
3048
+ */
3049
+ ExtSecond?: string
3050
+
3051
+ /**
3052
+ * 浏览器引擎
3053
+ */
3054
+ Engine?: string
3055
+
3056
+ /**
3057
+ * 运营商
3058
+ */
3059
+ Isp?: string
3060
+
3061
+ /**
3062
+ * 来源页面
3063
+ */
3064
+ From?: string
3065
+
3066
+ /**
3067
+ * 日志等级
3068
+ */
3069
+ Level?: string
3070
+
3071
+ /**
3072
+ * 品牌
3073
+ */
3074
+ Brand?: string
3075
+
3076
+ /**
3077
+ * 地区
3078
+ */
3079
+ Area?: string
3080
+
3081
+ /**
3082
+ * 版本
3083
+ */
3084
+ VersionNum?: string
3085
+
3086
+ /**
3087
+ * 平台
3088
+ */
3089
+ Platform?: string
3090
+
3091
+ /**
3092
+ * 自定义3
3093
+ */
3094
+ ExtThird?: string
3095
+
3096
+ /**
3097
+ * 自定义1
3098
+ */
3099
+ ExtFirst?: string
3100
+
3101
+ /**
3102
+ * 网络类型
3103
+ */
3104
+ NetType?: string
3105
+
3106
+ /**
3107
+ * 机型
3108
+ */
3109
+ Device?: string
3110
+
3111
+ /**
3112
+ * 是否海外
3113
+ */
534
3114
  IsAbroad?: string
535
3115
 
536
3116
  /**
@@ -544,54 +3124,169 @@ export interface DescribeDataLogUrlStatisticsRequest {
544
3124
  Browser?: string
545
3125
 
546
3126
  /**
547
- * 环境区分
3127
+ * 筛选条件
3128
+ */
3129
+ Name?: string
3130
+
3131
+ /**
3132
+ * 环境
548
3133
  */
549
3134
  Env?: string
550
3135
  }
551
3136
 
552
3137
  /**
553
- * DescribeDataPerformancePage请求参数结构体
3138
+ * DescribeOfflineLogConfigs请求参数结构体
554
3139
  */
555
- export interface DescribeDataPerformancePageRequest {
3140
+ export interface DescribeOfflineLogConfigsRequest {
3141
+ /**
3142
+ * 项目唯一上报 key
3143
+ */
3144
+ ProjectKey: string
3145
+ }
3146
+
3147
+ /**
3148
+ * DeleteOfflineLogConfig请求参数结构体
3149
+ */
3150
+ export interface DeleteOfflineLogConfigRequest {
3151
+ /**
3152
+ * 项目唯一上报 key
3153
+ */
3154
+ ProjectKey: string
3155
+
3156
+ /**
3157
+ * 用户唯一标示(uin or aid)
3158
+ */
3159
+ UniqueID: string
3160
+ }
3161
+
3162
+ /**
3163
+ * DescribeProjects返回参数结构体
3164
+ */
3165
+ export interface DescribeProjectsResponse {
3166
+ /**
3167
+ * 列表总数
3168
+ */
3169
+ TotalCount: number
3170
+
3171
+ /**
3172
+ * 项目列表
3173
+ */
3174
+ ProjectSet: Array<RumProject>
3175
+
3176
+ /**
3177
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3178
+ */
3179
+ RequestId?: string
3180
+ }
3181
+
3182
+ /**
3183
+ * ModifyProject返回参数结构体
3184
+ */
3185
+ export interface ModifyProjectResponse {
3186
+ /**
3187
+ * 操作信息
3188
+ */
3189
+ Msg: string
3190
+
3191
+ /**
3192
+ * 项目id
3193
+ */
3194
+ ID: number
3195
+
3196
+ /**
3197
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3198
+ */
3199
+ RequestId?: string
3200
+ }
3201
+
3202
+ /**
3203
+ * DescribeLogExports请求参数结构体
3204
+ */
3205
+ export interface DescribeLogExportsRequest {
556
3206
  /**
557
3207
  * 项目ID
558
3208
  */
559
3209
  ID: number
3210
+ }
3211
+
3212
+ /**
3213
+ * DescribeDataReportCount返回参数结构体
3214
+ */
3215
+ export interface DescribeDataReportCountResponse {
3216
+ /**
3217
+ * 返回值
3218
+ */
3219
+ Result: string
3220
+
3221
+ /**
3222
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3223
+ */
3224
+ RequestId?: string
3225
+ }
560
3226
 
3227
+ /**
3228
+ * DescribeDataPerformanceProject请求参数结构体
3229
+ */
3230
+ export interface DescribeDataPerformanceProjectRequest {
561
3231
  /**
562
3232
  * 开始时间
563
3233
  */
564
3234
  StartTime: number
565
3235
 
3236
+ /**
3237
+ * "allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
3238
+ */
3239
+ Type: string
3240
+
566
3241
  /**
567
3242
  * 结束时间
568
3243
  */
569
3244
  EndTime: number
570
3245
 
571
3246
  /**
572
- * ["pagepv", "allcount"]
3247
+ * 项目ID
573
3248
  */
574
- Type: string
3249
+ ID: number
575
3250
 
576
3251
  /**
577
- * 日志等级
3252
+ * 自定义2
578
3253
  */
579
- Level?: string
3254
+ ExtSecond?: string
3255
+
3256
+ /**
3257
+ * 浏览器引擎
3258
+ */
3259
+ Engine?: string
580
3260
 
581
3261
  /**
582
3262
  * 运营商
583
3263
  */
584
3264
  Isp?: string
585
3265
 
3266
+ /**
3267
+ * 来源页面
3268
+ */
3269
+ From?: string
3270
+
3271
+ /**
3272
+ * 日志等级
3273
+ */
3274
+ Level?: string
3275
+
3276
+ /**
3277
+ * 品牌
3278
+ */
3279
+ Brand?: string
3280
+
586
3281
  /**
587
3282
  * 地区
588
3283
  */
589
3284
  Area?: string
590
3285
 
591
3286
  /**
592
- * 网络类型
3287
+ * 版本
593
3288
  */
594
- NetType?: string
3289
+ VersionNum?: string
595
3290
 
596
3291
  /**
597
3292
  * 平台
@@ -599,14 +3294,9 @@ export interface DescribeDataPerformancePageRequest {
599
3294
  Platform?: string
600
3295
 
601
3296
  /**
602
- * 机型
603
- */
604
- Device?: string
605
-
606
- /**
607
- * 版本
3297
+ * 自定义3
608
3298
  */
609
- VersionNum?: string
3299
+ ExtThird?: string
610
3300
 
611
3301
  /**
612
3302
  * 自定义1
@@ -614,80 +3304,95 @@ export interface DescribeDataPerformancePageRequest {
614
3304
  ExtFirst?: string
615
3305
 
616
3306
  /**
617
- * 自定义2
3307
+ * 网络类型
618
3308
  */
619
- ExtSecond?: string
3309
+ NetType?: string
620
3310
 
621
3311
  /**
622
- * 自定义3
3312
+ * 机型
623
3313
  */
624
- ExtThird?: string
3314
+ Device?: string
625
3315
 
626
3316
  /**
627
3317
  * 是否海外
628
3318
  */
629
3319
  IsAbroad?: string
630
3320
 
3321
+ /**
3322
+ * 操作系统
3323
+ */
3324
+ Os?: string
3325
+
631
3326
  /**
632
3327
  * 浏览器
633
3328
  */
634
3329
  Browser?: string
635
3330
 
636
3331
  /**
637
- * 操作系统
3332
+ * 耗时计算
638
3333
  */
639
- Os?: string
3334
+ CostType?: string
640
3335
 
641
3336
  /**
642
- * 浏览器引擎
3337
+ * 环境
643
3338
  */
644
- Engine?: string
3339
+ Env?: string
3340
+ }
3341
+
3342
+ /**
3343
+ * ModifyProject请求参数结构体
3344
+ */
3345
+ export interface ModifyProjectRequest {
3346
+ /**
3347
+ * 项目 id
3348
+ */
3349
+ ID: number
645
3350
 
646
3351
  /**
647
- * 品牌
3352
+ * 项目名(可选,不为空且最长为 200)
648
3353
  */
649
- Brand?: string
3354
+ Name?: string
650
3355
 
651
3356
  /**
652
- * 来源页面
3357
+ * 项目网页地址(可选,最长为 256)
653
3358
  */
654
- From?: string
3359
+ URL?: string
655
3360
 
656
3361
  /**
657
- * 耗时计算方式
3362
+ * 项目仓库地址(可选,最长为 256)
658
3363
  */
659
- CostType?: string
3364
+ Repo?: string
660
3365
 
661
3366
  /**
662
- * 环境变量
3367
+ * 项目需要转移到的实例 id(可选)
663
3368
  */
664
- Env?: string
665
- }
3369
+ InstanceID?: string
666
3370
 
667
- /**
668
- * DescribeScores请求参数结构体
669
- */
670
- export interface DescribeScoresRequest {
671
3371
  /**
672
- * 结束时间
3372
+ * 项目采样率(可选)
673
3373
  */
674
- EndTime: string
3374
+ Rate?: string
675
3375
 
676
3376
  /**
677
- * 开始时间
3377
+ * 是否开启聚类(可选)
678
3378
  */
679
- StartTime: string
3379
+ EnableURLGroup?: number
680
3380
 
681
3381
  /**
682
- * 项目ID
3382
+ * 项目类型(可接受值为 "web", "mp", "android", "ios", "node", "hippy", "weex", "viola", "rn")
683
3383
  */
684
- ID?: number
3384
+ Type?: string
3385
+
3386
+ /**
3387
+ * 项目描述(可选,最长为 1000)
3388
+ */
3389
+ Desc?: string
685
3390
  }
686
3391
 
687
3392
  /**
688
- * DescribeDataFetchUrl请求参数结构体
3393
+ * DescribeDataStaticResource请求参数结构体
689
3394
  */
690
- export interface DescribeDataFetchUrlRequest {
3395
+ export interface DescribeDataStaticResourceRequest {
691
3396
  /**
692
3397
  * 开始时间
693
3398
  */
@@ -805,13 +3510,18 @@ export interface DescribeDataFetchUrlRequest {
805
3510
  }
806
3511
 
807
3512
  /**
808
- * DescribeDataLogUrlStatistics返回参数结构体
3513
+ * DescribeTawInstances返回参数结构体
809
3514
  */
810
- export interface DescribeDataLogUrlStatisticsResponse {
3515
+ export interface DescribeTawInstancesResponse {
811
3516
  /**
812
- * 返回值
3517
+ * 实例列表
813
3518
  */
814
- Result: string
3519
+ InstanceSet: Array<RumInstanceInfo>
3520
+
3521
+ /**
3522
+ * 实例总数
3523
+ */
3524
+ TotalCount: number
815
3525
 
816
3526
  /**
817
3527
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -820,51 +3530,41 @@ export interface DescribeDataLogUrlStatisticsResponse {
820
3530
  }
821
3531
 
822
3532
  /**
823
- * CreateProject返回参数结构体
3533
+ * DescribePvList请求参数结构体
824
3534
  */
825
- export interface CreateProjectResponse {
826
- /**
827
- * 项目 id
828
- */
829
- ID: number
830
-
3535
+ export interface DescribePvListRequest {
831
3536
  /**
832
- * 项目唯一key
3537
+ * ID
833
3538
  */
834
- Key: string
3539
+ ProjectId: number
835
3540
 
836
3541
  /**
837
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3542
+ * 结束时间
838
3543
  */
839
- RequestId?: string
840
- }
3544
+ EndTime: string
841
3545
 
842
- /**
843
- * DescribeDataFetchUrlInfo返回参数结构体
844
- */
845
- export interface DescribeDataFetchUrlInfoResponse {
846
3546
  /**
847
- * 返回值
3547
+ * 开始时间
848
3548
  */
849
- Result: string
3549
+ StartTime: string
850
3550
 
851
3551
  /**
852
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3552
+ * 获取day:d, 获取min则不填
853
3553
  */
854
- RequestId?: string
3554
+ Dimension?: string
855
3555
  }
856
3556
 
857
3557
  /**
858
- * DescribeDataPvUrlStatistics请求参数结构体
3558
+ * DescribeDataPvUrlInfo请求参数结构体
859
3559
  */
860
- export interface DescribeDataPvUrlStatisticsRequest {
3560
+ export interface DescribeDataPvUrlInfoRequest {
861
3561
  /**
862
3562
  * 开始时间
863
3563
  */
864
3564
  StartTime: number
865
3565
 
866
3566
  /**
867
- * 类型:"allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
3567
+ * 类型
868
3568
  */
869
3569
  Type: string
870
3570
 
@@ -965,31 +3665,28 @@ export interface DescribeDataPvUrlStatisticsRequest {
965
3665
  }
966
3666
 
967
3667
  /**
968
- * 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
969
-
970
- · 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
971
- · 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
3668
+ * CreateReleaseFile返回参数结构体
972
3669
  */
973
- export interface Filter {
3670
+ export interface CreateReleaseFileResponse {
974
3671
  /**
975
- * 一个或者多个过滤值。
3672
+ * 调用结果
976
3673
  */
977
- Values?: Array<string>
3674
+ Msg: string
978
3675
 
979
3676
  /**
980
- * 过滤键的名称。
3677
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
981
3678
  */
982
- Name?: string
3679
+ RequestId?: string
983
3680
  }
984
3681
 
985
3682
  /**
986
- * DescribeDataPerformancePage返回参数结构体
3683
+ * CreateLogExport返回参数结构体
987
3684
  */
988
- export interface DescribeDataPerformancePageResponse {
3685
+ export interface CreateLogExportResponse {
989
3686
  /**
990
- * 返回值
3687
+ * 日志导出ID
991
3688
  */
992
- Result: string
3689
+ ExportID: string
993
3690
 
994
3691
  /**
995
3692
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -998,9 +3695,9 @@ export interface DescribeDataPerformancePageResponse {
998
3695
  }
999
3696
 
1000
3697
  /**
1001
- * DescribeDataEventUrl返回参数结构体
3698
+ * DescribeDataFetchProject返回参数结构体
1002
3699
  */
1003
- export interface DescribeDataEventUrlResponse {
3700
+ export interface DescribeDataFetchProjectResponse {
1004
3701
  /**
1005
3702
  * 返回值
1006
3703
  */
@@ -1013,131 +3710,140 @@ export interface DescribeDataEventUrlResponse {
1013
3710
  }
1014
3711
 
1015
3712
  /**
1016
- * DescribeDataFetchUrlInfo请求参数结构体
3713
+ * 白名单
1017
3714
  */
1018
- export interface DescribeDataFetchUrlInfoRequest {
3715
+ export interface Whitelist {
1019
3716
  /**
1020
- * 开始时间
3717
+ * 备注
1021
3718
  */
1022
- StartTime: number
3719
+ Remark: string
1023
3720
 
1024
3721
  /**
1025
- * 类型
3722
+ * 实例ID
1026
3723
  */
1027
- Type: string
3724
+ InstanceID: string
1028
3725
 
1029
3726
  /**
1030
- * 结束时间
3727
+ * 截止时间
1031
3728
  */
1032
- EndTime: number
3729
+ Ttl: string
1033
3730
 
1034
3731
  /**
1035
- * 项目ID
3732
+ * 白名单自增ID
1036
3733
  */
1037
- ID: number
3734
+ ID: string
1038
3735
 
1039
3736
  /**
1040
- * 自定义2
3737
+ * 业务唯一标识
1041
3738
  */
1042
- ExtSecond?: string
3739
+ WhitelistUin: string
1043
3740
 
1044
3741
  /**
1045
- * 浏览器引擎
3742
+ * 创建者ID
1046
3743
  */
1047
- Engine?: string
3744
+ CreateUser: string
1048
3745
 
1049
3746
  /**
1050
- * 运营商
3747
+ * aid标识
1051
3748
  */
1052
- Isp?: string
3749
+ Aid: string
1053
3750
 
1054
3751
  /**
1055
- * 来源页面
3752
+ * 创建时间
1056
3753
  */
1057
- From?: string
3754
+ CreateTime: string
3755
+ }
1058
3756
 
3757
+ /**
3758
+ * Rum 项目信息
3759
+ */
3760
+ export interface RumProject {
1059
3761
  /**
1060
- * 日志等级
3762
+ * 项目名
1061
3763
  */
1062
- Level?: string
3764
+ Name: string
1063
3765
 
1064
3766
  /**
1065
- * 品牌
3767
+ * 创建者 id
1066
3768
  */
1067
- Brand?: string
3769
+ Creator: string
1068
3770
 
1069
3771
  /**
1070
- * 地区
3772
+ * 实例 id
1071
3773
  */
1072
- Area?: string
3774
+ InstanceID: string
1073
3775
 
1074
3776
  /**
1075
- * 版本
3777
+ * 项目类型
1076
3778
  */
1077
- VersionNum?: string
3779
+ Type: string
1078
3780
 
1079
3781
  /**
1080
- * 平台
3782
+ * 创建时间
1081
3783
  */
1082
- Platform?: string
3784
+ CreateTime: string
1083
3785
 
1084
3786
  /**
1085
- * 自定义3
1086
- */
1087
- ExtThird?: string
3787
+ * 项目仓库地址
3788
+ 注意:此字段可能返回 null,表示取不到有效值。
3789
+ */
3790
+ Repo: string
1088
3791
 
1089
3792
  /**
1090
- * 自定义1
1091
- */
1092
- ExtFirst?: string
3793
+ * 项目网址地址
3794
+ 注意:此字段可能返回 null,表示取不到有效值。
3795
+ */
3796
+ URL: string
1093
3797
 
1094
3798
  /**
1095
- * 网络类型
3799
+ * 项目采样频率
1096
3800
  */
1097
- NetType?: string
3801
+ Rate: string
1098
3802
 
1099
3803
  /**
1100
- * 机型
3804
+ * 项目唯一key(长度 12 位)
1101
3805
  */
1102
- Device?: string
3806
+ Key: string
1103
3807
 
1104
3808
  /**
1105
- * 是否海外
3809
+ * 是否开启url聚类
1106
3810
  */
1107
- IsAbroad?: string
3811
+ EnableURLGroup: number
1108
3812
 
1109
3813
  /**
1110
- * 操作系统
3814
+ * 实例名
1111
3815
  */
1112
- Os?: string
3816
+ InstanceName: string
1113
3817
 
1114
3818
  /**
1115
- * 浏览器
3819
+ * 项目 ID
1116
3820
  */
1117
- Browser?: string
3821
+ ID: number
1118
3822
 
1119
3823
  /**
1120
- * 耗时计算方式
3824
+ * 实例 key
1121
3825
  */
1122
- CostType?: string
3826
+ InstanceKey: string
1123
3827
 
1124
3828
  /**
1125
- * 来源
1126
- */
1127
- Url?: string
3829
+ * 项目描述
3830
+ 注意:此字段可能返回 null,表示取不到有效值。
3831
+ */
3832
+ Desc: string
1128
3833
 
1129
3834
  /**
1130
- * 环境
1131
- */
1132
- Env?: string
3835
+ * 是否星标 1:是 0:否
3836
+ 注意:此字段可能返回 null,表示取不到有效值。
3837
+ */
3838
+ IsStar: number
1133
3839
  }
1134
3840
 
1135
3841
  /**
1136
- * DescribeLogList返回参数结构体
3842
+ * DescribeDataSetUrlStatistics返回参数结构体
1137
3843
  */
1138
- export interface DescribeLogListResponse {
3844
+ export interface DescribeDataSetUrlStatisticsResponse {
1139
3845
  /**
1140
- * 返回字符串
3846
+ * 返回值
1141
3847
  */
1142
3848
  Result: string
1143
3849
 
@@ -1148,61 +3854,66 @@ export interface DescribeLogListResponse {
1148
3854
  }
1149
3855
 
1150
3856
  /**
1151
- * DescribeDataPvUrlStatistics返回参数结构体
3857
+ * Rum实例信息
1152
3858
  */
1153
- export interface DescribeDataPvUrlStatisticsResponse {
3859
+ export interface RumInstanceInfo {
1154
3860
  /**
1155
- * 返回值
3861
+ * 实例状态(1=创建中,2=运行中,3=异常,4=重启中,5=停止中,6=已停止,7=已删除)
1156
3862
  */
1157
- Result: string
3863
+ InstanceStatus: number
1158
3864
 
1159
3865
  /**
1160
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3866
+ * 片区Id
1161
3867
  */
1162
- RequestId?: string
1163
- }
3868
+ AreaId: number
1164
3869
 
1165
- /**
1166
- * CreateProject请求参数结构体
1167
- */
1168
- export interface CreateProjectRequest {
1169
3870
  /**
1170
- * 创建的项目名(不为空且最长为 200)
3871
+ * 标签列表
1171
3872
  */
1172
- Name: string
3873
+ Tags: Array<Tag>
1173
3874
 
1174
3875
  /**
1175
- * 业务系统 ID
3876
+ * 实例Id
1176
3877
  */
1177
- InstanceID: string
3878
+ InstanceId: string
1178
3879
 
1179
3880
  /**
1180
- * 项目抽样率(大于等于 0)
3881
+ * 集群Id
1181
3882
  */
1182
- Rate: string
3883
+ ClusterId: number
1183
3884
 
1184
3885
  /**
1185
- * 是否开启聚类
3886
+ * 实例描述
1186
3887
  */
1187
- EnableURLGroup: number
3888
+ InstanceDesc: string
1188
3889
 
1189
3890
  /**
1190
- * 项目类型("web", "mp", "android", "ios", "node", "hippy", "weex", "viola", "rn")
3891
+ * 计费状态(1=使用中,2=已过期,3=已销毁,4=分配中,5=分配失败)
1191
3892
  */
1192
- Type: string
3893
+ ChargeStatus: number
1193
3894
 
1194
3895
  /**
1195
- * 项目对应仓库地址(可选,最长为 256)
3896
+ * 计费类型(1=免费版,2=预付费,3=后付费)
1196
3897
  */
1197
- Repo?: string
3898
+ ChargeType: number
1198
3899
 
1199
3900
  /**
1200
- * 项目对应网页地址(可选,最长为 256)
3901
+ * 更新时间
1201
3902
  */
1202
- URL?: string
3903
+ UpdatedAt: string
1203
3904
 
1204
3905
  /**
1205
- * 创建的项目描述(可选,最长为 1000)
3906
+ * 数据保留时间()
1206
3907
  */
1207
- Desc?: string
3908
+ DataRetentionDays: number
3909
+
3910
+ /**
3911
+ * 实例名称
3912
+ */
3913
+ InstanceName: string
3914
+
3915
+ /**
3916
+ * 创建时间
3917
+ */
3918
+ CreatedAt: string
1208
3919
  }