tencentcloud-sdk-nodejs-rum 4.0.580 → 4.0.583
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 +576 -0
- package/SERVICE_CHANGELOG.md +810 -243
- package/package.json +1 -1
- package/products.md +32 -32
- package/src/services/rum/v20210622/rum_client.ts +86 -38
- package/src/services/rum/v20210622/rum_models.ts +283 -13
- package/tencentcloud/services/rum/v20210622/rum_client.d.ts +29 -13
- package/tencentcloud/services/rum/v20210622/rum_client.js +42 -18
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +236 -12
|
@@ -281,6 +281,51 @@ export interface DescribeRumLogListResponse {
|
|
|
281
281
|
*/
|
|
282
282
|
RequestId?: string;
|
|
283
283
|
}
|
|
284
|
+
/**
|
|
285
|
+
* DescribeAppMetricsData请求参数结构体
|
|
286
|
+
*/
|
|
287
|
+
export interface DescribeAppMetricsDataRequest {
|
|
288
|
+
/**
|
|
289
|
+
* app 项目ID
|
|
290
|
+
*/
|
|
291
|
+
ProjectID: number;
|
|
292
|
+
/**
|
|
293
|
+
* 查询的表名
|
|
294
|
+
*/
|
|
295
|
+
From: string;
|
|
296
|
+
/**
|
|
297
|
+
* 查询指标 field
|
|
298
|
+
*/
|
|
299
|
+
Fields: string;
|
|
300
|
+
/**
|
|
301
|
+
* 查询的过滤条件
|
|
302
|
+
*/
|
|
303
|
+
Filter: string;
|
|
304
|
+
/**
|
|
305
|
+
* 查询简单过滤条件
|
|
306
|
+
*/
|
|
307
|
+
FilterSimple?: string;
|
|
308
|
+
/**
|
|
309
|
+
* group by 条件
|
|
310
|
+
*/
|
|
311
|
+
GroupBy?: Array<string>;
|
|
312
|
+
/**
|
|
313
|
+
* order by 条件
|
|
314
|
+
*/
|
|
315
|
+
OrderBy?: Array<string>;
|
|
316
|
+
/**
|
|
317
|
+
* limit 参数
|
|
318
|
+
*/
|
|
319
|
+
Limit?: number;
|
|
320
|
+
/**
|
|
321
|
+
* offset 参数
|
|
322
|
+
*/
|
|
323
|
+
Offset?: number;
|
|
324
|
+
/**
|
|
325
|
+
* group by 参数
|
|
326
|
+
*/
|
|
327
|
+
GroupByModifier?: string;
|
|
328
|
+
}
|
|
284
329
|
/**
|
|
285
330
|
* DescribeDataPvUrlInfo返回参数结构体
|
|
286
331
|
*/
|
|
@@ -413,6 +458,32 @@ export interface DescribeErrorResponse {
|
|
|
413
458
|
*/
|
|
414
459
|
RequestId?: string;
|
|
415
460
|
}
|
|
461
|
+
/**
|
|
462
|
+
* DescribeAppMetricsData返回参数结构体
|
|
463
|
+
*/
|
|
464
|
+
export interface DescribeAppMetricsDataResponse {
|
|
465
|
+
/**
|
|
466
|
+
* 查询数据返回
|
|
467
|
+
*/
|
|
468
|
+
Data: string;
|
|
469
|
+
/**
|
|
470
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
471
|
+
*/
|
|
472
|
+
RequestId?: string;
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* DescribeAppSingleCaseDetailList返回参数结构体
|
|
476
|
+
*/
|
|
477
|
+
export interface DescribeAppSingleCaseDetailListResponse {
|
|
478
|
+
/**
|
|
479
|
+
* 查询数据返回
|
|
480
|
+
*/
|
|
481
|
+
Data: string;
|
|
482
|
+
/**
|
|
483
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
484
|
+
*/
|
|
485
|
+
RequestId?: string;
|
|
486
|
+
}
|
|
416
487
|
/**
|
|
417
488
|
* DeleteWhitelist返回参数结构体
|
|
418
489
|
*/
|
|
@@ -1026,6 +1097,19 @@ export interface DeleteInstanceResponse {
|
|
|
1026
1097
|
*/
|
|
1027
1098
|
RequestId?: string;
|
|
1028
1099
|
}
|
|
1100
|
+
/**
|
|
1101
|
+
* DescribeAppSingleCaseList返回参数结构体
|
|
1102
|
+
*/
|
|
1103
|
+
export interface DescribeAppSingleCaseListResponse {
|
|
1104
|
+
/**
|
|
1105
|
+
* 查询数据返回
|
|
1106
|
+
*/
|
|
1107
|
+
Data: string;
|
|
1108
|
+
/**
|
|
1109
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1110
|
+
*/
|
|
1111
|
+
RequestId?: string;
|
|
1112
|
+
}
|
|
1029
1113
|
/**
|
|
1030
1114
|
* DescribeDataPerformancePage请求参数结构体
|
|
1031
1115
|
*/
|
|
@@ -1319,13 +1403,17 @@ export interface StopInstanceResponse {
|
|
|
1319
1403
|
RequestId?: string;
|
|
1320
1404
|
}
|
|
1321
1405
|
/**
|
|
1322
|
-
*
|
|
1406
|
+
* DescribeDataCustomUrl返回参数结构体
|
|
1323
1407
|
*/
|
|
1324
|
-
export interface
|
|
1408
|
+
export interface DescribeDataCustomUrlResponse {
|
|
1325
1409
|
/**
|
|
1326
|
-
*
|
|
1410
|
+
* 返回值
|
|
1327
1411
|
*/
|
|
1328
|
-
|
|
1412
|
+
Result: string;
|
|
1413
|
+
/**
|
|
1414
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1415
|
+
*/
|
|
1416
|
+
RequestId?: string;
|
|
1329
1417
|
}
|
|
1330
1418
|
/**
|
|
1331
1419
|
* CreateStarProject返回参数结构体
|
|
@@ -1751,17 +1839,13 @@ export interface DescribeDataLogUrlInfoRequest {
|
|
|
1751
1839
|
EndTime: number;
|
|
1752
1840
|
}
|
|
1753
1841
|
/**
|
|
1754
|
-
*
|
|
1842
|
+
* DescribeProjectLimits请求参数结构体
|
|
1755
1843
|
*/
|
|
1756
|
-
export interface
|
|
1757
|
-
/**
|
|
1758
|
-
* 返回值
|
|
1759
|
-
*/
|
|
1760
|
-
Result: string;
|
|
1844
|
+
export interface DescribeProjectLimitsRequest {
|
|
1761
1845
|
/**
|
|
1762
|
-
*
|
|
1846
|
+
* 项目ID
|
|
1763
1847
|
*/
|
|
1764
|
-
|
|
1848
|
+
ProjectID: number;
|
|
1765
1849
|
}
|
|
1766
1850
|
/**
|
|
1767
1851
|
* Rum片区信息
|
|
@@ -1954,6 +2038,47 @@ export interface CreateStarProjectRequest {
|
|
|
1954
2038
|
*/
|
|
1955
2039
|
ID: number;
|
|
1956
2040
|
}
|
|
2041
|
+
/**
|
|
2042
|
+
* DescribeAppSingleCaseList请求参数结构体
|
|
2043
|
+
*/
|
|
2044
|
+
export interface DescribeAppSingleCaseListRequest {
|
|
2045
|
+
/**
|
|
2046
|
+
* app 项目 ID
|
|
2047
|
+
*/
|
|
2048
|
+
ProjectID: number;
|
|
2049
|
+
/**
|
|
2050
|
+
* 查询的表名
|
|
2051
|
+
*/
|
|
2052
|
+
From: string;
|
|
2053
|
+
/**
|
|
2054
|
+
* 查询指标 field
|
|
2055
|
+
*/
|
|
2056
|
+
Fields: string;
|
|
2057
|
+
/**
|
|
2058
|
+
* 查询的过滤条件
|
|
2059
|
+
*/
|
|
2060
|
+
Filter: string;
|
|
2061
|
+
/**
|
|
2062
|
+
* 查询简单过滤条件
|
|
2063
|
+
*/
|
|
2064
|
+
FilterSimple?: string;
|
|
2065
|
+
/**
|
|
2066
|
+
* group by 条件
|
|
2067
|
+
*/
|
|
2068
|
+
GroupBy?: Array<string>;
|
|
2069
|
+
/**
|
|
2070
|
+
* order by 条件
|
|
2071
|
+
*/
|
|
2072
|
+
OrderBy?: Array<string>;
|
|
2073
|
+
/**
|
|
2074
|
+
* limit 参数
|
|
2075
|
+
*/
|
|
2076
|
+
Limit?: number;
|
|
2077
|
+
/**
|
|
2078
|
+
* offset 参数
|
|
2079
|
+
*/
|
|
2080
|
+
Offset?: number;
|
|
2081
|
+
}
|
|
1957
2082
|
/**
|
|
1958
2083
|
* DescribeReleaseFileSign请求参数结构体
|
|
1959
2084
|
*/
|
|
@@ -2807,6 +2932,19 @@ export interface DescribeDataEventUrlRequest {
|
|
|
2807
2932
|
*/
|
|
2808
2933
|
Env?: string;
|
|
2809
2934
|
}
|
|
2935
|
+
/**
|
|
2936
|
+
* DescribeAppDimensionMetrics返回参数结构体
|
|
2937
|
+
*/
|
|
2938
|
+
export interface DescribeAppDimensionMetricsResponse {
|
|
2939
|
+
/**
|
|
2940
|
+
* 查询数据返回
|
|
2941
|
+
*/
|
|
2942
|
+
Data: string;
|
|
2943
|
+
/**
|
|
2944
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2945
|
+
*/
|
|
2946
|
+
RequestId?: string;
|
|
2947
|
+
}
|
|
2810
2948
|
/**
|
|
2811
2949
|
* DescribeOfflineLogConfigs请求参数结构体
|
|
2812
2950
|
*/
|
|
@@ -2816,6 +2954,47 @@ export interface DescribeOfflineLogConfigsRequest {
|
|
|
2816
2954
|
*/
|
|
2817
2955
|
ProjectKey: string;
|
|
2818
2956
|
}
|
|
2957
|
+
/**
|
|
2958
|
+
* DescribeAppSingleCaseDetailList请求参数结构体
|
|
2959
|
+
*/
|
|
2960
|
+
export interface DescribeAppSingleCaseDetailListRequest {
|
|
2961
|
+
/**
|
|
2962
|
+
* app 项目ID
|
|
2963
|
+
*/
|
|
2964
|
+
ProjectID: number;
|
|
2965
|
+
/**
|
|
2966
|
+
* 查询的表名
|
|
2967
|
+
*/
|
|
2968
|
+
From: string;
|
|
2969
|
+
/**
|
|
2970
|
+
* 查询指标 field
|
|
2971
|
+
*/
|
|
2972
|
+
Fields: string;
|
|
2973
|
+
/**
|
|
2974
|
+
* 查询的过滤条件
|
|
2975
|
+
*/
|
|
2976
|
+
Filter: string;
|
|
2977
|
+
/**
|
|
2978
|
+
* 查询简单过滤条件
|
|
2979
|
+
*/
|
|
2980
|
+
FilterSimple?: string;
|
|
2981
|
+
/**
|
|
2982
|
+
* group by 条件
|
|
2983
|
+
*/
|
|
2984
|
+
GroupBy?: Array<string>;
|
|
2985
|
+
/**
|
|
2986
|
+
* order by 条件
|
|
2987
|
+
*/
|
|
2988
|
+
OrderBy?: Array<string>;
|
|
2989
|
+
/**
|
|
2990
|
+
* limit 参数
|
|
2991
|
+
*/
|
|
2992
|
+
Limit?: number;
|
|
2993
|
+
/**
|
|
2994
|
+
* offset 参数
|
|
2995
|
+
*/
|
|
2996
|
+
Offset?: number;
|
|
2997
|
+
}
|
|
2819
2998
|
/**
|
|
2820
2999
|
* DescribeRumGroupLog请求参数结构体
|
|
2821
3000
|
*/
|
|
@@ -3519,6 +3698,51 @@ export interface DescribeDataSetUrlStatisticsResponse {
|
|
|
3519
3698
|
*/
|
|
3520
3699
|
RequestId?: string;
|
|
3521
3700
|
}
|
|
3701
|
+
/**
|
|
3702
|
+
* DescribeAppDimensionMetrics请求参数结构体
|
|
3703
|
+
*/
|
|
3704
|
+
export interface DescribeAppDimensionMetricsRequest {
|
|
3705
|
+
/**
|
|
3706
|
+
* app 项目ID
|
|
3707
|
+
*/
|
|
3708
|
+
ProjectID: number;
|
|
3709
|
+
/**
|
|
3710
|
+
* 查询的表名
|
|
3711
|
+
*/
|
|
3712
|
+
From: string;
|
|
3713
|
+
/**
|
|
3714
|
+
* 查询指标 fields
|
|
3715
|
+
*/
|
|
3716
|
+
Fields: string;
|
|
3717
|
+
/**
|
|
3718
|
+
* 查询的过滤条件
|
|
3719
|
+
*/
|
|
3720
|
+
Filter: string;
|
|
3721
|
+
/**
|
|
3722
|
+
* 查询简单过滤条件
|
|
3723
|
+
*/
|
|
3724
|
+
FilterSimple?: string;
|
|
3725
|
+
/**
|
|
3726
|
+
* group by 条件
|
|
3727
|
+
*/
|
|
3728
|
+
GroupBy?: Array<string>;
|
|
3729
|
+
/**
|
|
3730
|
+
* order by 条件
|
|
3731
|
+
*/
|
|
3732
|
+
OrderBy?: Array<string>;
|
|
3733
|
+
/**
|
|
3734
|
+
* limit 参数
|
|
3735
|
+
*/
|
|
3736
|
+
Limit?: number;
|
|
3737
|
+
/**
|
|
3738
|
+
* offset 参数
|
|
3739
|
+
*/
|
|
3740
|
+
Offset?: number;
|
|
3741
|
+
/**
|
|
3742
|
+
* 业务上下文参数
|
|
3743
|
+
*/
|
|
3744
|
+
BusinessContext?: string;
|
|
3745
|
+
}
|
|
3522
3746
|
/**
|
|
3523
3747
|
* Rum实例信息
|
|
3524
3748
|
*/
|