tencentcloud-sdk-cfw 1.0.291 → 1.0.292
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/v20190904/models.rb +17 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ef9f7b7361a5e7b854e2cd32a36856ac130eb13
|
4
|
+
data.tar.gz: 6183375bf9f234bf6b061ea51c43bc724faa1cd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6412e373fcc7fe04f3e4a8b9c86f08cd03d5f0b3474ebadd0c4d91443c25d415afc9268d2e9726529daa2b819a8b06e32b5b5ffc64c4c88309af0b81c21c80c5
|
7
|
+
data.tar.gz: 260dd90bf83724db7924469c186a67653e0f8ba6b9c43d235ec3890e9d0d34ab78ee3ed38b031ffa477d3796372324c17cd4ecf47f3a926dfa0e9ab62934b86d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.292
|
data/lib/v20190904/models.rb
CHANGED
@@ -1393,16 +1393,22 @@ module TencentCloud
|
|
1393
1393
|
# @type Direction: String
|
1394
1394
|
# @param Source: 来源
|
1395
1395
|
# @type Source: String
|
1396
|
+
# @param EdgeId: vpc间防火墙开关边id
|
1397
|
+
# @type EdgeId: String
|
1398
|
+
# @param LogSource: 日志来源 move:vpc间防火墙
|
1399
|
+
# @type LogSource: String
|
1396
1400
|
|
1397
|
-
attr_accessor :StartTime, :EndTime, :Ip, :Zone, :Direction, :Source
|
1401
|
+
attr_accessor :StartTime, :EndTime, :Ip, :Zone, :Direction, :Source, :EdgeId, :LogSource
|
1398
1402
|
|
1399
|
-
def initialize(starttime=nil, endtime=nil, ip=nil, zone=nil, direction=nil, source=nil)
|
1403
|
+
def initialize(starttime=nil, endtime=nil, ip=nil, zone=nil, direction=nil, source=nil, edgeid=nil, logsource=nil)
|
1400
1404
|
@StartTime = starttime
|
1401
1405
|
@EndTime = endtime
|
1402
1406
|
@Ip = ip
|
1403
1407
|
@Zone = zone
|
1404
1408
|
@Direction = direction
|
1405
1409
|
@Source = source
|
1410
|
+
@EdgeId = edgeid
|
1411
|
+
@LogSource = logsource
|
1406
1412
|
end
|
1407
1413
|
|
1408
1414
|
def deserialize(params)
|
@@ -1412,6 +1418,8 @@ module TencentCloud
|
|
1412
1418
|
@Zone = params['Zone']
|
1413
1419
|
@Direction = params['Direction']
|
1414
1420
|
@Source = params['Source']
|
1421
|
+
@EdgeId = params['EdgeId']
|
1422
|
+
@LogSource = params['LogSource']
|
1415
1423
|
end
|
1416
1424
|
end
|
1417
1425
|
|
@@ -5274,14 +5282,18 @@ module TencentCloud
|
|
5274
5282
|
# @type BaseLineInSwitch: Integer
|
5275
5283
|
# @param BaseLineOutSwitch: 1 打开 0 关闭
|
5276
5284
|
# @type BaseLineOutSwitch: Integer
|
5285
|
+
# @param VpcFwCount: vpc间防火墙实例数量
|
5286
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5287
|
+
# @type VpcFwCount: Integer
|
5277
5288
|
|
5278
|
-
attr_accessor :EventTableListStruct, :BaseLineUser, :BaseLineInSwitch, :BaseLineOutSwitch
|
5289
|
+
attr_accessor :EventTableListStruct, :BaseLineUser, :BaseLineInSwitch, :BaseLineOutSwitch, :VpcFwCount
|
5279
5290
|
|
5280
|
-
def initialize(eventtableliststruct=nil, baselineuser=nil, baselineinswitch=nil, baselineoutswitch=nil)
|
5291
|
+
def initialize(eventtableliststruct=nil, baselineuser=nil, baselineinswitch=nil, baselineoutswitch=nil, vpcfwcount=nil)
|
5281
5292
|
@EventTableListStruct = eventtableliststruct
|
5282
5293
|
@BaseLineUser = baselineuser
|
5283
5294
|
@BaseLineInSwitch = baselineinswitch
|
5284
5295
|
@BaseLineOutSwitch = baselineoutswitch
|
5296
|
+
@VpcFwCount = vpcfwcount
|
5285
5297
|
end
|
5286
5298
|
|
5287
5299
|
def deserialize(params)
|
@@ -5296,6 +5308,7 @@ module TencentCloud
|
|
5296
5308
|
@BaseLineUser = params['BaseLineUser']
|
5297
5309
|
@BaseLineInSwitch = params['BaseLineInSwitch']
|
5298
5310
|
@BaseLineOutSwitch = params['BaseLineOutSwitch']
|
5311
|
+
@VpcFwCount = params['VpcFwCount']
|
5299
5312
|
end
|
5300
5313
|
end
|
5301
5314
|
|