tencentcloud-sdk-cfw 1.0.240 → 1.0.241
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/v20190904/models.rb +20 -6
- 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: 9b37f786e875f2a3b91e0ad33807d4a6c784a8bf
|
4
|
+
data.tar.gz: a79346754575bbd59f4f084e6bd53377eefd0175
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d6b25251825c6fd4aa4c56f27767d0108571b6ffef6bd9e8316565cff8a52279afc7dc2ead6c81a2321e12e7d06c8f7bfcaaeb5aa09b231eccc461792257998
|
7
|
+
data.tar.gz: 702f6024defbae5ec9ce1f52eb20febb581dc6718f7f6047fe5058cdd6f8939343289f0b91660d1b09053b20c74f856f552f224ac58b687bcb8345319a3ef86f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.241
|
data/lib/v20190904/models.rb
CHANGED
@@ -584,16 +584,20 @@ module TencentCloud
|
|
584
584
|
|
585
585
|
# CreateNatFwInstance返回参数结构体
|
586
586
|
class CreateNatFwInstanceResponse < TencentCloud::Common::AbstractModel
|
587
|
+
# @param CfwInsId: 防火墙实例id
|
588
|
+
# @type CfwInsId: String
|
587
589
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
588
590
|
# @type RequestId: String
|
589
591
|
|
590
|
-
attr_accessor :RequestId
|
592
|
+
attr_accessor :CfwInsId, :RequestId
|
591
593
|
|
592
|
-
def initialize(requestid=nil)
|
594
|
+
def initialize(cfwinsid=nil, requestid=nil)
|
595
|
+
@CfwInsId = cfwinsid
|
593
596
|
@RequestId = requestid
|
594
597
|
end
|
595
598
|
|
596
599
|
def deserialize(params)
|
600
|
+
@CfwInsId = params['CfwInsId']
|
597
601
|
@RequestId = params['RequestId']
|
598
602
|
end
|
599
603
|
end
|
@@ -655,16 +659,21 @@ module TencentCloud
|
|
655
659
|
|
656
660
|
# CreateNatFwInstanceWithDomain返回参数结构体
|
657
661
|
class CreateNatFwInstanceWithDomainResponse < TencentCloud::Common::AbstractModel
|
662
|
+
# @param CfwInsId: nat实例信息
|
663
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
664
|
+
# @type CfwInsId: String
|
658
665
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
659
666
|
# @type RequestId: String
|
660
667
|
|
661
|
-
attr_accessor :RequestId
|
668
|
+
attr_accessor :CfwInsId, :RequestId
|
662
669
|
|
663
|
-
def initialize(requestid=nil)
|
670
|
+
def initialize(cfwinsid=nil, requestid=nil)
|
671
|
+
@CfwInsId = cfwinsid
|
664
672
|
@RequestId = requestid
|
665
673
|
end
|
666
674
|
|
667
675
|
def deserialize(params)
|
676
|
+
@CfwInsId = params['CfwInsId']
|
668
677
|
@RequestId = params['RequestId']
|
669
678
|
end
|
670
679
|
end
|
@@ -2703,20 +2712,25 @@ module TencentCloud
|
|
2703
2712
|
# @param StartRuleNum: 启用规则数量
|
2704
2713
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2705
2714
|
# @type StartRuleNum: Integer
|
2715
|
+
# @param Total: 规则总量
|
2716
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2717
|
+
# @type Total: Integer
|
2706
2718
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2707
2719
|
# @type RequestId: String
|
2708
2720
|
|
2709
|
-
attr_accessor :StrategyNum, :StartRuleNum, :RequestId
|
2721
|
+
attr_accessor :StrategyNum, :StartRuleNum, :Total, :RequestId
|
2710
2722
|
|
2711
|
-
def initialize(strategynum=nil, startrulenum=nil, requestid=nil)
|
2723
|
+
def initialize(strategynum=nil, startrulenum=nil, total=nil, requestid=nil)
|
2712
2724
|
@StrategyNum = strategynum
|
2713
2725
|
@StartRuleNum = startrulenum
|
2726
|
+
@Total = total
|
2714
2727
|
@RequestId = requestid
|
2715
2728
|
end
|
2716
2729
|
|
2717
2730
|
def deserialize(params)
|
2718
2731
|
@StrategyNum = params['StrategyNum']
|
2719
2732
|
@StartRuleNum = params['StartRuleNum']
|
2733
|
+
@Total = params['Total']
|
2720
2734
|
@RequestId = params['RequestId']
|
2721
2735
|
end
|
2722
2736
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cfw
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.241
|
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-
|
11
|
+
date: 2022-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|