tencentcloud-sdk-rum 1.0.243 → 1.0.244

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec847895b16f31f41c4991ed938c526517e2a901
4
- data.tar.gz: 88d71a6fd26e4a7c7eee233013d16d6e8678c65b
3
+ metadata.gz: 1fe0a1c7d8a7193a85c87c02806d1989fb0de5d4
4
+ data.tar.gz: c1925f2cea4d734ba9bdd383a136baf666c2f668
5
5
  SHA512:
6
- metadata.gz: 0e3b2b5db22b70b0c6394b1e3bcad6c8cd637827ca3da0a0498fcc0d5d68299f28e7a6fe9934d335ef57d19735258ba38c30d1ebfaaffcd9551d54e75122df65
7
- data.tar.gz: ddab986ddf947c8b2a53496262fc1420c45cfeb40ef5037fa8846f709bbc82fd64c2aaeb11f9277802a3260799820e0e2b5a44c6beae51ba1909d12e588465f6
6
+ metadata.gz: d5617c05a0da9ab989e9c6e2dd4850509bd1984888568541159627d52996ad757c521875d25cea9dc28fb80d47862dcc273248a914f09df034a33187d1d811cd
7
+ data.tar.gz: 93c5dba5cddf8fd32f283fa02908610820967e53b8dea8ecb7b7a613fc612ea7ffce6d3ab140004c3ab1bdbb7a4b37d283901370a34f95350fbcd767babc63ef
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.243
1
+ 1.0.244
@@ -77,6 +77,54 @@ module TencentCloud
77
77
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
78
78
  end
79
79
 
80
+ # 获取DescribeDataFetchUrl信息
81
+
82
+ # @param request: Request instance for DescribeDataFetchUrl.
83
+ # @type request: :class:`Tencentcloud::rum::V20210622::DescribeDataFetchUrlRequest`
84
+ # @rtype: :class:`Tencentcloud::rum::V20210622::DescribeDataFetchUrlResponse`
85
+ def DescribeDataFetchUrl(request)
86
+ body = send_request('DescribeDataFetchUrl', request.serialize)
87
+ response = JSON.parse(body)
88
+ if response['Response'].key?('Error') == false
89
+ model = DescribeDataFetchUrlResponse.new
90
+ model.deserialize(response['Response'])
91
+ model
92
+ else
93
+ code = response['Response']['Error']['Code']
94
+ message = response['Response']['Error']['Message']
95
+ reqid = response['Response']['RequestId']
96
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
97
+ end
98
+ rescue TencentCloud::Common::TencentCloudSDKException => e
99
+ raise e
100
+ rescue StandardError => e
101
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
102
+ end
103
+
104
+ # 获取DescribeDataFetchUrlInfo信息
105
+
106
+ # @param request: Request instance for DescribeDataFetchUrlInfo.
107
+ # @type request: :class:`Tencentcloud::rum::V20210622::DescribeDataFetchUrlInfoRequest`
108
+ # @rtype: :class:`Tencentcloud::rum::V20210622::DescribeDataFetchUrlInfoResponse`
109
+ def DescribeDataFetchUrlInfo(request)
110
+ body = send_request('DescribeDataFetchUrlInfo', request.serialize)
111
+ response = JSON.parse(body)
112
+ if response['Response'].key?('Error') == false
113
+ model = DescribeDataFetchUrlInfoResponse.new
114
+ model.deserialize(response['Response'])
115
+ model
116
+ else
117
+ code = response['Response']['Error']['Code']
118
+ message = response['Response']['Error']['Message']
119
+ reqid = response['Response']['RequestId']
120
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
121
+ end
122
+ rescue TencentCloud::Common::TencentCloudSDKException => e
123
+ raise e
124
+ rescue StandardError => e
125
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
126
+ end
127
+
80
128
  # 获取LogUrlStatistics信息
81
129
 
82
130
  # @param request: Request instance for DescribeDataLogUrlStatistics.
@@ -205,6 +205,254 @@ module TencentCloud
205
205
  end
206
206
  end
207
207
 
