tencentcloud-sdk-cfw 3.0.589 → 3.0.591
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/client.rb +24 -0
- data/lib/v20190904/models.rb +214 -183
- 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: ff24250a04fced62a3174ebc21ccaf3c437ec337
|
4
|
+
data.tar.gz: 20ecf4bd4d8f06146b23355cd077a816ada969d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f7a42a07735b89b15dcb511ef3cc5ea45ded2b1bc8d2d571d3cfa175fa631aebda0548def04ef6e248800831202961b3738c4d94dc5a0be4503e160647da576
|
7
|
+
data.tar.gz: 28a474a86f89c0c4fbfce1134103bde2486d128a5dbcb9bf7f560afbd9645568691fdb6b19a6b8e40d6e2daefe447713f8b6eb77dbea975b759d871699fca350
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.591
|
data/lib/v20190904/client.rb
CHANGED
@@ -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.
|