tencentcloud-sdk-cfw 3.0.589 → 3.0.591

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18d3698abbfb02d6bc5c22613f4727de1fb6d2a2
4
- data.tar.gz: 518254a808f9830bb747a05e68bcd017e4561213
3
+ metadata.gz: ff24250a04fced62a3174ebc21ccaf3c437ec337
4
+ data.tar.gz: 20ecf4bd4d8f06146b23355cd077a816ada969d7
5
5
  SHA512:
6
- metadata.gz: fe232f2afa2695a65181f8ba3cbee90c64247968c43e3eea06af295322e8dcc613e1f118f3355dfa5e00a7a3da8b05d1062122519c0e8aae065d5fbc735426a4
7
- data.tar.gz: 6b15e92be11096b66f1fb454757a87df65e47a379acfe361796d6a578393f10f39362bb0b345e13457cf28ee4c0d6d1d974a0f21fb5b2c1a56471422300a18da
6
+ metadata.gz: 8f7a42a07735b89b15dcb511ef3cc5ea45ded2b1bc8d2d571d3cfa175fa631aebda0548def04ef6e248800831202961b3738c4d94dc5a0be4503e160647da576
7
+ data.tar.gz: 28a474a86f89c0c4fbfce1134103bde2486d128a5dbcb9bf7f560afbd9645568691fdb6b19a6b8e40d6e2daefe447713f8b6eb77dbea975b759d871699fca350
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.589
1
+ 3.0.591
@@ -557,6 +557,30 @@ module TencentCloud
557
557
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
558
558
  end
559
559
 
560
+ # 查询新版安全组下发进度
561
+
562
+ # @param request: Request instance for DescribeEnterpriseSGRuleProgress.
563
+ # @type request: :class:`Tencentcloud::cfw::V20190904::DescribeEnterpriseSGRuleProgressRequest`
564
+ # @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeEnterpriseSGRuleProgressResponse`
565
+ def DescribeEnterpriseSGRuleProgress(request)
566
+ body = send_request('DescribeEnterpriseSGRuleProgress', request.serialize)
567
+ response = JSON.parse(body)
568
+ if response['Response'].key?('Error') == false
569
+ model = DescribeEnterpriseSGRuleProgressResponse.new
570
+ model.deserialize(response['Response'])
571
+ model
572
+ else
573
+ code = response['Response']['Error']['Code']
574
+ message = response['Response']['Error']['Message']
575
+ reqid = response['Response']['RequestId']
576
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
577
+ end
578
+ rescue TencentCloud::Common::TencentCloudSDKException => e
579
+ raise e
580
+ rescue StandardError => e
581
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
582
+ end
583
+
560
584
  # 查询新企业安全组规则
561
585
 
562
586
  # @param request: Request instance for DescribeEnterpriseSecurityGroupRule.