tencentcloud-sdk-cdn 1.0.225 → 1.0.226
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180606/models.rb +13 -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: 396091cad5af3aacad7be0a60338b30ff10db411
|
4
|
+
data.tar.gz: ff7482cef349c351c22044c42e9c4fb277e2a693
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bb7f4eb673c9a6d6e6a06db81e59e0401cf9dbcc13d235a0e88667d8f11d8bb8d01fc0bfffbdc39053c90c9068791e4a934c7ee641f053f99e0d224064da38a
|
7
|
+
data.tar.gz: 276c829b170384739a28f857004dd70fa50a11bc903b66cdb765b3241e561dd83cb6401bda39b1bee4f8fe1dac3c3a7e9818b3a59bbe42c6fcd3908527466a31
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.226
|
data/lib/v20180606/models.rb
CHANGED
@@ -1652,10 +1652,13 @@ module TencentCloud
|
|
1652
1652
|
# @type TcbDetail: String
|
1653
1653
|
# @param Id: BOT记录唯一ID,用于查询访问详情
|
1654
1654
|
# @type Id: String
|
1655
|
+
# @param Domain: 域名
|
1656
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1657
|
+
# @type Domain: String
|
1655
1658
|
|
1656
|
-
attr_accessor :Action, :Nums, :RuleName, :SessionDuration, :SrcIp, :BotFeature, :Time, :Score, :AvgSpeed, :TcbDetail, :Id
|
1659
|
+
attr_accessor :Action, :Nums, :RuleName, :SessionDuration, :SrcIp, :BotFeature, :Time, :Score, :AvgSpeed, :TcbDetail, :Id, :Domain
|
1657
1660
|
|
1658
|
-
def initialize(action=nil, nums=nil, rulename=nil, sessionduration=nil, srcip=nil, botfeature=nil, time=nil, score=nil, avgspeed=nil, tcbdetail=nil, id=nil)
|
1661
|
+
def initialize(action=nil, nums=nil, rulename=nil, sessionduration=nil, srcip=nil, botfeature=nil, time=nil, score=nil, avgspeed=nil, tcbdetail=nil, id=nil, domain=nil)
|
1659
1662
|
@Action = action
|
1660
1663
|
@Nums = nums
|
1661
1664
|
@RuleName = rulename
|
@@ -1667,6 +1670,7 @@ module TencentCloud
|
|
1667
1670
|
@AvgSpeed = avgspeed
|
1668
1671
|
@TcbDetail = tcbdetail
|
1669
1672
|
@Id = id
|
1673
|
+
@Domain = domain
|
1670
1674
|
end
|
1671
1675
|
|
1672
1676
|
def deserialize(params)
|
@@ -1681,6 +1685,7 @@ module TencentCloud
|
|
1681
1685
|
@AvgSpeed = params['AvgSpeed']
|
1682
1686
|
@TcbDetail = params['TcbDetail']
|
1683
1687
|
@Id = params['Id']
|
1688
|
+
@Domain = params['Domain']
|
1684
1689
|
end
|
1685
1690
|
end
|
1686
1691
|
|
@@ -5208,10 +5213,12 @@ module TencentCloud
|
|
5208
5213
|
# @type FilterAction: String
|
5209
5214
|
# @param FilterIp: 过滤的IP
|
5210
5215
|
# @type FilterIp: String
|
5216
|
+
# @param Domains: 域名列表,为空表示查询AppID维度数据
|
5217
|
+
# @type Domains: Array
|
5211
5218
|
|
5212
|
-
attr_accessor :BotType, :Domain, :StartTime, :EndTime, :Offset, :Limit, :Area, :SortBy, :FilterName, :FilterAction, :FilterIp
|
5219
|
+
attr_accessor :BotType, :Domain, :StartTime, :EndTime, :Offset, :Limit, :Area, :SortBy, :FilterName, :FilterAction, :FilterIp, :Domains
|
5213
5220
|
|
5214
|
-
def initialize(bottype=nil, domain=nil, starttime=nil, endtime=nil, offset=nil, limit=nil, area=nil, sortby=nil, filtername=nil, filteraction=nil, filterip=nil)
|
5221
|
+
def initialize(bottype=nil, domain=nil, starttime=nil, endtime=nil, offset=nil, limit=nil, area=nil, sortby=nil, filtername=nil, filteraction=nil, filterip=nil, domains=nil)
|
5215
5222
|
@BotType = bottype
|
5216
5223
|
@Domain = domain
|
5217
5224
|
@StartTime = starttime
|
@@ -5223,6 +5230,7 @@ module TencentCloud
|
|
5223
5230
|
@FilterName = filtername
|
5224
5231
|
@FilterAction = filteraction
|
5225
5232
|
@FilterIp = filterip
|
5233
|
+
@Domains = domains
|
5226
5234
|
end
|
5227
5235
|
|
5228
5236
|
def deserialize(params)
|
@@ -5244,6 +5252,7 @@ module TencentCloud
|
|
5244
5252
|
@FilterName = params['FilterName']
|
5245
5253
|
@FilterAction = params['FilterAction']
|
5246
5254
|
@FilterIp = params['FilterIp']
|
5255
|
+
@Domains = params['Domains']
|
5247
5256
|
end
|
5248
5257
|
end
|
5249
5258
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
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-
|
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
|