tencentcloud-sdk-rum 1.0.220 → 1.0.224
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/models.rb +24 -8
- 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: ce1cabd30cbecc91c632eae3fcea620da99ba64f
|
4
|
+
data.tar.gz: a6a78ae6814de6f01f93bdd98c8fca8d48e78dda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf6afd35d965f9ec8939f9df8d1616ee0e9eb43d2454cc6f6756dc40ded52ec5a02e5fb3a23cf19dba0e607981274e66e6080aae00d27cf1cf3a7c0dfd0ba999
|
7
|
+
data.tar.gz: a2bd281cb923376c755090d432bcb76d574660a78b629007056a2539d275fb3f757156bcbc09e7e59bb60d4790278575e0d6101c3800f4adaff76820900189aa
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.224
|
data/lib/v20210622/models.rb
CHANGED
@@ -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
|
|
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.224
|
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-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|