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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190904/models.rb +20 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 55fd13ef21c585f1e232733fe3335ad19075a280
4
- data.tar.gz: 99c8809863c81ad95cc18539b7a383caf2261188
3
+ metadata.gz: 9b37f786e875f2a3b91e0ad33807d4a6c784a8bf
4
+ data.tar.gz: a79346754575bbd59f4f084e6bd53377eefd0175
5
5
  SHA512:
6
- metadata.gz: 4cff6bf5b6ac98e925f495d9472b9bcb660ba8d2f114a606506d25aa820e5de73ec50ec8d6df258902946db5f4b48420323a3e0def40589f078f020f8b9f2d69
7
- data.tar.gz: 8d9a59405aa812d20866684b16d3f823947cb6d874869f01179f3bf4723af4d295500ac362db9f07aae5c3643197d2c2280a0d81e695ab30ca7668b701568736
6
+ metadata.gz: 5d6b25251825c6fd4aa4c56f27767d0108571b6ffef6bd9e8316565cff8a52279afc7dc2ead6c81a2321e12e7d06c8f7bfcaaeb5aa09b231eccc461792257998
7
+ data.tar.gz: 702f6024defbae5ec9ce1f52eb20febb581dc6718f7f6047fe5058cdd6f8939343289f0b91660d1b09053b20c74f856f552f224ac58b687bcb8345319a3ef86f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.240
1
+ 1.0.241
@@ -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.240
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-12 00:00:00.000000000 Z
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