tencentcloud-sdk-cfw 3.0.589 → 3.0.590
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/client.rb +24 -0
- data/lib/v20190904/models.rb +31 -0
- 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: e85b976c0e6900bb025c0f932359bbfe3fa6e1f9
|
4
|
+
data.tar.gz: f633e956c2d8acb6ef76d3dad5b392db2b558fc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1b5f1d4bf14fff980f354b92a738674f6cdb0b371746f7c61e2627ce6bb18fa50bf0a3ba6542f5571d18b412b9642a33fa48a8ad21d5f012423d93d57dd300a
|
7
|
+
data.tar.gz: a1477cb709d7f6812f47c57906d5417c14fa7736eeedf8dcfbafca09c6e313805550a284ef94b711657de97c3cab2bae0cebc4ac7f5893eefb0ca4af6bf05a2a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.590
|
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.
|
data/lib/v20190904/models.rb
CHANGED
@@ -1977,6 +1977,37 @@ module TencentCloud
|
|
1977
1977
|
end
|
1978
1978
|
end
|
1979
1979
|
|
1980
|
+
# DescribeEnterpriseSGRuleProgress请求参数结构体
|
1981
|
+
class DescribeEnterpriseSGRuleProgressRequest < TencentCloud::Common::AbstractModel
|
1982
|
+
|
1983
|
+
|
1984
|
+
def initialize()
|
1985
|
+
end
|
1986
|
+
|
1987
|
+
def deserialize(params)
|
1988
|
+
end
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
# DescribeEnterpriseSGRuleProgress返回参数结构体
|
1992
|
+
class DescribeEnterpriseSGRuleProgressResponse < TencentCloud::Common::AbstractModel
|
1993
|
+
# @param Progress: 0-100,代表下发进度百分比
|
1994
|
+
# @type Progress: Integer
|
1995
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1996
|
+
# @type RequestId: String
|
1997
|
+
|
1998
|
+
attr_accessor :Progress, :RequestId
|
1999
|
+
|
2000
|
+
def initialize(progress=nil, requestid=nil)
|
2001
|
+
@Progress = progress
|
2002
|
+
@RequestId = requestid
|
2003
|
+
end
|
2004
|
+
|
2005
|
+
def deserialize(params)
|
2006
|
+
@Progress = params['Progress']
|
2007
|
+
@RequestId = params['RequestId']
|
2008
|
+
end
|
2009
|
+
end
|
2010
|
+
|
1980
2011
|
# DescribeEnterpriseSecurityGroupRule请求参数结构体
|
1981
2012
|
class DescribeEnterpriseSecurityGroupRuleRequest < TencentCloud::Common::AbstractModel
|
1982
2013
|
# @param PageNo: 分页查询时,显示的当前页的页码。
|
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.
|
4
|
+
version: 3.0.590
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|