tencentcloud-sdk-rum 1.0.222 → 1.0.226

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210622/models.rb +28 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4876f0c896fde5c8ccdeb9ca0030fb594be255e4
4
- data.tar.gz: d361c073fbedac44e85fd2c833a606bd7d445a8e
3
+ metadata.gz: a62bdd3db621939e33c6cc7cb863b21a5c7bb966
4
+ data.tar.gz: a5af512aee6e461639f6b4eb47d70578ce263cad
5
5
  SHA512:
6
- metadata.gz: 470fb777f3ae94eb3763e2a197f6d9df71923eece3ceb8d0673209a6912a97f4e718395daaa912019a0493f69aeb5370b97a2591eb295f2cb967142e2c6fb31a
7
- data.tar.gz: 8ed4fbc13e1f76e9f8bd4db8bf2f1f93bce81de72fc7cde9b01a593814ffe0685c8628cc774a581afb481893137f1d58ef2d5084bce365694153efeff2ccb88d
6
+ metadata.gz: da703c66bb2640d7b0faebc51bb9783af64b360d54c7fefb43120b3da17aba81365c0512157d1f813e1872108d4491ca0ef2d4c6b1218ed6e3b370572724c41b
7
+ data.tar.gz: 31b2e6f66b196cbd5a2ca36d37057560b1036dc0f93f8a27e35c226c19a180d14c82b44b74b3c10dd75eaa088f6453a69a8a6105d889ea28065d5e177ae2ad92
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.222
1
+ 1.0.226
@@ -129,10 +129,12 @@ module TencentCloud
129
129
  # @type Browser: String
130
130
  # @param Name: 筛选条件
131
131
  # @type Name: String
132
+ # @param Env: 环境
133
+ # @type Env: String
132
134
 
133
- attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Name
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
134
136
 
135
- 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)
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)
136
138
  @StartTime = starttime
137
139
  @Type = type
138
140
  @EndTime = endtime
@@ -154,6 +156,7 @@ module TencentCloud
154
156
  @Os = os
155
157
  @Browser = browser
156
158
  @Name = name
159
+ @Env = env
157
160
  end
158
161
 
159
162
  def deserialize(params)
@@ -178,6 +181,7 @@ module TencentCloud
178
181
  @Os = params['Os']
179
182
  @Browser = params['Browser']
180
183
  @Name = params['Name']
184
+ @Env = params['Env']
181
185
  end
182
186
  end
183
187
 
@@ -243,10 +247,12 @@ module TencentCloud
243
247
  # @type Os: String
244
248
  # @param Browser: 浏览器
245
249
  # @type Browser: String
250
+ # @param Env: 环境区分
251
+ # @type Env: String
246
252
 
247
- 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
248
254
 
249
- 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)
250
256
  @StartTime = starttime
251
257
  @Type = type
252
258
  @EndTime = endtime
@@ -267,6 +273,7 @@ module TencentCloud
267
273
  @IsAbroad = isabroad
268
274
  @Os = os
269
275
  @Browser = browser
276
+ @Env = env
270
277
  end
271
278
 
272
279
  def deserialize(params)
@@ -290,6 +297,7 @@ module TencentCloud
290
297
  @IsAbroad = params['IsAbroad']
291
298
  @Os = params['Os']
292
299
  @Browser = params['Browser']
300
+ @Env = params['Env']
293
301
  end
294
302
  end
295
303
 
@@ -357,10 +365,12 @@ module TencentCloud
357
365
  # @type From: String
358
366
  # @param CostType: 耗时计算方式
359
367
  # @type CostType: String
368
+ # @param Env: 环境变量
369
+ # @type Env: String
360
370
 
361
- 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
362
372
 
363
- 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)
364
374
  @ID = id
365
375
  @StartTime = starttime
366
376
  @EndTime = endtime
@@ -382,6 +392,7 @@ module TencentCloud
382
392
  @Brand = brand
383
393
  @From = from
384
394
  @CostType = costtype
395
+ @Env = env
385
396
  end
386
397
 
387
398
  def deserialize(params)
@@ -406,6 +417,7 @@ module TencentCloud
406
417
  @Brand = params['Brand']
407
418
  @From = params['From']
408
419
  @CostType = params['CostType']
420
+ @Env = params['Env']
409
421
  end
410
422
  end
411
423
 
@@ -471,10 +483,12 @@ module TencentCloud
471
483
  # @type Os: String
472
484
  # @param Browser: 浏览器
473
485
  # @type Browser: String
486
+ # @param Env: 环境
487
+ # @type Env: String
474
488
 
475
- attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser
489
+ attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
476
490
 
477
- 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)
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)
478
492
  @StartTime = starttime
479
493
  @Type = type
480
494
  @EndTime = endtime
@@ -495,6 +509,7 @@ module TencentCloud
495
509
  @IsAbroad = isabroad
496
510
  @Os = os
497
511
  @Browser = browser
512
+ @Env = env
498
513
  end
499
514
 
500
515
  def deserialize(params)
@@ -518,6 +533,7 @@ module TencentCloud
518
533
  @IsAbroad = params['IsAbroad']
519
534
  @Os = params['Os']
520
535
  @Browser = params['Browser']
536
+ @Env = params['Env']
521
537
  end
522
538
  end
523
539
 
@@ -593,17 +609,17 @@ module TencentCloud
593
609
  class DescribeLogListRequest < TencentCloud::Common::AbstractModel
594
610
  # @param Sort: 排序方式 desc asc
595
611
  # @type Sort: String
596
- # @param ActionType: searchlog histogram
612
+ # @param ActionType: searchlog histogram
597
613
  # @type ActionType: String
598
614
  # @param ID: 项目ID
599
615
  # @type ID: Integer
600
616
  # @param StartTime: 开始时间
601
617
  # @type StartTime: String
602
- # @param Limit: 限制
618
+ # @param Limit: 单次查询返回的原始日志条数,最大值为100
603
619
  # @type Limit: Integer
604
- # @param Context: 上下文
620
+ # @param Context: 上下文,加载更多日志时使用,透传上次返回的 Context 值,获取后续的日志内容,总计最多可获取1万条原始日志。过期时间1小时
605
621
  # @type Context: String
606
- # @param Query: 查询语句
622
+ # @param Query: 查询语句,语句长度最大为4096
607
623
  # @type Query: String
608
624
  # @param EndTime: 结束时间
609
625
  # @type EndTime: String
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.222
4
+ version: 1.0.226
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-13 00:00:00.000000000 Z
11
+ date: 2021-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common