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