tencentcloud-sdk-nodejs-rum 4.1.196 → 4.1.212
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.
|
@@ -125,6 +125,60 @@ export interface DeleteProjectRequest {
|
|
|
125
125
|
*/
|
|
126
126
|
ID: number;
|
|
127
127
|
}
|
|
128
|
+
/**
|
|
129
|
+
* StopProject请求参数结构体
|
|
130
|
+
*/
|
|
131
|
+
export interface StopProjectRequest {
|
|
132
|
+
/**
|
|
133
|
+
* 项目 id
|
|
134
|
+
*/
|
|
135
|
+
ProjectId: number;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* DescribeFOOMMallocReportList请求参数结构体
|
|
139
|
+
*/
|
|
140
|
+
export interface DescribeFOOMMallocReportListRequest {
|
|
141
|
+
/**
|
|
142
|
+
* 产品Id
|
|
143
|
+
*/
|
|
144
|
+
ProductId: string;
|
|
145
|
+
/**
|
|
146
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
147
|
+
*/
|
|
148
|
+
FormListString?: string;
|
|
149
|
+
/**
|
|
150
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
151
|
+
*/
|
|
152
|
+
ParamToken?: string;
|
|
153
|
+
/**
|
|
154
|
+
* 特征
|
|
155
|
+
*/
|
|
156
|
+
Feature?: string;
|
|
157
|
+
/**
|
|
158
|
+
* 当前页码
|
|
159
|
+
*/
|
|
160
|
+
PageNumber?: number;
|
|
161
|
+
/**
|
|
162
|
+
* 每页展示最大数量
|
|
163
|
+
*/
|
|
164
|
+
PageSize?: number;
|
|
165
|
+
/**
|
|
166
|
+
* 排序字段
|
|
167
|
+
*/
|
|
168
|
+
SortField?: string;
|
|
169
|
+
/**
|
|
170
|
+
* 排序类型
|
|
171
|
+
*/
|
|
172
|
+
SortType?: string;
|
|
173
|
+
/**
|
|
174
|
+
* 拓展数据
|
|
175
|
+
*/
|
|
176
|
+
ExtraData?: string;
|
|
177
|
+
/**
|
|
178
|
+
* 请求头
|
|
179
|
+
*/
|
|
180
|
+
RequestHeader?: string;
|
|
181
|
+
}
|
|
128
182
|
/**
|
|
129
183
|
* DescribeProjectLimits返回参数结构体
|
|
130
184
|
*/
|
|
@@ -182,6 +236,27 @@ export interface DescribeTawInstancesRequest {
|
|
|
182
236
|
*/
|
|
183
237
|
IsDemo?: number;
|
|
184
238
|
}
|
|
239
|
+
/**
|
|
240
|
+
* DescribeToken返回参数结构体
|
|
241
|
+
*/
|
|
242
|
+
export interface DescribeTokenResponse {
|
|
243
|
+
/**
|
|
244
|
+
* 返回值
|
|
245
|
+
*/
|
|
246
|
+
Data?: string;
|
|
247
|
+
/**
|
|
248
|
+
* 状态码
|
|
249
|
+
*/
|
|
250
|
+
Code?: number;
|
|
251
|
+
/**
|
|
252
|
+
* 消息
|
|
253
|
+
*/
|
|
254
|
+
Message?: string;
|
|
255
|
+
/**
|
|
256
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
257
|
+
*/
|
|
258
|
+
RequestId?: string;
|
|
259
|
+
}
|
|
185
260
|
/**
|
|
186
261
|
* ResumeProject返回参数结构体
|
|
187
262
|
*/
|
|
@@ -192,17 +267,57 @@ export interface ResumeProjectResponse {
|
|
|
192
267
|
RequestId?: string;
|
|
193
268
|
}
|
|
194
269
|
/**
|
|
195
|
-
*
|
|
270
|
+
* DescribeIssuesStatisticsTrend请求参数结构体
|
|
196
271
|
*/
|
|
197
|
-
export interface
|
|
272
|
+
export interface DescribeIssuesStatisticsTrendRequest {
|
|
198
273
|
/**
|
|
199
|
-
*
|
|
274
|
+
* 产品Id
|
|
200
275
|
*/
|
|
201
|
-
|
|
276
|
+
ProductId: string;
|
|
202
277
|
/**
|
|
203
|
-
*
|
|
278
|
+
* 提供给前端使用,当填写本字段时,会覆盖 form_list 的值
|
|
204
279
|
*/
|
|
205
|
-
|
|
280
|
+
ParamToken?: string;
|
|
281
|
+
/**
|
|
282
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
283
|
+
*/
|
|
284
|
+
FormList?: string;
|
|
285
|
+
/**
|
|
286
|
+
* 问题Id
|
|
287
|
+
*/
|
|
288
|
+
IssueId?: string;
|
|
289
|
+
/**
|
|
290
|
+
* 问题类型
|
|
291
|
+
*/
|
|
292
|
+
IssueType?: number;
|
|
293
|
+
/**
|
|
294
|
+
* 时间窗口
|
|
295
|
+
*/
|
|
296
|
+
TimeWindow?: number;
|
|
297
|
+
/**
|
|
298
|
+
* 累计值
|
|
299
|
+
*/
|
|
300
|
+
TotalSize?: boolean;
|
|
301
|
+
/**
|
|
302
|
+
* 无
|
|
303
|
+
*/
|
|
304
|
+
Stat?: number;
|
|
305
|
+
/**
|
|
306
|
+
* 指标类型
|
|
307
|
+
*/
|
|
308
|
+
MetricType?: number;
|
|
309
|
+
/**
|
|
310
|
+
* 拓展字段
|
|
311
|
+
*/
|
|
312
|
+
ExtraData?: string;
|
|
313
|
+
/**
|
|
314
|
+
* 请求头
|
|
315
|
+
*/
|
|
316
|
+
RequestHeader?: string;
|
|
317
|
+
/**
|
|
318
|
+
* 无
|
|
319
|
+
*/
|
|
320
|
+
TrendStat?: number;
|
|
206
321
|
}
|
|
207
322
|
/**
|
|
208
323
|
* DescribeAppMetricsData请求参数结构体
|
|
@@ -262,6 +377,31 @@ export interface DescribeDataPvUrlInfoResponse {
|
|
|
262
377
|
*/
|
|
263
378
|
RequestId?: string;
|
|
264
379
|
}
|
|
380
|
+
/**
|
|
381
|
+
* DescribeToken请求参数结构体
|
|
382
|
+
*/
|
|
383
|
+
export interface DescribeTokenRequest {
|
|
384
|
+
/**
|
|
385
|
+
* 筛选条件
|
|
386
|
+
*/
|
|
387
|
+
FormListString?: string;
|
|
388
|
+
/**
|
|
389
|
+
* 仅对比模式下填写,筛选条件A
|
|
390
|
+
*/
|
|
391
|
+
FormListAString?: string;
|
|
392
|
+
/**
|
|
393
|
+
* 仅对比模式下填写,筛选条件B
|
|
394
|
+
*/
|
|
395
|
+
FormListBString?: string;
|
|
396
|
+
/**
|
|
397
|
+
* 请求头
|
|
398
|
+
*/
|
|
399
|
+
RequestHeader?: string;
|
|
400
|
+
/**
|
|
401
|
+
* 拓展字段
|
|
402
|
+
*/
|
|
403
|
+
ExtraData?: string;
|
|
404
|
+
}
|
|
265
405
|
/**
|
|
266
406
|
* StopProject返回参数结构体
|
|
267
407
|
*/
|
|
@@ -490,6 +630,39 @@ export interface DescribeErrorResponse {
|
|
|
490
630
|
*/
|
|
491
631
|
RequestId?: string;
|
|
492
632
|
}
|
|
633
|
+
/**
|
|
634
|
+
* DescribeFOOMProblemDetail请求参数结构体
|
|
635
|
+
*/
|
|
636
|
+
export interface DescribeFOOMProblemDetailRequest {
|
|
637
|
+
/**
|
|
638
|
+
* 产品Id
|
|
639
|
+
*/
|
|
640
|
+
ProductId: string;
|
|
641
|
+
/**
|
|
642
|
+
* 消息唯一标识
|
|
643
|
+
*/
|
|
644
|
+
ClientIdentify?: string;
|
|
645
|
+
/**
|
|
646
|
+
* 特征
|
|
647
|
+
*/
|
|
648
|
+
Feature?: string;
|
|
649
|
+
/**
|
|
650
|
+
* 事件开始时间
|
|
651
|
+
*/
|
|
652
|
+
StartEventTime?: number;
|
|
653
|
+
/**
|
|
654
|
+
* 事件结束时间
|
|
655
|
+
*/
|
|
656
|
+
EndEventTime?: number;
|
|
657
|
+
/**
|
|
658
|
+
* 拓展数据
|
|
659
|
+
*/
|
|
660
|
+
ExtraData?: string;
|
|
661
|
+
/**
|
|
662
|
+
* 请求头
|
|
663
|
+
*/
|
|
664
|
+
RequestHeader?: string;
|
|
665
|
+
}
|
|
493
666
|
/**
|
|
494
667
|
* DescribeAppMetricsData返回参数结构体
|
|
495
668
|
*/
|
|
@@ -529,6 +702,27 @@ export interface DeleteWhitelistResponse {
|
|
|
529
702
|
*/
|
|
530
703
|
RequestId?: string;
|
|
531
704
|
}
|
|
705
|
+
/**
|
|
706
|
+
* DescribeFOOMMallocReportList返回参数结构体
|
|
707
|
+
*/
|
|
708
|
+
export interface DescribeFOOMMallocReportListResponse {
|
|
709
|
+
/**
|
|
710
|
+
* 返回值
|
|
711
|
+
*/
|
|
712
|
+
Data?: string;
|
|
713
|
+
/**
|
|
714
|
+
* 消息
|
|
715
|
+
*/
|
|
716
|
+
Message?: string;
|
|
717
|
+
/**
|
|
718
|
+
* 状态码
|
|
719
|
+
*/
|
|
720
|
+
Code?: number;
|
|
721
|
+
/**
|
|
722
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
723
|
+
*/
|
|
724
|
+
RequestId?: string;
|
|
725
|
+
}
|
|
532
726
|
/**
|
|
533
727
|
* DescribePvList返回参数结构体
|
|
534
728
|
*/
|
|
@@ -707,6 +901,165 @@ export interface DescribeDataReportCountRequest {
|
|
|
707
901
|
*/
|
|
708
902
|
InstanceID?: string;
|
|
709
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* DescribeIssuesList请求参数结构体
|
|
906
|
+
*/
|
|
907
|
+
export interface DescribeIssuesListRequest {
|
|
908
|
+
/**
|
|
909
|
+
* 产品Id
|
|
910
|
+
*/
|
|
911
|
+
ProductId?: string;
|
|
912
|
+
/**
|
|
913
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
914
|
+
*/
|
|
915
|
+
FormList?: string;
|
|
916
|
+
/**
|
|
917
|
+
* 接口调试专用,对比模式下条件A,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
918
|
+
*/
|
|
919
|
+
FormListA?: string;
|
|
920
|
+
/**
|
|
921
|
+
* 接口调试专用,对比模式下条件B,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
922
|
+
*/
|
|
923
|
+
FormListB?: string;
|
|
924
|
+
/**
|
|
925
|
+
* 提供给前端使用,当填写本字段时,会覆盖 form_list 的值
|
|
926
|
+
*/
|
|
927
|
+
ParamToken?: string;
|
|
928
|
+
/**
|
|
929
|
+
* 问题类型
|
|
930
|
+
*/
|
|
931
|
+
IssueType?: number;
|
|
932
|
+
/**
|
|
933
|
+
* 排序字段
|
|
934
|
+
*/
|
|
935
|
+
SortField?: string;
|
|
936
|
+
/**
|
|
937
|
+
* 排序方式
|
|
938
|
+
*/
|
|
939
|
+
SortType?: string;
|
|
940
|
+
/**
|
|
941
|
+
* 每页数目
|
|
942
|
+
*/
|
|
943
|
+
PageSize?: number;
|
|
944
|
+
/**
|
|
945
|
+
* 页码
|
|
946
|
+
*/
|
|
947
|
+
PageNumber?: number;
|
|
948
|
+
/**
|
|
949
|
+
* 问题对比列表模式下,用于标识是按照sort_field字段的A值排序还是B值还是ratio值
|
|
950
|
+
*/
|
|
951
|
+
SortABRatio?: string;
|
|
952
|
+
/**
|
|
953
|
+
* 模式:false:问题列表模式,true:对比列表模式
|
|
954
|
+
*/
|
|
955
|
+
Compare?: boolean;
|
|
956
|
+
/**
|
|
957
|
+
* 对比状态 0:所有 1:新增 2:遗留 3:已解决
|
|
958
|
+
*/
|
|
959
|
+
CompareStatus?: number;
|
|
960
|
+
/**
|
|
961
|
+
* 拓展字段
|
|
962
|
+
*/
|
|
963
|
+
ExtraData?: string;
|
|
964
|
+
/**
|
|
965
|
+
* 请求头
|
|
966
|
+
*/
|
|
967
|
+
RequestHeader?: string;
|
|
968
|
+
}
|
|
969
|
+
/**
|
|
970
|
+
* DescribeIssuesDistribution请求参数结构体
|
|
971
|
+
*/
|
|
972
|
+
export interface DescribeIssuesDistributionRequest {
|
|
973
|
+
/**
|
|
974
|
+
* 产品Id
|
|
975
|
+
*/
|
|
976
|
+
ProductId?: string;
|
|
977
|
+
/**
|
|
978
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
979
|
+
*/
|
|
980
|
+
FormListString?: string;
|
|
981
|
+
/**
|
|
982
|
+
* 分布维度是自定义维度时,填‘user_custom’
|
|
983
|
+
*/
|
|
984
|
+
DimType?: string;
|
|
985
|
+
/**
|
|
986
|
+
* 维度,e.g. os_version, app_version, model等
|
|
987
|
+
*/
|
|
988
|
+
Dimension?: string;
|
|
989
|
+
/**
|
|
990
|
+
* 数字类型字段的区间范围
|
|
991
|
+
*/
|
|
992
|
+
Intervals?: Array<number | bigint>;
|
|
993
|
+
/**
|
|
994
|
+
* 提供给前端使用,当填写本字段时,会覆盖 form_list 的值
|
|
995
|
+
*/
|
|
996
|
+
ParamToken?: string;
|
|
997
|
+
/**
|
|
998
|
+
* 问题Id
|
|
999
|
+
*/
|
|
1000
|
+
IssueId?: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* 问题类型
|
|
1003
|
+
*/
|
|
1004
|
+
IssueType?: number;
|
|
1005
|
+
/**
|
|
1006
|
+
* 限制返回的个数,默认返回所有值
|
|
1007
|
+
*/
|
|
1008
|
+
ParamLimit?: number;
|
|
1009
|
+
/**
|
|
1010
|
+
* 键
|
|
1011
|
+
*/
|
|
1012
|
+
MapKey?: string;
|
|
1013
|
+
/**
|
|
1014
|
+
* 名称
|
|
1015
|
+
*/
|
|
1016
|
+
MapName?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
* 指标类型
|
|
1019
|
+
*/
|
|
1020
|
+
MetricType?: number;
|
|
1021
|
+
/**
|
|
1022
|
+
* 每页数目
|
|
1023
|
+
*/
|
|
1024
|
+
PageSize?: number;
|
|
1025
|
+
/**
|
|
1026
|
+
* 页码
|
|
1027
|
+
*/
|
|
1028
|
+
PageNumber?: number;
|
|
1029
|
+
/**
|
|
1030
|
+
* 用户自定义维度key
|
|
1031
|
+
*/
|
|
1032
|
+
UserCustomKey?: string;
|
|
1033
|
+
/**
|
|
1034
|
+
* 拓展字段
|
|
1035
|
+
*/
|
|
1036
|
+
ExtraData?: string;
|
|
1037
|
+
/**
|
|
1038
|
+
* 请求头
|
|
1039
|
+
*/
|
|
1040
|
+
RequestHeader?: string;
|
|
1041
|
+
}
|
|
1042
|
+
/**
|
|
1043
|
+
* DescribeFOOMProblemDetail返回参数结构体
|
|
1044
|
+
*/
|
|
1045
|
+
export interface DescribeFOOMProblemDetailResponse {
|
|
1046
|
+
/**
|
|
1047
|
+
* 返回值
|
|
1048
|
+
*/
|
|
1049
|
+
Data?: string;
|
|
1050
|
+
/**
|
|
1051
|
+
* 状态码
|
|
1052
|
+
*/
|
|
1053
|
+
Code?: number;
|
|
1054
|
+
/**
|
|
1055
|
+
* 消息
|
|
1056
|
+
*/
|
|
1057
|
+
Message?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1060
|
+
*/
|
|
1061
|
+
RequestId?: string;
|
|
1062
|
+
}
|
|
710
1063
|
/**
|
|
711
1064
|
* DescribeDataStaticResourceV2请求参数结构体
|
|
712
1065
|
*/
|
|
@@ -964,17 +1317,53 @@ export interface DescribeDataCustomUrlRequest {
|
|
|
964
1317
|
Env?: string;
|
|
965
1318
|
}
|
|
966
1319
|
/**
|
|
967
|
-
*
|
|
1320
|
+
* DescribeExceptionReportList请求参数结构体
|
|
968
1321
|
*/
|
|
969
|
-
export interface
|
|
1322
|
+
export interface DescribeExceptionReportListRequest {
|
|
970
1323
|
/**
|
|
971
|
-
*
|
|
1324
|
+
* 产品Id
|
|
972
1325
|
*/
|
|
973
|
-
|
|
1326
|
+
ProductId?: string;
|
|
974
1327
|
/**
|
|
975
|
-
*
|
|
1328
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
976
1329
|
*/
|
|
977
|
-
|
|
1330
|
+
FormListString?: string;
|
|
1331
|
+
/**
|
|
1332
|
+
* 提供给前端使用,当填写本字段时,会覆盖 form_list 的值
|
|
1333
|
+
*/
|
|
1334
|
+
ParamToken?: string;
|
|
1335
|
+
/**
|
|
1336
|
+
* 问题类型
|
|
1337
|
+
*/
|
|
1338
|
+
IssueType?: number;
|
|
1339
|
+
/**
|
|
1340
|
+
* 排序字段
|
|
1341
|
+
*/
|
|
1342
|
+
SortField?: string;
|
|
1343
|
+
/**
|
|
1344
|
+
* 排序方式
|
|
1345
|
+
*/
|
|
1346
|
+
SortType?: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* 特征
|
|
1349
|
+
*/
|
|
1350
|
+
Feature?: string;
|
|
1351
|
+
/**
|
|
1352
|
+
* 每页数目
|
|
1353
|
+
*/
|
|
1354
|
+
PageSize?: number;
|
|
1355
|
+
/**
|
|
1356
|
+
* 页码
|
|
1357
|
+
*/
|
|
1358
|
+
PageNumber?: number;
|
|
1359
|
+
/**
|
|
1360
|
+
* 拓展字段
|
|
1361
|
+
*/
|
|
1362
|
+
ExtraData?: string;
|
|
1363
|
+
/**
|
|
1364
|
+
* 请求头
|
|
1365
|
+
*/
|
|
1366
|
+
RequestHeader?: string;
|
|
978
1367
|
}
|
|
979
1368
|
/**
|
|
980
1369
|
* DescribeDataStaticUrlV2返回参数结构体
|
|
@@ -1287,6 +1676,39 @@ export interface DescribeWhitelistsRequest {
|
|
|
1287
1676
|
*/
|
|
1288
1677
|
InstanceID: string;
|
|
1289
1678
|
}
|
|
1679
|
+
/**
|
|
1680
|
+
* DescribeApplicationExitReportDetail请求参数结构体
|
|
1681
|
+
*/
|
|
1682
|
+
export interface DescribeApplicationExitReportDetailRequest {
|
|
1683
|
+
/**
|
|
1684
|
+
* 产品Id
|
|
1685
|
+
*/
|
|
1686
|
+
ProductId: string;
|
|
1687
|
+
/**
|
|
1688
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
1689
|
+
*/
|
|
1690
|
+
ParamToken?: string;
|
|
1691
|
+
/**
|
|
1692
|
+
* 问题Id
|
|
1693
|
+
*/
|
|
1694
|
+
ClientIdentify?: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* 开始时间
|
|
1697
|
+
*/
|
|
1698
|
+
StartEventTime?: number;
|
|
1699
|
+
/**
|
|
1700
|
+
* 结束时间
|
|
1701
|
+
*/
|
|
1702
|
+
EndEventTime?: number;
|
|
1703
|
+
/**
|
|
1704
|
+
* 拓展数据
|
|
1705
|
+
*/
|
|
1706
|
+
ExtraData?: string;
|
|
1707
|
+
/**
|
|
1708
|
+
* 请求头
|
|
1709
|
+
*/
|
|
1710
|
+
RequestHeader?: string;
|
|
1711
|
+
}
|
|
1290
1712
|
/**
|
|
1291
1713
|
* DescribeUvList请求参数结构体
|
|
1292
1714
|
*/
|
|
@@ -1333,6 +1755,27 @@ export interface DescribeDataReportCountV2Request {
|
|
|
1333
1755
|
*/
|
|
1334
1756
|
InstanceID?: string;
|
|
1335
1757
|
}
|
|
1758
|
+
/**
|
|
1759
|
+
* BugLY比较结构体
|
|
1760
|
+
*/
|
|
1761
|
+
export interface CompareCondition {
|
|
1762
|
+
/**
|
|
1763
|
+
* App版本
|
|
1764
|
+
*/
|
|
1765
|
+
AppVersion?: string;
|
|
1766
|
+
/**
|
|
1767
|
+
* 筛选条件
|
|
1768
|
+
*/
|
|
1769
|
+
Filters?: Filters;
|
|
1770
|
+
/**
|
|
1771
|
+
* 开始时间
|
|
1772
|
+
*/
|
|
1773
|
+
StartTime?: number;
|
|
1774
|
+
/**
|
|
1775
|
+
* 结束时间
|
|
1776
|
+
*/
|
|
1777
|
+
EndTime?: number;
|
|
1778
|
+
}
|
|
1336
1779
|
/**
|
|
1337
1780
|
* DescribeDataPerformancePageV2返回参数结构体
|
|
1338
1781
|
*/
|
|
@@ -1346,6 +1789,61 @@ export interface DescribeDataPerformancePageV2Response {
|
|
|
1346
1789
|
*/
|
|
1347
1790
|
RequestId?: string;
|
|
1348
1791
|
}
|
|
1792
|
+
/**
|
|
1793
|
+
* DescribeLagANRProblemFeatureAccounts返回参数结构体
|
|
1794
|
+
*/
|
|
1795
|
+
export interface DescribeLagANRProblemFeatureAccountsResponse {
|
|
1796
|
+
/**
|
|
1797
|
+
* 返回值
|
|
1798
|
+
*/
|
|
1799
|
+
Data?: string;
|
|
1800
|
+
/**
|
|
1801
|
+
* 消息
|
|
1802
|
+
*/
|
|
1803
|
+
Message?: string;
|
|
1804
|
+
/**
|
|
1805
|
+
* 状态码
|
|
1806
|
+
*/
|
|
1807
|
+
Code?: number;
|
|
1808
|
+
/**
|
|
1809
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1810
|
+
*/
|
|
1811
|
+
RequestId?: string;
|
|
1812
|
+
}
|
|
1813
|
+
/**
|
|
1814
|
+
* DescribeFOOMMallocProblemDetail返回参数结构体
|
|
1815
|
+
*/
|
|
1816
|
+
export interface DescribeFOOMMallocProblemDetailResponse {
|
|
1817
|
+
/**
|
|
1818
|
+
* 返回值
|
|
1819
|
+
*/
|
|
1820
|
+
Data?: string;
|
|
1821
|
+
/**
|
|
1822
|
+
* 状态码
|
|
1823
|
+
*/
|
|
1824
|
+
Code?: number;
|
|
1825
|
+
/**
|
|
1826
|
+
* 消息
|
|
1827
|
+
*/
|
|
1828
|
+
Message?: string;
|
|
1829
|
+
/**
|
|
1830
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1831
|
+
*/
|
|
1832
|
+
RequestId?: string;
|
|
1833
|
+
}
|
|
1834
|
+
/**
|
|
1835
|
+
* DescribeUvList返回参数结构体
|
|
1836
|
+
*/
|
|
1837
|
+
export interface DescribeUvListResponse {
|
|
1838
|
+
/**
|
|
1839
|
+
* uv列表
|
|
1840
|
+
*/
|
|
1841
|
+
ProjectUvSet: Array<RumUvInfo>;
|
|
1842
|
+
/**
|
|
1843
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1844
|
+
*/
|
|
1845
|
+
RequestId?: string;
|
|
1846
|
+
}
|
|
1349
1847
|
/**
|
|
1350
1848
|
* DescribeData请求参数结构体
|
|
1351
1849
|
*/
|
|
@@ -1485,13 +1983,25 @@ export interface DescribeDataEventUrlV2Request {
|
|
|
1485
1983
|
Granularity?: string;
|
|
1486
1984
|
}
|
|
1487
1985
|
/**
|
|
1488
|
-
*
|
|
1986
|
+
* DescribeTopIssues返回参数结构体
|
|
1489
1987
|
*/
|
|
1490
|
-
export interface
|
|
1988
|
+
export interface DescribeTopIssuesResponse {
|
|
1491
1989
|
/**
|
|
1492
|
-
*
|
|
1990
|
+
* 返回值
|
|
1493
1991
|
*/
|
|
1494
|
-
|
|
1992
|
+
Data?: string;
|
|
1993
|
+
/**
|
|
1994
|
+
* 状态码
|
|
1995
|
+
*/
|
|
1996
|
+
Code?: number;
|
|
1997
|
+
/**
|
|
1998
|
+
* 消息
|
|
1999
|
+
*/
|
|
2000
|
+
Message?: string;
|
|
2001
|
+
/**
|
|
2002
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2003
|
+
*/
|
|
2004
|
+
RequestId?: string;
|
|
1495
2005
|
}
|
|
1496
2006
|
/**
|
|
1497
2007
|
* DescribeTawAreas返回参数结构体
|
|
@@ -1511,17 +2021,45 @@ export interface DescribeTawAreasResponse {
|
|
|
1511
2021
|
RequestId?: string;
|
|
1512
2022
|
}
|
|
1513
2023
|
/**
|
|
1514
|
-
*
|
|
2024
|
+
* DescribeApplicationExitReportList请求参数结构体
|
|
1515
2025
|
*/
|
|
1516
|
-
export interface
|
|
2026
|
+
export interface DescribeApplicationExitReportListRequest {
|
|
1517
2027
|
/**
|
|
1518
|
-
*
|
|
2028
|
+
* 产品Id
|
|
1519
2029
|
*/
|
|
1520
|
-
|
|
2030
|
+
ProductId: string;
|
|
1521
2031
|
/**
|
|
1522
|
-
*
|
|
2032
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
1523
2033
|
*/
|
|
1524
|
-
|
|
2034
|
+
ParamToken?: string;
|
|
2035
|
+
/**
|
|
2036
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
2037
|
+
*/
|
|
2038
|
+
FormListString?: string;
|
|
2039
|
+
/**
|
|
2040
|
+
* 当前页码
|
|
2041
|
+
*/
|
|
2042
|
+
PageNumber?: number;
|
|
2043
|
+
/**
|
|
2044
|
+
* 每页展示最大数量
|
|
2045
|
+
*/
|
|
2046
|
+
PageSize?: number;
|
|
2047
|
+
/**
|
|
2048
|
+
* 排序字段
|
|
2049
|
+
*/
|
|
2050
|
+
SortField?: string;
|
|
2051
|
+
/**
|
|
2052
|
+
* 排序类型
|
|
2053
|
+
*/
|
|
2054
|
+
SortType?: string;
|
|
2055
|
+
/**
|
|
2056
|
+
* 拓展数据
|
|
2057
|
+
*/
|
|
2058
|
+
ExtraData?: string;
|
|
2059
|
+
/**
|
|
2060
|
+
* 请求头
|
|
2061
|
+
*/
|
|
2062
|
+
RequestHeader?: string;
|
|
1525
2063
|
}
|
|
1526
2064
|
/**
|
|
1527
2065
|
* ModifyProjectLimit请求参数结构体
|
|
@@ -1667,6 +2205,27 @@ export interface DescribeDataWebVitalsPageV2Request {
|
|
|
1667
2205
|
*/
|
|
1668
2206
|
Granularity?: string;
|
|
1669
2207
|
}
|
|
2208
|
+
/**
|
|
2209
|
+
* DescribeLagANRProblemList返回参数结构体
|
|
2210
|
+
*/
|
|
2211
|
+
export interface DescribeLagANRProblemListResponse {
|
|
2212
|
+
/**
|
|
2213
|
+
* 返回值
|
|
2214
|
+
*/
|
|
2215
|
+
Data?: string;
|
|
2216
|
+
/**
|
|
2217
|
+
* 消息
|
|
2218
|
+
*/
|
|
2219
|
+
Message?: string;
|
|
2220
|
+
/**
|
|
2221
|
+
* 状态码
|
|
2222
|
+
*/
|
|
2223
|
+
Code?: number;
|
|
2224
|
+
/**
|
|
2225
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2226
|
+
*/
|
|
2227
|
+
RequestId?: string;
|
|
2228
|
+
}
|
|
1670
2229
|
/**
|
|
1671
2230
|
* DescribeAppSingleCaseList返回参数结构体
|
|
1672
2231
|
*/
|
|
@@ -1680,6 +2239,19 @@ export interface DescribeAppSingleCaseListResponse {
|
|
|
1680
2239
|
*/
|
|
1681
2240
|
RequestId?: string;
|
|
1682
2241
|
}
|
|
2242
|
+
/**
|
|
2243
|
+
* ResumeInstance请求参数结构体
|
|
2244
|
+
*/
|
|
2245
|
+
export interface ResumeInstanceRequest {
|
|
2246
|
+
/**
|
|
2247
|
+
* 需要恢复的实例id
|
|
2248
|
+
*/
|
|
2249
|
+
InstanceId: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* 修改是否包括白名单
|
|
2252
|
+
*/
|
|
2253
|
+
IsModifyAll?: boolean;
|
|
2254
|
+
}
|
|
1683
2255
|
/**
|
|
1684
2256
|
* DescribeDataPerformancePage请求参数结构体
|
|
1685
2257
|
*/
|
|
@@ -1733,87 +2305,177 @@ export interface DescribeDataPerformancePageRequest {
|
|
|
1733
2305
|
*/
|
|
1734
2306
|
ExtFirst?: string;
|
|
1735
2307
|
/**
|
|
1736
|
-
* 自定义2
|
|
2308
|
+
* 自定义2
|
|
2309
|
+
*/
|
|
2310
|
+
ExtSecond?: string;
|
|
2311
|
+
/**
|
|
2312
|
+
* 自定义3
|
|
2313
|
+
*/
|
|
2314
|
+
ExtThird?: string;
|
|
2315
|
+
/**
|
|
2316
|
+
* 显示是否海外,1表示海外,0表示非海外;默认值为空,查询所有。
|
|
2317
|
+
*/
|
|
2318
|
+
IsAbroad?: string;
|
|
2319
|
+
/**
|
|
2320
|
+
* 浏览器
|
|
2321
|
+
*/
|
|
2322
|
+
Browser?: string;
|
|
2323
|
+
/**
|
|
2324
|
+
* 操作系统
|
|
2325
|
+
*/
|
|
2326
|
+
Os?: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* 浏览器引擎
|
|
2329
|
+
*/
|
|
2330
|
+
Engine?: string;
|
|
2331
|
+
/**
|
|
2332
|
+
* 品牌
|
|
2333
|
+
*/
|
|
2334
|
+
Brand?: string;
|
|
2335
|
+
/**
|
|
2336
|
+
* 来源页面
|
|
2337
|
+
*/
|
|
2338
|
+
From?: string;
|
|
2339
|
+
/**
|
|
2340
|
+
* 耗时口径:"50"/"75"/"90"/"95"/"99"/"99.5" 分别表示 TP50/TP75/TP90/TP95/TP99/TP99.5(percentile2);"avg" 表示均值(avg)。
|
|
2341
|
+
*/
|
|
2342
|
+
CostType?: string;
|
|
2343
|
+
/**
|
|
2344
|
+
* 环境变量
|
|
2345
|
+
*/
|
|
2346
|
+
Env?: string;
|
|
2347
|
+
/**
|
|
2348
|
+
* 网络状态(tag 值):用于过滤/聚合字段 netStatus;枚举值:0(正常)、1(弱网)、2(断网)、3(其他)。
|
|
2349
|
+
*/
|
|
2350
|
+
NetStatus?: string;
|
|
2351
|
+
/**
|
|
2352
|
+
* 是否返回webvitals数据
|
|
2353
|
+
*/
|
|
2354
|
+
WebVitals?: boolean;
|
|
2355
|
+
}
|
|
2356
|
+
/**
|
|
2357
|
+
* DeleteReleaseFile请求参数结构体
|
|
2358
|
+
*/
|
|
2359
|
+
export interface DeleteReleaseFileRequest {
|
|
2360
|
+
/**
|
|
2361
|
+
* 文件 id
|
|
2362
|
+
*/
|
|
2363
|
+
ID: number;
|
|
2364
|
+
}
|
|
2365
|
+
/**
|
|
2366
|
+
* DescribeRumLogList返回参数结构体
|
|
2367
|
+
*/
|
|
2368
|
+
export interface DescribeRumLogListResponse {
|
|
2369
|
+
/**
|
|
2370
|
+
* 返回字符串
|
|
2371
|
+
*/
|
|
2372
|
+
Result?: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2375
|
+
*/
|
|
2376
|
+
RequestId?: string;
|
|
2377
|
+
}
|
|
2378
|
+
/**
|
|
2379
|
+
* DescribeScoresV2请求参数结构体
|
|
2380
|
+
*/
|
|
2381
|
+
export interface DescribeScoresV2Request {
|
|
2382
|
+
/**
|
|
2383
|
+
* 开始时间
|
|
2384
|
+
*/
|
|
2385
|
+
StartTime: string;
|
|
2386
|
+
/**
|
|
2387
|
+
* 结束时间
|
|
2388
|
+
*/
|
|
2389
|
+
EndTime: string;
|
|
2390
|
+
/**
|
|
2391
|
+
* 项目 ID 列表
|
|
2392
|
+
*/
|
|
2393
|
+
IDList?: Array<number | bigint>;
|
|
2394
|
+
/**
|
|
2395
|
+
* 查询粒度,hour 或 day
|
|
2396
|
+
*/
|
|
2397
|
+
Type?: string;
|
|
2398
|
+
/**
|
|
2399
|
+
* 环境
|
|
2400
|
+
*/
|
|
2401
|
+
Env?: string;
|
|
2402
|
+
}
|
|
2403
|
+
/**
|
|
2404
|
+
* Rum 项目信息
|
|
2405
|
+
*/
|
|
2406
|
+
export interface RumProject {
|
|
2407
|
+
/**
|
|
2408
|
+
* 项目名
|
|
1737
2409
|
*/
|
|
1738
|
-
|
|
2410
|
+
Name?: string;
|
|
1739
2411
|
/**
|
|
1740
|
-
*
|
|
2412
|
+
* 创建者 id
|
|
1741
2413
|
*/
|
|
1742
|
-
|
|
2414
|
+
Creator?: string;
|
|
1743
2415
|
/**
|
|
1744
|
-
*
|
|
2416
|
+
* 实例 id
|
|
1745
2417
|
*/
|
|
1746
|
-
|
|
2418
|
+
InstanceID?: string;
|
|
1747
2419
|
/**
|
|
1748
|
-
*
|
|
2420
|
+
* 项目类型
|
|
1749
2421
|
*/
|
|
1750
|
-
|
|
2422
|
+
Type?: string;
|
|
1751
2423
|
/**
|
|
1752
|
-
*
|
|
2424
|
+
* 创建时间
|
|
1753
2425
|
*/
|
|
1754
|
-
|
|
2426
|
+
CreateTime?: string;
|
|
1755
2427
|
/**
|
|
1756
|
-
*
|
|
2428
|
+
* 项目仓库地址
|
|
1757
2429
|
*/
|
|
1758
|
-
|
|
2430
|
+
Repo?: string;
|
|
1759
2431
|
/**
|
|
1760
|
-
*
|
|
2432
|
+
* 项目网址地址
|
|
1761
2433
|
*/
|
|
1762
|
-
|
|
2434
|
+
URL?: string;
|
|
1763
2435
|
/**
|
|
1764
|
-
*
|
|
2436
|
+
* 项目采样频率
|
|
1765
2437
|
*/
|
|
1766
|
-
|
|
2438
|
+
Rate?: string;
|
|
1767
2439
|
/**
|
|
1768
|
-
*
|
|
2440
|
+
* 项目唯一key(长度 12 位)
|
|
1769
2441
|
*/
|
|
1770
|
-
|
|
2442
|
+
Key?: string;
|
|
1771
2443
|
/**
|
|
1772
|
-
*
|
|
2444
|
+
* 是否开启url聚类
|
|
1773
2445
|
*/
|
|
1774
|
-
|
|
2446
|
+
EnableURLGroup?: number;
|
|
1775
2447
|
/**
|
|
1776
|
-
*
|
|
2448
|
+
* 实例名
|
|
1777
2449
|
*/
|
|
1778
|
-
|
|
2450
|
+
InstanceName?: string;
|
|
1779
2451
|
/**
|
|
1780
|
-
*
|
|
2452
|
+
* 项目 ID
|
|
1781
2453
|
*/
|
|
1782
|
-
|
|
1783
|
-
}
|
|
1784
|
-
/**
|
|
1785
|
-
* DeleteReleaseFile请求参数结构体
|
|
1786
|
-
*/
|
|
1787
|
-
export interface DeleteReleaseFileRequest {
|
|
2454
|
+
ID?: number;
|
|
1788
2455
|
/**
|
|
1789
|
-
*
|
|
2456
|
+
* 实例 key
|
|
1790
2457
|
*/
|
|
1791
|
-
|
|
1792
|
-
}
|
|
1793
|
-
/**
|
|
1794
|
-
* DescribeScoresV2请求参数结构体
|
|
1795
|
-
*/
|
|
1796
|
-
export interface DescribeScoresV2Request {
|
|
2458
|
+
InstanceKey?: string;
|
|
1797
2459
|
/**
|
|
1798
|
-
*
|
|
2460
|
+
* 项目描述
|
|
1799
2461
|
*/
|
|
1800
|
-
|
|
2462
|
+
Desc?: string;
|
|
1801
2463
|
/**
|
|
1802
|
-
*
|
|
2464
|
+
* 是否星标 1:是 0:否
|
|
1803
2465
|
*/
|
|
1804
|
-
|
|
2466
|
+
IsStar?: number;
|
|
1805
2467
|
/**
|
|
1806
|
-
*
|
|
2468
|
+
* 项目状态(1 创建中,2 运行中,3 异常,4 重启中,5 停止中,6 已停止, 7 销毁中,8 已销毁)
|
|
1807
2469
|
*/
|
|
1808
|
-
|
|
2470
|
+
ProjectStatus?: number;
|
|
1809
2471
|
/**
|
|
1810
|
-
*
|
|
2472
|
+
* 日志接入点,用户忽略。
|
|
1811
2473
|
*/
|
|
1812
|
-
|
|
2474
|
+
AccessPoint?: string;
|
|
1813
2475
|
/**
|
|
1814
|
-
*
|
|
2476
|
+
* kafka旁路配置信息
|
|
1815
2477
|
*/
|
|
1816
|
-
|
|
2478
|
+
Kafka?: Kafka;
|
|
1817
2479
|
}
|
|
1818
2480
|
/**
|
|
1819
2481
|
* DescribeDataFetchUrl请求参数结构体
|
|
@@ -2018,6 +2680,19 @@ export interface DeleteProjectResponse {
|
|
|
2018
2680
|
*/
|
|
2019
2681
|
RequestId?: string;
|
|
2020
2682
|
}
|
|
2683
|
+
/**
|
|
2684
|
+
* DescribeScoresV2返回参数结构体
|
|
2685
|
+
*/
|
|
2686
|
+
export interface DescribeScoresV2Response {
|
|
2687
|
+
/**
|
|
2688
|
+
* 项目得分数组
|
|
2689
|
+
*/
|
|
2690
|
+
ScoreSet?: Array<ScoreInfoV2>;
|
|
2691
|
+
/**
|
|
2692
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2693
|
+
*/
|
|
2694
|
+
RequestId?: string;
|
|
2695
|
+
}
|
|
2021
2696
|
/**
|
|
2022
2697
|
* DescribeDataPvUrlStatistics请求参数结构体
|
|
2023
2698
|
*/
|
|
@@ -2117,6 +2792,47 @@ export interface DescribeDataPvUrlStatisticsRequest {
|
|
|
2117
2792
|
*/
|
|
2118
2793
|
IsNewData?: number;
|
|
2119
2794
|
}
|
|
2795
|
+
/**
|
|
2796
|
+
* DescribeFOOMProblemList请求参数结构体
|
|
2797
|
+
*/
|
|
2798
|
+
export interface DescribeFOOMProblemListRequest {
|
|
2799
|
+
/**
|
|
2800
|
+
* 产品Id
|
|
2801
|
+
*/
|
|
2802
|
+
ProductId: string;
|
|
2803
|
+
/**
|
|
2804
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
2805
|
+
*/
|
|
2806
|
+
ParamToken?: string;
|
|
2807
|
+
/**
|
|
2808
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
2809
|
+
*/
|
|
2810
|
+
FormListString?: string;
|
|
2811
|
+
/**
|
|
2812
|
+
* 当前页码
|
|
2813
|
+
*/
|
|
2814
|
+
PageNumber?: number;
|
|
2815
|
+
/**
|
|
2816
|
+
* 每页展示最大数量
|
|
2817
|
+
*/
|
|
2818
|
+
PageSize?: number;
|
|
2819
|
+
/**
|
|
2820
|
+
* 排序字段
|
|
2821
|
+
*/
|
|
2822
|
+
SortField?: string;
|
|
2823
|
+
/**
|
|
2824
|
+
* 排序类型
|
|
2825
|
+
*/
|
|
2826
|
+
SortType?: string;
|
|
2827
|
+
/**
|
|
2828
|
+
* 拓展数据
|
|
2829
|
+
*/
|
|
2830
|
+
ExtraData?: string;
|
|
2831
|
+
/**
|
|
2832
|
+
* 请求头
|
|
2833
|
+
*/
|
|
2834
|
+
RequestHeader?: string;
|
|
2835
|
+
}
|
|
2120
2836
|
/**
|
|
2121
2837
|
* 发布文件列表(SOURCEMAP)
|
|
2122
2838
|
*/
|
|
@@ -2290,6 +3006,27 @@ export interface DescribeRumStatsLogListRequest {
|
|
|
2290
3006
|
*/
|
|
2291
3007
|
ID: number;
|
|
2292
3008
|
}
|
|
3009
|
+
/**
|
|
3010
|
+
* DescribeFOOMMallocProblemList返回参数结构体
|
|
3011
|
+
*/
|
|
3012
|
+
export interface DescribeFOOMMallocProblemListResponse {
|
|
3013
|
+
/**
|
|
3014
|
+
* 返回值
|
|
3015
|
+
*/
|
|
3016
|
+
Data?: string;
|
|
3017
|
+
/**
|
|
3018
|
+
* 消息
|
|
3019
|
+
*/
|
|
3020
|
+
Message?: string;
|
|
3021
|
+
/**
|
|
3022
|
+
* 状态码
|
|
3023
|
+
*/
|
|
3024
|
+
Code?: number;
|
|
3025
|
+
/**
|
|
3026
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3027
|
+
*/
|
|
3028
|
+
RequestId?: string;
|
|
3029
|
+
}
|
|
2293
3030
|
/**
|
|
2294
3031
|
* DescribeDataBridgeUrlV2请求参数结构体
|
|
2295
3032
|
*/
|
|
@@ -2431,6 +3168,27 @@ export interface DescribeDataBridgeUrlV2Request {
|
|
|
2431
3168
|
*/
|
|
2432
3169
|
Granularity?: string;
|
|
2433
3170
|
}
|
|
3171
|
+
/**
|
|
3172
|
+
* DescribeFOOMProblemList返回参数结构体
|
|
3173
|
+
*/
|
|
3174
|
+
export interface DescribeFOOMProblemListResponse {
|
|
3175
|
+
/**
|
|
3176
|
+
* 返回值
|
|
3177
|
+
*/
|
|
3178
|
+
Data?: string;
|
|
3179
|
+
/**
|
|
3180
|
+
* 消息
|
|
3181
|
+
*/
|
|
3182
|
+
Message?: string;
|
|
3183
|
+
/**
|
|
3184
|
+
* 状态码
|
|
3185
|
+
*/
|
|
3186
|
+
Code?: number;
|
|
3187
|
+
/**
|
|
3188
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3189
|
+
*/
|
|
3190
|
+
RequestId?: string;
|
|
3191
|
+
}
|
|
2434
3192
|
/**
|
|
2435
3193
|
* 旁路kafka配置
|
|
2436
3194
|
*/
|
|
@@ -2603,6 +3361,23 @@ export interface DescribeDataPvUrlStatisticsV2Response {
|
|
|
2603
3361
|
*/
|
|
2604
3362
|
RequestId?: string;
|
|
2605
3363
|
}
|
|
3364
|
+
/**
|
|
3365
|
+
* rum 日志对象
|
|
3366
|
+
*/
|
|
3367
|
+
export interface RumPvInfo {
|
|
3368
|
+
/**
|
|
3369
|
+
* 项目ID
|
|
3370
|
+
*/
|
|
3371
|
+
ProjectId?: number;
|
|
3372
|
+
/**
|
|
3373
|
+
* pv访问量
|
|
3374
|
+
*/
|
|
3375
|
+
Pv?: string;
|
|
3376
|
+
/**
|
|
3377
|
+
* 时间
|
|
3378
|
+
*/
|
|
3379
|
+
CreateTime?: string;
|
|
3380
|
+
}
|
|
2606
3381
|
/**
|
|
2607
3382
|
* Rum片区信息
|
|
2608
3383
|
*/
|
|
@@ -2999,21 +3774,87 @@ export interface DescribeDataLogUrlInfoResponse {
|
|
|
2999
3774
|
RequestId?: string;
|
|
3000
3775
|
}
|
|
3001
3776
|
/**
|
|
3002
|
-
*
|
|
3777
|
+
* DescribeFOOMMallocProblemList请求参数结构体
|
|
3003
3778
|
*/
|
|
3004
|
-
export interface
|
|
3779
|
+
export interface DescribeFOOMMallocProblemListRequest {
|
|
3005
3780
|
/**
|
|
3006
|
-
*
|
|
3781
|
+
* 产品Id
|
|
3007
3782
|
*/
|
|
3008
|
-
|
|
3783
|
+
ProductId: string;
|
|
3009
3784
|
/**
|
|
3010
|
-
*
|
|
3785
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
3011
3786
|
*/
|
|
3012
|
-
|
|
3787
|
+
ParamToken?: string;
|
|
3013
3788
|
/**
|
|
3014
|
-
*
|
|
3789
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
3015
3790
|
*/
|
|
3016
|
-
|
|
3791
|
+
FormListString?: string;
|
|
3792
|
+
/**
|
|
3793
|
+
* 当前页码
|
|
3794
|
+
*/
|
|
3795
|
+
PageNumber?: number;
|
|
3796
|
+
/**
|
|
3797
|
+
* 每页展示最大数量
|
|
3798
|
+
*/
|
|
3799
|
+
PageSize?: number;
|
|
3800
|
+
/**
|
|
3801
|
+
* 排序字段
|
|
3802
|
+
*/
|
|
3803
|
+
SortField?: string;
|
|
3804
|
+
/**
|
|
3805
|
+
* 排序类型
|
|
3806
|
+
*/
|
|
3807
|
+
SortType?: string;
|
|
3808
|
+
/**
|
|
3809
|
+
* 拓展数据
|
|
3810
|
+
*/
|
|
3811
|
+
ExtraData?: string;
|
|
3812
|
+
/**
|
|
3813
|
+
* 请求头
|
|
3814
|
+
*/
|
|
3815
|
+
RequestHeader?: string;
|
|
3816
|
+
}
|
|
3817
|
+
/**
|
|
3818
|
+
* DescribeExceptionDetail返回参数结构体
|
|
3819
|
+
*/
|
|
3820
|
+
export interface DescribeExceptionDetailResponse {
|
|
3821
|
+
/**
|
|
3822
|
+
* 返回值
|
|
3823
|
+
*/
|
|
3824
|
+
Data?: string;
|
|
3825
|
+
/**
|
|
3826
|
+
* 状态码
|
|
3827
|
+
*/
|
|
3828
|
+
Code?: number;
|
|
3829
|
+
/**
|
|
3830
|
+
* 消息
|
|
3831
|
+
*/
|
|
3832
|
+
Message?: string;
|
|
3833
|
+
/**
|
|
3834
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3835
|
+
*/
|
|
3836
|
+
RequestId?: string;
|
|
3837
|
+
}
|
|
3838
|
+
/**
|
|
3839
|
+
* DescribeExceptionReportList返回参数结构体
|
|
3840
|
+
*/
|
|
3841
|
+
export interface DescribeExceptionReportListResponse {
|
|
3842
|
+
/**
|
|
3843
|
+
* 返回值
|
|
3844
|
+
*/
|
|
3845
|
+
Data?: string;
|
|
3846
|
+
/**
|
|
3847
|
+
* 状态码
|
|
3848
|
+
*/
|
|
3849
|
+
Code?: number;
|
|
3850
|
+
/**
|
|
3851
|
+
* 消息
|
|
3852
|
+
*/
|
|
3853
|
+
Message?: string;
|
|
3854
|
+
/**
|
|
3855
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3856
|
+
*/
|
|
3857
|
+
RequestId?: string;
|
|
3017
3858
|
}
|
|
3018
3859
|
/**
|
|
3019
3860
|
* DeleteReleaseFile返回参数结构体
|
|
@@ -3250,6 +4091,39 @@ export interface DescribeDataLogUrlStatisticsRequest {
|
|
|
3250
4091
|
*/
|
|
3251
4092
|
ErrorMsg?: string;
|
|
3252
4093
|
}
|
|
4094
|
+
/**
|
|
4095
|
+
* DescribeLagANRProblemAccountDetail请求参数结构体
|
|
4096
|
+
*/
|
|
4097
|
+
export interface DescribeLagANRProblemAccountDetailRequest {
|
|
4098
|
+
/**
|
|
4099
|
+
* 产品Id
|
|
4100
|
+
*/
|
|
4101
|
+
ProductId: string;
|
|
4102
|
+
/**
|
|
4103
|
+
* 消息唯一标识
|
|
4104
|
+
*/
|
|
4105
|
+
ClientIdentify?: string;
|
|
4106
|
+
/**
|
|
4107
|
+
* 特征
|
|
4108
|
+
*/
|
|
4109
|
+
Feature?: string;
|
|
4110
|
+
/**
|
|
4111
|
+
* 事件开始时间
|
|
4112
|
+
*/
|
|
4113
|
+
StartEventTime?: number;
|
|
4114
|
+
/**
|
|
4115
|
+
* 事件结束时间
|
|
4116
|
+
*/
|
|
4117
|
+
EndEventTime?: number;
|
|
4118
|
+
/**
|
|
4119
|
+
* 拓展数据
|
|
4120
|
+
*/
|
|
4121
|
+
ExtraData?: string;
|
|
4122
|
+
/**
|
|
4123
|
+
* 请求头
|
|
4124
|
+
*/
|
|
4125
|
+
RequestHeader?: string;
|
|
4126
|
+
}
|
|
3253
4127
|
/**
|
|
3254
4128
|
* DescribeDataBridgeUrlV2返回参数结构体
|
|
3255
4129
|
*/
|
|
@@ -3363,7 +4237,28 @@ export interface DeleteInstanceRequest {
|
|
|
3363
4237
|
/**
|
|
3364
4238
|
* 需要删除的实例id
|
|
3365
4239
|
*/
|
|
3366
|
-
InstanceId: string;
|
|
4240
|
+
InstanceId: string;
|
|
4241
|
+
}
|
|
4242
|
+
/**
|
|
4243
|
+
* DescribeIssuesList返回参数结构体
|
|
4244
|
+
*/
|
|
4245
|
+
export interface DescribeIssuesListResponse {
|
|
4246
|
+
/**
|
|
4247
|
+
* 返回值
|
|
4248
|
+
*/
|
|
4249
|
+
Data?: string;
|
|
4250
|
+
/**
|
|
4251
|
+
* 状态码
|
|
4252
|
+
*/
|
|
4253
|
+
Code?: number;
|
|
4254
|
+
/**
|
|
4255
|
+
* 消息
|
|
4256
|
+
*/
|
|
4257
|
+
Message?: string;
|
|
4258
|
+
/**
|
|
4259
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4260
|
+
*/
|
|
4261
|
+
RequestId?: string;
|
|
3367
4262
|
}
|
|
3368
4263
|
/**
|
|
3369
4264
|
* DescribeDataStaticResource返回参数结构体
|
|
@@ -3624,6 +4519,27 @@ export interface DescribeDataFetchUrlInfoResponse {
|
|
|
3624
4519
|
*/
|
|
3625
4520
|
RequestId?: string;
|
|
3626
4521
|
}
|
|
4522
|
+
/**
|
|
4523
|
+
* DescribeFOOMReportList返回参数结构体
|
|
4524
|
+
*/
|
|
4525
|
+
export interface DescribeFOOMReportListResponse {
|
|
4526
|
+
/**
|
|
4527
|
+
* 返回值
|
|
4528
|
+
*/
|
|
4529
|
+
Data?: string;
|
|
4530
|
+
/**
|
|
4531
|
+
* 消息
|
|
4532
|
+
*/
|
|
4533
|
+
Message?: string;
|
|
4534
|
+
/**
|
|
4535
|
+
* 状态码
|
|
4536
|
+
*/
|
|
4537
|
+
Code?: number;
|
|
4538
|
+
/**
|
|
4539
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4540
|
+
*/
|
|
4541
|
+
RequestId?: string;
|
|
4542
|
+
}
|
|
3627
4543
|
/**
|
|
3628
4544
|
* DescribeReleaseFiles返回参数结构体
|
|
3629
4545
|
*/
|
|
@@ -3650,6 +4566,27 @@ export interface DescribeDataStaticUrlResponse {
|
|
|
3650
4566
|
*/
|
|
3651
4567
|
RequestId?: string;
|
|
3652
4568
|
}
|
|
4569
|
+
/**
|
|
4570
|
+
* DescribeIssuesDistribution返回参数结构体
|
|
4571
|
+
*/
|
|
4572
|
+
export interface DescribeIssuesDistributionResponse {
|
|
4573
|
+
/**
|
|
4574
|
+
* 返回值
|
|
4575
|
+
*/
|
|
4576
|
+
Data?: string;
|
|
4577
|
+
/**
|
|
4578
|
+
* 状态码
|
|
4579
|
+
*/
|
|
4580
|
+
Code?: number;
|
|
4581
|
+
/**
|
|
4582
|
+
* 消息
|
|
4583
|
+
*/
|
|
4584
|
+
Message?: string;
|
|
4585
|
+
/**
|
|
4586
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4587
|
+
*/
|
|
4588
|
+
RequestId?: string;
|
|
4589
|
+
}
|
|
3653
4590
|
/**
|
|
3654
4591
|
* CreateWhitelist返回参数结构体
|
|
3655
4592
|
*/
|
|
@@ -4123,6 +5060,47 @@ export interface DescribeRumGroupLogRequest {
|
|
|
4123
5060
|
*/
|
|
4124
5061
|
GroupField: string;
|
|
4125
5062
|
}
|
|
5063
|
+
/**
|
|
5064
|
+
* DescribeExceptionDetail请求参数结构体
|
|
5065
|
+
*/
|
|
5066
|
+
export interface DescribeExceptionDetailRequest {
|
|
5067
|
+
/**
|
|
5068
|
+
* 产品Id
|
|
5069
|
+
*/
|
|
5070
|
+
ProductId: string;
|
|
5071
|
+
/**
|
|
5072
|
+
* 消息唯一标识
|
|
5073
|
+
*/
|
|
5074
|
+
ClientIdentify?: string;
|
|
5075
|
+
/**
|
|
5076
|
+
* 集群堆栈类型
|
|
5077
|
+
*/
|
|
5078
|
+
ClusterStackType?: number;
|
|
5079
|
+
/**
|
|
5080
|
+
* 特征
|
|
5081
|
+
*/
|
|
5082
|
+
Feature?: string;
|
|
5083
|
+
/**
|
|
5084
|
+
* 问题类型
|
|
5085
|
+
*/
|
|
5086
|
+
IssueType?: number;
|
|
5087
|
+
/**
|
|
5088
|
+
* 事件开始时间
|
|
5089
|
+
*/
|
|
5090
|
+
StartEventTime?: number;
|
|
5091
|
+
/**
|
|
5092
|
+
* 事件结束时间
|
|
5093
|
+
*/
|
|
5094
|
+
EndEventTime?: number;
|
|
5095
|
+
/**
|
|
5096
|
+
* 拓展数据
|
|
5097
|
+
*/
|
|
5098
|
+
ExtraData?: string;
|
|
5099
|
+
/**
|
|
5100
|
+
* 请求头
|
|
5101
|
+
*/
|
|
5102
|
+
RequestHeader?: string;
|
|
5103
|
+
}
|
|
4126
5104
|
/**
|
|
4127
5105
|
* DescribeDataFetchUrlV2请求参数结构体
|
|
4128
5106
|
*/
|
|
@@ -4324,6 +5302,48 @@ export interface DescribeDataReportCountResponse {
|
|
|
4324
5302
|
*/
|
|
4325
5303
|
RequestId?: string;
|
|
4326
5304
|
}
|
|
5305
|
+
/**
|
|
5306
|
+
* DescribeApplicationExitReportList返回参数结构体
|
|
5307
|
+
*/
|
|
5308
|
+
export interface DescribeApplicationExitReportListResponse {
|
|
5309
|
+
/**
|
|
5310
|
+
* 返回值
|
|
5311
|
+
*/
|
|
5312
|
+
Data?: string;
|
|
5313
|
+
/**
|
|
5314
|
+
* 状态码
|
|
5315
|
+
*/
|
|
5316
|
+
Code?: number;
|
|
5317
|
+
/**
|
|
5318
|
+
* 消息
|
|
5319
|
+
*/
|
|
5320
|
+
Message?: string;
|
|
5321
|
+
/**
|
|
5322
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5323
|
+
*/
|
|
5324
|
+
RequestId?: string;
|
|
5325
|
+
}
|
|
5326
|
+
/**
|
|
5327
|
+
* DescribeLagANRProblemAccountDetail返回参数结构体
|
|
5328
|
+
*/
|
|
5329
|
+
export interface DescribeLagANRProblemAccountDetailResponse {
|
|
5330
|
+
/**
|
|
5331
|
+
* 返回值
|
|
5332
|
+
*/
|
|
5333
|
+
Data?: string;
|
|
5334
|
+
/**
|
|
5335
|
+
* 状态码
|
|
5336
|
+
*/
|
|
5337
|
+
Code?: number;
|
|
5338
|
+
/**
|
|
5339
|
+
* 消息
|
|
5340
|
+
*/
|
|
5341
|
+
Message?: string;
|
|
5342
|
+
/**
|
|
5343
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5344
|
+
*/
|
|
5345
|
+
RequestId?: string;
|
|
5346
|
+
}
|
|
4327
5347
|
/**
|
|
4328
5348
|
* DescribeRumLogExport返回参数结构体
|
|
4329
5349
|
*/
|
|
@@ -4354,6 +5374,27 @@ export interface DescribeRumLogExportsRequest {
|
|
|
4354
5374
|
*/
|
|
4355
5375
|
ID: number;
|
|
4356
5376
|
}
|
|
5377
|
+
/**
|
|
5378
|
+
* DescribeIssuesStatisticsTrend返回参数结构体
|
|
5379
|
+
*/
|
|
5380
|
+
export interface DescribeIssuesStatisticsTrendResponse {
|
|
5381
|
+
/**
|
|
5382
|
+
* 返回值
|
|
5383
|
+
*/
|
|
5384
|
+
Data?: string;
|
|
5385
|
+
/**
|
|
5386
|
+
* 状态码
|
|
5387
|
+
*/
|
|
5388
|
+
Code?: number;
|
|
5389
|
+
/**
|
|
5390
|
+
* 消息
|
|
5391
|
+
*/
|
|
5392
|
+
Message?: string;
|
|
5393
|
+
/**
|
|
5394
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5395
|
+
*/
|
|
5396
|
+
RequestId?: string;
|
|
5397
|
+
}
|
|
4357
5398
|
/**
|
|
4358
5399
|
* ModifyProject请求参数结构体
|
|
4359
5400
|
*/
|
|
@@ -4707,6 +5748,27 @@ export interface DescribeTawInstancesResponse {
|
|
|
4707
5748
|
*/
|
|
4708
5749
|
RequestId?: string;
|
|
4709
5750
|
}
|
|
5751
|
+
/**
|
|
5752
|
+
* DescribeApplicationExitReportDetail返回参数结构体
|
|
5753
|
+
*/
|
|
5754
|
+
export interface DescribeApplicationExitReportDetailResponse {
|
|
5755
|
+
/**
|
|
5756
|
+
* 返回值
|
|
5757
|
+
*/
|
|
5758
|
+
Data?: string;
|
|
5759
|
+
/**
|
|
5760
|
+
* 状态码
|
|
5761
|
+
*/
|
|
5762
|
+
Code?: number;
|
|
5763
|
+
/**
|
|
5764
|
+
* 消息
|
|
5765
|
+
*/
|
|
5766
|
+
Message?: string;
|
|
5767
|
+
/**
|
|
5768
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5769
|
+
*/
|
|
5770
|
+
RequestId?: string;
|
|
5771
|
+
}
|
|
4710
5772
|
/**
|
|
4711
5773
|
* DescribePvList请求参数结构体
|
|
4712
5774
|
*/
|
|
@@ -4844,17 +5906,94 @@ export interface DescribeDataFetchProjectResponse {
|
|
|
4844
5906
|
RequestId?: string;
|
|
4845
5907
|
}
|
|
4846
5908
|
/**
|
|
4847
|
-
*
|
|
5909
|
+
* DescribeFOOMReportList请求参数结构体
|
|
4848
5910
|
*/
|
|
4849
|
-
export interface
|
|
5911
|
+
export interface DescribeFOOMReportListRequest {
|
|
4850
5912
|
/**
|
|
4851
|
-
*
|
|
5913
|
+
* 产品Id
|
|
4852
5914
|
*/
|
|
4853
|
-
|
|
5915
|
+
ProductId: string;
|
|
4854
5916
|
/**
|
|
4855
|
-
*
|
|
5917
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
4856
5918
|
*/
|
|
4857
|
-
|
|
5919
|
+
FormListString?: string;
|
|
5920
|
+
/**
|
|
5921
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
5922
|
+
*/
|
|
5923
|
+
ParamToken?: string;
|
|
5924
|
+
/**
|
|
5925
|
+
* 特征
|
|
5926
|
+
*/
|
|
5927
|
+
Feature?: string;
|
|
5928
|
+
/**
|
|
5929
|
+
* 当前页码
|
|
5930
|
+
*/
|
|
5931
|
+
PageNumber?: number;
|
|
5932
|
+
/**
|
|
5933
|
+
* 每页展示最大数量
|
|
5934
|
+
*/
|
|
5935
|
+
PageSize?: number;
|
|
5936
|
+
/**
|
|
5937
|
+
* 排序字段
|
|
5938
|
+
*/
|
|
5939
|
+
SortField?: string;
|
|
5940
|
+
/**
|
|
5941
|
+
* 排序类型
|
|
5942
|
+
*/
|
|
5943
|
+
SortType?: string;
|
|
5944
|
+
/**
|
|
5945
|
+
* 拓展数据
|
|
5946
|
+
*/
|
|
5947
|
+
ExtraData?: string;
|
|
5948
|
+
/**
|
|
5949
|
+
* 请求头
|
|
5950
|
+
*/
|
|
5951
|
+
RequestHeader?: string;
|
|
5952
|
+
}
|
|
5953
|
+
/**
|
|
5954
|
+
* DescribeLagANRProblemFeatureAccounts请求参数结构体
|
|
5955
|
+
*/
|
|
5956
|
+
export interface DescribeLagANRProblemFeatureAccountsRequest {
|
|
5957
|
+
/**
|
|
5958
|
+
* 产品Id
|
|
5959
|
+
*/
|
|
5960
|
+
ProductId: string;
|
|
5961
|
+
/**
|
|
5962
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
5963
|
+
*/
|
|
5964
|
+
FormListString?: string;
|
|
5965
|
+
/**
|
|
5966
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
5967
|
+
*/
|
|
5968
|
+
ParamToken?: string;
|
|
5969
|
+
/**
|
|
5970
|
+
* 问题特征
|
|
5971
|
+
*/
|
|
5972
|
+
Feature?: string;
|
|
5973
|
+
/**
|
|
5974
|
+
* 排序字段
|
|
5975
|
+
*/
|
|
5976
|
+
SortField?: string;
|
|
5977
|
+
/**
|
|
5978
|
+
* 排序类型
|
|
5979
|
+
*/
|
|
5980
|
+
SortType?: string;
|
|
5981
|
+
/**
|
|
5982
|
+
* 当前页码
|
|
5983
|
+
*/
|
|
5984
|
+
PageNumber?: number;
|
|
5985
|
+
/**
|
|
5986
|
+
* 每页展示最大数量
|
|
5987
|
+
*/
|
|
5988
|
+
PageSize?: number;
|
|
5989
|
+
/**
|
|
5990
|
+
* 拓展数据
|
|
5991
|
+
*/
|
|
5992
|
+
ExtraData?: string;
|
|
5993
|
+
/**
|
|
5994
|
+
* 请求头
|
|
5995
|
+
*/
|
|
5996
|
+
RequestHeader?: string;
|
|
4858
5997
|
}
|
|
4859
5998
|
/**
|
|
4860
5999
|
* 白名单
|
|
@@ -5019,86 +6158,104 @@ export interface DescribeDataLogUrlStatisticsV2Request {
|
|
|
5019
6158
|
Granularity?: string;
|
|
5020
6159
|
}
|
|
5021
6160
|
/**
|
|
5022
|
-
*
|
|
6161
|
+
* DescribeLagANRProblemList请求参数结构体
|
|
5023
6162
|
*/
|
|
5024
|
-
export interface
|
|
6163
|
+
export interface DescribeLagANRProblemListRequest {
|
|
5025
6164
|
/**
|
|
5026
|
-
*
|
|
6165
|
+
* 产品Id
|
|
5027
6166
|
*/
|
|
5028
|
-
|
|
6167
|
+
ProductId: string;
|
|
5029
6168
|
/**
|
|
5030
|
-
*
|
|
6169
|
+
* 提供给前端使用,当填写本字段时,会覆盖 formlist 的值
|
|
5031
6170
|
*/
|
|
5032
|
-
|
|
6171
|
+
ParamToken?: string;
|
|
5033
6172
|
/**
|
|
5034
|
-
*
|
|
6173
|
+
* 接口调试专用,当 token 为空时,以这里的 value 作为筛选表单信息
|
|
5035
6174
|
*/
|
|
5036
|
-
|
|
6175
|
+
FormListString?: string;
|
|
5037
6176
|
/**
|
|
5038
|
-
*
|
|
6177
|
+
* 当前页码
|
|
5039
6178
|
*/
|
|
5040
|
-
|
|
6179
|
+
PageNumber?: number;
|
|
5041
6180
|
/**
|
|
5042
|
-
*
|
|
6181
|
+
* 每页展示最大数量
|
|
5043
6182
|
*/
|
|
5044
|
-
|
|
6183
|
+
PageSize?: number;
|
|
5045
6184
|
/**
|
|
5046
|
-
*
|
|
6185
|
+
* 排序字段
|
|
5047
6186
|
*/
|
|
5048
|
-
|
|
6187
|
+
SortField?: string;
|
|
5049
6188
|
/**
|
|
5050
|
-
*
|
|
6189
|
+
* 排序类型
|
|
5051
6190
|
*/
|
|
5052
|
-
|
|
6191
|
+
SortType?: string;
|
|
5053
6192
|
/**
|
|
5054
|
-
*
|
|
6193
|
+
* 拓展数据
|
|
5055
6194
|
*/
|
|
5056
|
-
|
|
6195
|
+
ExtraData?: string;
|
|
5057
6196
|
/**
|
|
5058
|
-
*
|
|
6197
|
+
* 请求头
|
|
5059
6198
|
*/
|
|
5060
|
-
|
|
6199
|
+
RequestHeader?: string;
|
|
6200
|
+
}
|
|
6201
|
+
/**
|
|
6202
|
+
* DescribeDataStaticResourceV2返回参数结构体
|
|
6203
|
+
*/
|
|
6204
|
+
export interface DescribeDataStaticResourceV2Response {
|
|
5061
6205
|
/**
|
|
5062
|
-
*
|
|
6206
|
+
* 返回值
|
|
5063
6207
|
*/
|
|
5064
|
-
|
|
6208
|
+
Result?: string;
|
|
5065
6209
|
/**
|
|
5066
|
-
*
|
|
6210
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5067
6211
|
*/
|
|
5068
|
-
|
|
6212
|
+
RequestId?: string;
|
|
6213
|
+
}
|
|
6214
|
+
/**
|
|
6215
|
+
* DescribeTopIssues请求参数结构体
|
|
6216
|
+
*/
|
|
6217
|
+
export interface DescribeTopIssuesRequest {
|
|
5069
6218
|
/**
|
|
5070
|
-
*
|
|
6219
|
+
* 产品Id
|
|
5071
6220
|
*/
|
|
5072
|
-
|
|
6221
|
+
ProductId: string;
|
|
5073
6222
|
/**
|
|
5074
|
-
*
|
|
6223
|
+
* 需要对比的查询条件,没有则不填
|
|
5075
6224
|
*/
|
|
5076
|
-
|
|
6225
|
+
Compare?: CompareCondition;
|
|
5077
6226
|
/**
|
|
5078
|
-
*
|
|
6227
|
+
* 查询条件
|
|
5079
6228
|
*/
|
|
5080
|
-
|
|
6229
|
+
Condition?: CompareCondition;
|
|
5081
6230
|
/**
|
|
5082
|
-
*
|
|
6231
|
+
* 问题类型
|
|
5083
6232
|
*/
|
|
5084
|
-
|
|
6233
|
+
IssueType?: number;
|
|
5085
6234
|
/**
|
|
5086
|
-
*
|
|
6235
|
+
* 排序字段
|
|
5087
6236
|
*/
|
|
5088
|
-
|
|
6237
|
+
SortField?: string;
|
|
5089
6238
|
/**
|
|
5090
|
-
*
|
|
6239
|
+
* 排序方式
|
|
5091
6240
|
*/
|
|
5092
|
-
|
|
6241
|
+
SortType?: string;
|
|
5093
6242
|
/**
|
|
5094
|
-
*
|
|
6243
|
+
* topN
|
|
5095
6244
|
*/
|
|
5096
|
-
|
|
6245
|
+
TopNum?: number;
|
|
6246
|
+
/**
|
|
6247
|
+
* 拓展字段
|
|
6248
|
+
*/
|
|
6249
|
+
ExtraData?: string;
|
|
6250
|
+
/**
|
|
6251
|
+
* 请求头
|
|
6252
|
+
*/
|
|
6253
|
+
RequestHeader?: string;
|
|
5097
6254
|
}
|
|
5098
6255
|
/**
|
|
5099
|
-
*
|
|
6256
|
+
* DescribeDataSetUrlStatistics返回参数结构体
|
|
5100
6257
|
*/
|
|
5101
|
-
export interface
|
|
6258
|
+
export interface DescribeDataSetUrlStatisticsResponse {
|
|
5102
6259
|
/**
|
|
5103
6260
|
* 返回值
|
|
5104
6261
|
*/
|
|
@@ -5109,17 +6266,33 @@ export interface DescribeDataStaticResourceV2Response {
|
|
|
5109
6266
|
RequestId?: string;
|
|
5110
6267
|
}
|
|
5111
6268
|
/**
|
|
5112
|
-
*
|
|
6269
|
+
* BugLY筛选结构体
|
|
5113
6270
|
*/
|
|
5114
|
-
export interface
|
|
6271
|
+
export interface Filters {
|
|
5115
6272
|
/**
|
|
5116
|
-
*
|
|
6273
|
+
* 是否反转
|
|
5117
6274
|
*/
|
|
5118
|
-
|
|
6275
|
+
IsReversed?: boolean;
|
|
5119
6276
|
/**
|
|
5120
|
-
*
|
|
6277
|
+
* 键
|
|
5121
6278
|
*/
|
|
5122
|
-
|
|
6279
|
+
Key?: string;
|
|
6280
|
+
/**
|
|
6281
|
+
* 名称
|
|
6282
|
+
*/
|
|
6283
|
+
Name?: string;
|
|
6284
|
+
/**
|
|
6285
|
+
* 运算符
|
|
6286
|
+
*/
|
|
6287
|
+
Operator?: string;
|
|
6288
|
+
/**
|
|
6289
|
+
* 类型
|
|
6290
|
+
*/
|
|
6291
|
+
Type?: number;
|
|
6292
|
+
/**
|
|
6293
|
+
* 值
|
|
6294
|
+
*/
|
|
6295
|
+
Values?: Array<string>;
|
|
5123
6296
|
}
|
|
5124
6297
|
/**
|
|
5125
6298
|
* DescribeAppDimensionMetrics请求参数结构体
|
|
@@ -5166,6 +6339,39 @@ export interface DescribeAppDimensionMetricsRequest {
|
|
|
5166
6339
|
*/
|
|
5167
6340
|
BusinessContext?: string;
|
|
5168
6341
|
}
|
|
6342
|
+
/**
|
|
6343
|
+
* DescribeFOOMMallocProblemDetail请求参数结构体
|
|
6344
|
+
*/
|
|
6345
|
+
export interface DescribeFOOMMallocProblemDetailRequest {
|
|
6346
|
+
/**
|
|
6347
|
+
* 产品Id
|
|
6348
|
+
*/
|
|
6349
|
+
ProductId: string;
|
|
6350
|
+
/**
|
|
6351
|
+
* 消息唯一标识
|
|
6352
|
+
*/
|
|
6353
|
+
ClientIdentify?: string;
|
|
6354
|
+
/**
|
|
6355
|
+
* 特征
|
|
6356
|
+
*/
|
|
6357
|
+
Feature?: string;
|
|
6358
|
+
/**
|
|
6359
|
+
* 事件开始时间
|
|
6360
|
+
*/
|
|
6361
|
+
StartEventTime?: number;
|
|
6362
|
+
/**
|
|
6363
|
+
* 事件结束时间
|
|
6364
|
+
*/
|
|
6365
|
+
EndEventTime?: number;
|
|
6366
|
+
/**
|
|
6367
|
+
* 拓展数据
|
|
6368
|
+
*/
|
|
6369
|
+
ExtraData?: string;
|
|
6370
|
+
/**
|
|
6371
|
+
* 请求头
|
|
6372
|
+
*/
|
|
6373
|
+
RequestHeader?: string;
|
|
6374
|
+
}
|
|
5169
6375
|
/**
|
|
5170
6376
|
* Rum实例信息
|
|
5171
6377
|
*/
|