tencentcloud-sdk-cfw 3.0.413 → 3.0.415

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7c9c525a862e3b71b990414958c37985ce571745
4
- data.tar.gz: 18b64328d5fdeaa804f1a3967f259192b714a5a3
3
+ metadata.gz: cf4f9a745561a84ad1b1d9cacdcecda74a56ac4d
4
+ data.tar.gz: d3b8d7cd1ef30d08c3815f6c430bb2dfa61e5309
5
5
  SHA512:
6
- metadata.gz: 4bc6dc1f43e782542fc71dc42b6b99ad6347ccc68d9582d270d22caa532f9b580115d6b90240157805c59848f21871ce0a58e8ac091e06b0097d56c957e38de8
7
- data.tar.gz: 70be03f54ba6220a9f9041192eba16cceacff06dfb4291962242ad257a74db414661816edd0ba1f464bf31952c5c55576ded5b08b4c3a39310bb214aecf4dc48
6
+ metadata.gz: a384f0a79ed24c2493d98b13037a81e695f82fee1a3837d497ab33f4cfe6627ae5a8a91801bea626cb2cd92c726f1cae76c0efae8d04e2999f49893aaf7e30c6
7
+ data.tar.gz: 56ba839126e49c6b751321e12b6dff7ecb45249e4a4f54a925cc6c53f0e8a043705d68a5f1dea9f8d2f8a7f239f4df77060a8c8ddd78efecc36609d2825ff130
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.413
1
+ 3.0.415
@@ -941,30 +941,6 @@ module TencentCloud
941
941
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
942
942
  end
943
943
 
944
- # vpc规则列表概况
945
-
946
- # @param request: Request instance for DescribeVpcRuleOverview.
947
- # @type request: :class:`Tencentcloud::cfw::V20190904::DescribeVpcRuleOverviewRequest`
948
- # @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeVpcRuleOverviewResponse`
949
- def DescribeVpcRuleOverview(request)
950
- body = send_request('DescribeVpcRuleOverview', request.serialize)
951
- response = JSON.parse(body)
952
- if response['Response'].key?('Error') == false
953
- model = DescribeVpcRuleOverviewResponse.new
954
- model.deserialize(response['Response'])
955
- model
956
- else
957
- code = response['Response']['Error']['Code']
958
- message = response['Response']['Error']['Message']
959
- reqid = response['Response']['RequestId']
960
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
961
- end
962
- rescue TencentCloud::Common::TencentCloudSDKException => e
963
- raise e
964
- rescue StandardError => e
965
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
966
- end
967
-
968
944
  # 防火墙垂直扩容
969
945
 
970
946
  # @param request: Request instance for ExpandCfwVertical.
@@ -2520,53 +2520,6 @@ module TencentCloud
2520
2520
  end
2521
2521
  end
2522
2522
 
2523
- # DescribeVpcRuleOverview请求参数结构体
2524
- class DescribeVpcRuleOverviewRequest < TencentCloud::Common::AbstractModel
2525
- # @param EdgeId: EdgeId值两个vpc间的边id 不是必填项可以为空,就是所有vpc间的访问控制规则
2526
- # @type EdgeId: String
2527
-
2528
- attr_accessor :EdgeId
2529
-
2530
- def initialize(edgeid=nil)
2531
- @EdgeId = edgeid
2532
- end
2533
-
2534
- def deserialize(params)
2535
- @EdgeId = params['EdgeId']
2536
- end
2537
- end
2538
-
2539
- # DescribeVpcRuleOverview返回参数结构体
2540
- class DescribeVpcRuleOverviewResponse < TencentCloud::Common::AbstractModel
2541
- # @param StrategyNum: 阻断策略规则数量
2542
- # 注意:此字段可能返回 null,表示取不到有效值。
2543
- # @type StrategyNum: Integer
2544
- # @param StartRuleNum: 启用规则数量
2545
- # 注意:此字段可能返回 null,表示取不到有效值。
2546
- # @type StartRuleNum: Integer
2547
- # @param Total: 规则总量
2548
- # 注意:此字段可能返回 null,表示取不到有效值。
2549
- # @type Total: Integer
2550
- # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2551
- # @type RequestId: String
2552
-
2553
- attr_accessor :StrategyNum, :StartRuleNum, :Total, :RequestId
2554
-
2555
- def initialize(strategynum=nil, startrulenum=nil, total=nil, requestid=nil)
2556
- @StrategyNum = strategynum
2557
- @StartRuleNum = startrulenum
2558
- @Total = total
2559
- @RequestId = requestid
2560
- end
2561
-
2562
- def deserialize(params)
2563
- @StrategyNum = params['StrategyNum']
2564
- @StartRuleNum = params['StartRuleNum']
2565
- @Total = params['Total']
2566
- @RequestId = params['RequestId']
2567
- end
2568
- end
2569
-
2570
2523
  # 设置nat防火墙的vpc dns 接入开关
2571
2524
  class DnsVpcSwitch < TencentCloud::Common::AbstractModel
2572
2525
  # @param VpcId: vpc id
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: 3.0.413
4
+ version: 3.0.415
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-09-19 00:00:00.000000000 Z
11
+ date: 2022-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common