208
+ # DescribeDataFetchUrlInfo请求参数结构体
209
+ class DescribeDataFetchUrlInfoRequest < TencentCloud::Common::AbstractModel
210
+ # @param StartTime: 开始时间
211
+ # @type StartTime: Integer
212
+ # @param Type: 类型
213
+ # @type Type: String
214
+ # @param EndTime: 结束时间
215
+ # @type EndTime: Integer
216
+ # @param ID: 项目ID
217
+ # @type ID: Integer
218
+ # @param ExtSecond: 自定义2
219
+ # @type ExtSecond: String
220
+ # @param Engine: 浏览器引擎
221
+ # @type Engine: String
222
+ # @param Isp: 运营商
223
+ # @type Isp: String
224
+ # @param From: 来源页面
225
+ # @type From: String
226
+ # @param Level: 日志等级
227
+ # @type Level: String
228
+ # @param Brand: 品牌
229
+ # @type Brand: String
230
+ # @param Area: 地区
231
+ # @type Area: String
232
+ # @param VersionNum: 版本
233
+ # @type VersionNum: String
234
+ # @param Platform: 平台
235
+ # @type Platform: String
236
+ # @param ExtThird: 自定义3
237
+ # @type ExtThird: String
238
+ # @param ExtFirst: 自定义1
239
+ # @type ExtFirst: String
240
+ # @param NetType: 网络类型
241
+ # @type NetType: String
242
+ # @param Device: 机型
243
+ # @type Device: String
244
+ # @param IsAbroad: 是否海外
245
+ # @type IsAbroad: String
246
+ # @param Os: 操作系统
247
+ # @type Os: String
248
+ # @param Browser: 浏览器
249
+ # @type Browser: String
250
+ # @param CostType: 耗时计算方式
251
+ # @type CostType: String
252
+ # @param Url: 来源
253
+ # @type Url: String
254
+ # @param Env: 环境
255
+ # @type Env: String
256
+
257
+ attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
258
+
259
+ 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, costtype=nil, url=nil, env=nil)
260
+ @StartTime = starttime
261
+ @Type = type
262
+ @EndTime = endtime
263
+ @ID = id
264
+ @ExtSecond = extsecond
265
+ @Engine = engine
266
+ @Isp = isp
267
+ @From = from
268
+ @Level = level
269
+ @Brand = brand
270
+ @Area = area
271
+ @VersionNum = versionnum
272
+ @Platform = platform
273
+ @ExtThird = extthird
274
+ @ExtFirst = extfirst
275
+ @NetType = nettype
276
+ @Device = device
277
+ @IsAbroad = isabroad
278
+ @Os = os
279
+ @Browser = browser
280
+ @CostType = costtype
281
+ @Url = url
282
+ @Env = env
283
+ end
284
+
285
+ def deserialize(params)
286
+ @StartTime = params['StartTime']
287
+ @Type = params['Type']
288
+ @EndTime = params['EndTime']
289
+ @ID = params['ID']
290
+ @ExtSecond = params['ExtSecond']
291
+ @Engine = params['Engine']
292
+ @Isp = params['Isp']
293
+ @From = params['From']
294
+ @Level = params['Level']
295
+ @Brand = params['Brand']
296
+ @Area = params['Area']
297
+ @VersionNum = params['VersionNum']
298
+ @Platform = params['Platform']
299
+ @ExtThird = params['ExtThird']
300
+ @ExtFirst = params['ExtFirst']
301
+ @NetType = params['NetType']
302
+ @Device = params['Device']
303
+ @IsAbroad = params['IsAbroad']
304
+ @Os = params['Os']
305
+ @Browser = params['Browser']
306
+ @CostType = params['CostType']
307
+ @Url = params['Url']
308
+ @Env = params['Env']
309
+ end
310
+ end
311
+
312
+ # DescribeDataFetchUrlInfo返回参数结构体
313
+ class DescribeDataFetchUrlInfoResponse < TencentCloud::Common::AbstractModel
314
+ # @param Result: 返回值
315
+ # @type Result: String
316
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
317
+ # @type RequestId: String
318
+
319
+ attr_accessor :Result, :RequestId
320
+
321
+ def initialize(result=nil, requestid=nil)
322
+ @Result = result
323
+ @RequestId = requestid
324
+ end
325
+
326
+ def deserialize(params)
327
+ @Result = params['Result']
328
+ @RequestId = params['RequestId']
329
+ end
330
+ end
331
+
332
+ # DescribeDataFetchUrl请求参数结构体
333
+ class DescribeDataFetchUrlRequest < TencentCloud::Common::AbstractModel
334
+ # @param StartTime: 开始时间
335
+ # @type StartTime: Integer
336
+ # @param Type: 类型
337
+ # @type Type: String
338
+ # @param EndTime: 结束时间
339
+ # @type EndTime: Integer
340
+ # @param ID: 项目ID
341
+ # @type ID: Integer
342
+ # @param ExtSecond: 自定义2
343
+ # @type ExtSecond: String
344
+ # @param Engine: 浏览器引擎
345
+ # @type Engine: String
346
+ # @param Isp: 运营商
347
+ # @type Isp: String
348
+ # @param From: 来源页面
349
+ # @type From: String
350
+ # @param Level: 日志等级
351
+ # @type Level: String
352
+ # @param Brand: 品牌
353
+ # @type Brand: String
354
+ # @param Area: 地区
355
+ # @type Area: String
356
+ # @param VersionNum: 版本
357
+ # @type VersionNum: String
358
+ # @param Platform: 平台
359
+ # @type Platform: String
360
+ # @param ExtThird: 自定义3
361
+ # @type ExtThird: String
362
+ # @param ExtFirst: 自定义1
363
+ # @type ExtFirst: String
364
+ # @param NetType: 网络类型
365
+ # @type NetType: String
366
+ # @param Device: 机型
367
+ # @type Device: String
368
+ # @param IsAbroad: 是否海外
369
+ # @type IsAbroad: String
370
+ # @param Os: 操作系统
371
+ # @type Os: String
372
+ # @param Browser: 浏览器
373
+ # @type Browser: String
374
+ # @param CostType: 耗时计算方式
375
+ # @type CostType: String
376
+ # @param Url: 来源
377
+ # @type Url: String
378
+ # @param Env: 环境
379
+ # @type Env: String
380
+
381
+ attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
382
+
383
+ 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, costtype=nil, url=nil, env=nil)
384
+ @StartTime = starttime
385
+ @Type = type
386
+ @EndTime = endtime
387
+ @ID = id
388
+ @ExtSecond = extsecond
389
+ @Engine = engine
390
+ @Isp = isp
391
+ @From = from
392
+ @Level = level
393
+ @Brand = brand
394
+ @Area = area
395
+ @VersionNum = versionnum
396
+ @Platform = platform
397
+ @ExtThird = extthird
398
+ @ExtFirst = extfirst
399
+ @NetType = nettype
400
+ @Device = device
401
+ @IsAbroad = isabroad
402
+ @Os = os
403
+ @Browser = browser
404
+ @CostType = costtype
405
+ @Url = url
406
+ @Env = env
407
+ end
408
+
409
+ def deserialize(params)
410
+ @StartTime = params['StartTime']
411
+ @Type = params['Type']
412
+ @EndTime = params['EndTime']
413
+ @ID = params['ID']
414
+ @ExtSecond = params['ExtSecond']
415
+ @Engine = params['Engine']
416
+ @Isp = params['Isp']
417
+ @From = params['From']
418
+ @Level = params['Level']
419
+ @Brand = params['Brand']
420
+ @Area = params['Area']
421
+ @VersionNum = params['VersionNum']
422
+ @Platform = params['Platform']
423
+ @ExtThird = params['ExtThird']
424
+ @ExtFirst = params['ExtFirst']
425
+ @NetType = params['NetType']
426
+ @Device = params['Device']
427
+ @IsAbroad = params['IsAbroad']
428
+ @Os = params['Os']
429
+ @Browser = params['Browser']
430
+ @CostType = params['CostType']
431
+ @Url = params['Url']
432
+ @Env = params['Env']
433
+ end
434
+ end
435
+
436
+ # DescribeDataFetchUrl返回参数结构体
437
+ class DescribeDataFetchUrlResponse < TencentCloud::Common::AbstractModel
438
+ # @param Result: 返回值
439
+ # @type Result: String
440
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
441
+ # @type RequestId: String
442
+
443
+ attr_accessor :Result, :RequestId
444
+
445
+ def initialize(result=nil, requestid=nil)
446
+ @Result = result
447
+ @RequestId = requestid
448
+ end
449
+
450
+ def deserialize(params)
451
+ @Result = params['Result']
452
+ @RequestId = params['RequestId']
453
+ end
454
+ end
455
+
208
456
  # DescribeDataLogUrlStatistics请求参数结构体
209
457
  class DescribeDataLogUrlStatisticsRequest < TencentCloud::Common::AbstractModel
210
458
  # @param StartTime: 开始时间
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.243
4
+ version: 1.0.244
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-17 00:00:00.000000000 Z
11
+ date: 2022-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common