tencentcloud-sdk-rum 1.0.219 → 1.0.223
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210622/client.rb +48 -0
- data/lib/v20210622/models.rb +248 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 925738c4a347c1add887b663b196ccb6e4f57f64
|
4
|
+
data.tar.gz: 221b7d8fc880826efda77179a93a11d3616c54a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ca91f82c3854565a23285f5cc0d7b86188cf90f80368f44845cdd537e771842cb30b9bcf49b482061ab21038445ca81d6574d5c30d00c2ff96311051042cc3a
|
7
|
+
data.tar.gz: 9ec8d751c1064ec1794eaecd69a7daa8412d6406744b1f4b7f5a66df1322be31e4cff66bfa6993b6ca3ff2c6b28b758949da83e016aad4b6028c96b7498f9dbc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.223
|
data/lib/v20210622/client.rb
CHANGED
@@ -53,6 +53,30 @@ module TencentCloud
|
|
53
53
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
54
|
end
|
55
55
|
|
56
|
+
# 获取DescribeDataEventUrl信息
|
57
|
+
|
58
|
+
# @param request: Request instance for DescribeDataEventUrl.
|
59
|
+
# @type request: :class:`Tencentcloud::rum::V20210622::DescribeDataEventUrlRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::rum::V20210622::DescribeDataEventUrlResponse`
|
61
|
+
def DescribeDataEventUrl(request)
|
62
|
+
body = send_request('DescribeDataEventUrl', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = DescribeDataEventUrlResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
56
80
|
# 获取LogUrlStatistics信息
|
57
81
|
|
58
82
|
# @param request: Request instance for DescribeDataLogUrlStatistics.
|
@@ -101,6 +125,30 @@ module TencentCloud
|
|
101
125
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
126
|
end
|
103
127
|
|
128
|
+
# 获取DescribeDataPvUrlStatistics信息
|
129
|
+
|
130
|
+
# @param request: Request instance for DescribeDataPvUrlStatistics.
|
131
|
+
# @type request: :class:`Tencentcloud::rum::V20210622::DescribeDataPvUrlStatisticsRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::rum::V20210622::DescribeDataPvUrlStatisticsResponse`
|
133
|
+
def DescribeDataPvUrlStatistics(request)
|
134
|
+
body = send_request('DescribeDataPvUrlStatistics', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = DescribeDataPvUrlStatisticsResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
104
152
|
# 获取首页错误信息
|
105
153
|
|
106
154
|
# @param request: Request instance for DescribeError.
|
data/lib/v20210622/models.rb
CHANGED
@@ -85,6 +85,126 @@ module TencentCloud
|
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
88
|
+
# DescribeDataEventUrl请求参数结构体
|
89
|
+
class DescribeDataEventUrlRequest < TencentCloud::Common::AbstractModel
|
90
|
+
# @param StartTime: 开始时间
|
91
|
+
# @type StartTime: Integer
|
92
|
+
# @param Type: 类型
|
93
|
+
# @type Type: String
|
94
|
+
# @param EndTime: 结束时间
|
95
|
+
# @type EndTime: Integer
|
96
|
+
# @param ID: 项目ID
|
97
|
+
# @type ID: Integer
|
98
|
+
# @param ExtSecond: 自定义2
|
99
|
+
# @type ExtSecond: String
|
100
|
+
# @param Engine: 浏览器引擎
|
101
|
+
# @type Engine: String
|
102
|
+
# @param Isp: 运营商
|
103
|
+
# @type Isp: String
|
104
|
+
# @param From: 来源页面
|
105
|
+
# @type From: String
|
106
|
+
# @param Level: 日志等级
|
107
|
+
# @type Level: String
|
108
|
+
# @param Brand: 品牌
|
109
|
+
# @type Brand: String
|
110
|
+
# @param Area: 地区
|
111
|
+
# @type Area: String
|
112
|
+
# @param VersionNum: 版本
|
113
|
+
# @type VersionNum: String
|
114
|
+
# @param Platform: 平台
|
115
|
+
# @type Platform: String
|
116
|
+
# @param ExtThird: 自定义3
|
117
|
+
# @type ExtThird: String
|
118
|
+
# @param ExtFirst: 自定义1
|
119
|
+
# @type ExtFirst: String
|
120
|
+
# @param NetType: 网络类型
|
121
|
+
# @type NetType: String
|
122
|
+
# @param Device: 机型
|
123
|
+
# @type Device: String
|
124
|
+
# @param IsAbroad: 是否海外
|
125
|
+
# @type IsAbroad: String
|
126
|
+
# @param Os: 操作系统
|
127
|
+
# @type Os: String
|
128
|
+
# @param Browser: 浏览器
|
129
|
+
# @type Browser: String
|
130
|
+
# @param Name: 筛选条件
|
131
|
+
# @type Name: String
|
132
|
+
# @param Env: 环境
|
133
|
+
# @type Env: String
|
134
|
+
|
135
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Name, :Env
|
136
|
+
|
137
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, name=nil, env=nil)
|
138
|
+
@StartTime = starttime
|
139
|
+
@Type = type
|
140
|
+
@EndTime = endtime
|
141
|
+
@ID = id
|
142
|
+
@ExtSecond = extsecond
|
143
|
+
@Engine = engine
|
144
|
+
@Isp = isp
|
145
|
+
@From = from
|
146
|
+
@Level = level
|
147
|
+
@Brand = brand
|
148
|
+
@Area = area
|
149
|
+
@VersionNum = versionnum
|
150
|
+
@Platform = platform
|
151
|
+
@ExtThird = extthird
|
152
|
+
@ExtFirst = extfirst
|
153
|
+
@NetType = nettype
|
154
|
+
@Device = device
|
155
|
+
@IsAbroad = isabroad
|
156
|
+
@Os = os
|
157
|
+
@Browser = browser
|
158
|
+
@Name = name
|
159
|
+
@Env = env
|
160
|
+
end
|
161
|
+
|
162
|
+
def deserialize(params)
|
163
|
+
@StartTime = params['StartTime']
|
164
|
+
@Type = params['Type']
|
165
|
+
@EndTime = params['EndTime']
|
166
|
+
@ID = params['ID']
|
167
|
+
@ExtSecond = params['ExtSecond']
|
168
|
+
@Engine = params['Engine']
|
169
|
+
@Isp = params['Isp']
|
170
|
+
@From = params['From']
|
171
|
+
@Level = params['Level']
|
172
|
+
@Brand = params['Brand']
|
173
|
+
@Area = params['Area']
|
174
|
+
@VersionNum = params['VersionNum']
|
175
|
+
@Platform = params['Platform']
|
176
|
+
@ExtThird = params['ExtThird']
|
177
|
+
@ExtFirst = params['ExtFirst']
|
178
|
+
@NetType = params['NetType']
|
179
|
+
@Device = params['Device']
|
180
|
+
@IsAbroad = params['IsAbroad']
|
181
|
+
@Os = params['Os']
|
182
|
+
@Browser = params['Browser']
|
183
|
+
@Name = params['Name']
|
184
|
+
@Env = params['Env']
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
# DescribeDataEventUrl返回参数结构体
|
189
|
+
class DescribeDataEventUrlResponse < TencentCloud::Common::AbstractModel
|
190
|
+
# @param Result: 返回值
|
191
|
+
# @type Result: String
|
192
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
193
|
+
# @type RequestId: String
|
194
|
+
|
195
|
+
attr_accessor :Result, :RequestId
|
196
|
+
|
197
|
+
def initialize(result=nil, requestid=nil)
|
198
|
+
@Result = result
|
199
|
+
@RequestId = requestid
|
200
|
+
end
|
201
|
+
|
202
|
+
def deserialize(params)
|
203
|
+
@Result = params['Result']
|
204
|
+
@RequestId = params['RequestId']
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
88
208
|
# DescribeDataLogUrlStatistics请求参数结构体
|
89
209
|
class DescribeDataLogUrlStatisticsRequest < TencentCloud::Common::AbstractModel
|
90
210
|
# @param StartTime: 开始时间
|
@@ -127,10 +247,12 @@ module TencentCloud
|
|
127
247
|
# @type Os: String
|
128
248
|
# @param Browser: 浏览器
|
129
249
|
# @type Browser: String
|
250
|
+
# @param Env: 环境区分
|
251
|
+
# @type Env: String
|
130
252
|
|
131
|
-
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser
|
253
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
|
132
254
|
|
133
|
-
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil)
|
255
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, env=nil)
|
134
256
|
@StartTime = starttime
|
135
257
|
@Type = type
|
136
258
|
@EndTime = endtime
|
@@ -151,6 +273,7 @@ module TencentCloud
|
|
151
273
|
@IsAbroad = isabroad
|
152
274
|
@Os = os
|
153
275
|
@Browser = browser
|
276
|
+
@Env = env
|
154
277
|
end
|
155
278
|
|
156
279
|
def deserialize(params)
|
@@ -174,6 +297,7 @@ module TencentCloud
|
|
174
297
|
@IsAbroad = params['IsAbroad']
|
175
298
|
@Os = params['Os']
|
176
299
|
@Browser = params['Browser']
|
300
|
+
@Env = params['Env']
|
177
301
|
end
|
178
302
|
end
|
179
303
|
|
@@ -241,10 +365,12 @@ module TencentCloud
|
|
241
365
|
# @type From: String
|
242
366
|
# @param CostType: 耗时计算方式
|
243
367
|
# @type CostType: String
|
368
|
+
# @param Env: 环境变量
|
369
|
+
# @type Env: String
|
244
370
|
|
245
|
-
attr_accessor :ID, :StartTime, :EndTime, :Type, :Level, :Isp, :Area, :NetType, :Platform, :Device, :VersionNum, :ExtFirst, :ExtSecond, :ExtThird, :IsAbroad, :Browser, :Os, :Engine, :Brand, :From, :CostType
|
371
|
+
attr_accessor :ID, :StartTime, :EndTime, :Type, :Level, :Isp, :Area, :NetType, :Platform, :Device, :VersionNum, :ExtFirst, :ExtSecond, :ExtThird, :IsAbroad, :Browser, :Os, :Engine, :Brand, :From, :CostType, :Env
|
246
372
|
|
247
|
-
def initialize(id=nil, starttime=nil, endtime=nil, type=nil, level=nil, isp=nil, area=nil, nettype=nil, platform=nil, device=nil, versionnum=nil, extfirst=nil, extsecond=nil, extthird=nil, isabroad=nil, browser=nil, os=nil, engine=nil, brand=nil, from=nil, costtype=nil)
|
373
|
+
def initialize(id=nil, starttime=nil, endtime=nil, type=nil, level=nil, isp=nil, area=nil, nettype=nil, platform=nil, device=nil, versionnum=nil, extfirst=nil, extsecond=nil, extthird=nil, isabroad=nil, browser=nil, os=nil, engine=nil, brand=nil, from=nil, costtype=nil, env=nil)
|
248
374
|
@ID = id
|
249
375
|
@StartTime = starttime
|
250
376
|
@EndTime = endtime
|
@@ -266,6 +392,7 @@ module TencentCloud
|
|
266
392
|
@Brand = brand
|
267
393
|
@From = from
|
268
394
|
@CostType = costtype
|
395
|
+
@Env = env
|
269
396
|
end
|
270
397
|
|
271
398
|
def deserialize(params)
|
@@ -290,6 +417,7 @@ module TencentCloud
|
|
290
417
|
@Brand = params['Brand']
|
291
418
|
@From = params['From']
|
292
419
|
@CostType = params['CostType']
|
420
|
+
@Env = params['Env']
|
293
421
|
end
|
294
422
|
end
|
295
423
|
|
@@ -313,6 +441,122 @@ module TencentCloud
|
|
313
441
|
end
|
314
442
|
end
|
315
443
|
|
444
|
+
# DescribeDataPvUrlStatistics请求参数结构体
|
445
|
+
class DescribeDataPvUrlStatisticsRequest < TencentCloud::Common::AbstractModel
|
446
|
+
# @param StartTime: 开始时间
|
447
|
+
# @type StartTime: Integer
|
448
|
+
# @param Type: 类型:"allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
449
|
+
# @type Type: String
|
450
|
+
# @param EndTime: 结束时间
|
451
|
+
# @type EndTime: Integer
|
452
|
+
# @param ID: 项目ID
|
453
|
+
# @type ID: Integer
|
454
|
+
# @param ExtSecond: 自定义2
|
455
|
+
# @type ExtSecond: String
|
456
|
+
# @param Engine: 浏览器引擎
|
457
|
+
# @type Engine: String
|
458
|
+
# @param Isp: 运营商
|
459
|
+
# @type Isp: String
|
460
|
+
# @param From: 来源页面
|
461
|
+
# @type From: String
|
462
|
+
# @param Level: 日志等级
|
463
|
+
# @type Level: String
|
464
|
+
# @param Brand: 品牌
|
465
|
+
# @type Brand: String
|
466
|
+
# @param Area: 地区
|
467
|
+
# @type Area: String
|
468
|
+
# @param VersionNum: 版本
|
469
|
+
# @type VersionNum: String
|
470
|
+
# @param Platform: 平台
|
471
|
+
# @type Platform: String
|
472
|
+
# @param ExtThird: 自定义3
|
473
|
+
# @type ExtThird: String
|
474
|
+
# @param ExtFirst: 自定义1
|
475
|
+
# @type ExtFirst: String
|
476
|
+
# @param NetType: 网络类型
|
477
|
+
# @type NetType: String
|
478
|
+
# @param Device: 机型
|
479
|
+
# @type Device: String
|
480
|
+
# @param IsAbroad: 是否海外
|
481
|
+
# @type IsAbroad: String
|
482
|
+
# @param Os: 操作系统
|
483
|
+
# @type Os: String
|
484
|
+
# @param Browser: 浏览器
|
485
|
+
# @type Browser: String
|
486
|
+
# @param Env: 环境
|
487
|
+
# @type Env: String
|
488
|
+
|
489
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
|
490
|
+
|
491
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, env=nil)
|
492
|
+
@StartTime = starttime
|
493
|
+
@Type = type
|
494
|
+
@EndTime = endtime
|
495
|
+
@ID = id
|
496
|
+
@ExtSecond = extsecond
|
497
|
+
@Engine = engine
|
498
|
+
@Isp = isp
|
499
|
+
@From = from
|
500
|
+
@Level = level
|
501
|
+
@Brand = brand
|
502
|
+
@Area = area
|
503
|
+
@VersionNum = versionnum
|
504
|
+
@Platform = platform
|
505
|
+
@ExtThird = extthird
|
506
|
+
@ExtFirst = extfirst
|
507
|
+
@NetType = nettype
|
508
|
+
@Device = device
|
509
|
+
@IsAbroad = isabroad
|
510
|
+
@Os = os
|
511
|
+
@Browser = browser
|
512
|
+
@Env = env
|
513
|
+
end
|
514
|
+
|
515
|
+
def deserialize(params)
|
516
|
+
@StartTime = params['StartTime']
|
517
|
+
@Type = params['Type']
|
518
|
+
@EndTime = params['EndTime']
|
519
|
+
@ID = params['ID']
|
520
|
+
@ExtSecond = params['ExtSecond']
|
521
|
+
@Engine = params['Engine']
|
522
|
+
@Isp = params['Isp']
|
523
|
+
@From = params['From']
|
524
|
+
@Level = params['Level']
|
525
|
+
@Brand = params['Brand']
|
526
|
+
@Area = params['Area']
|
527
|
+
@VersionNum = params['VersionNum']
|
528
|
+
@Platform = params['Platform']
|
529
|
+
@ExtThird = params['ExtThird']
|
530
|
+
@ExtFirst = params['ExtFirst']
|
531
|
+
@NetType = params['NetType']
|
532
|
+
@Device = params['Device']
|
533
|
+
@IsAbroad = params['IsAbroad']
|
534
|
+
@Os = params['Os']
|
535
|
+
@Browser = params['Browser']
|
536
|
+
@Env = params['Env']
|
537
|
+
end
|
538
|
+
end
|
539
|
+
|
540
|
+
# DescribeDataPvUrlStatistics返回参数结构体
|
541
|
+
class DescribeDataPvUrlStatisticsResponse < TencentCloud::Common::AbstractModel
|
542
|
+
# @param Result: 返回值
|
543
|
+
# @type Result: String
|
544
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
545
|
+
# @type RequestId: String
|
546
|
+
|
547
|
+
attr_accessor :Result, :RequestId
|
548
|
+
|
549
|
+
def initialize(result=nil, requestid=nil)
|
550
|
+
@Result = result
|
551
|
+
@RequestId = requestid
|
552
|
+
end
|
553
|
+
|
554
|
+
def deserialize(params)
|
555
|
+
@Result = params['Result']
|
556
|
+
@RequestId = params['RequestId']
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
316
560
|
# DescribeError请求参数结构体
|
317
561
|
class DescribeErrorRequest < TencentCloud::Common::AbstractModel
|
318
562
|
# @param Date: 日期
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-rum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.223
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|