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