tencentcloud-sdk-cfw 3.0.871 → 3.0.872
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/models.rb +17 -4
- 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: 64495d5f8618ec9dec897931855b5dbe6b389029
|
|
4
|
+
data.tar.gz: 1cc8b33804e614f33132e4909637163a6f8d4047
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 775dfd05f095e40362f7d29d02127295549b6677e345ff3afcc785e1e564dc7f25559e1216e2c6fbba136b6b086d27b617eae6fa7a6ae661a68d7b308dce534e
|
|
7
|
+
data.tar.gz: 615bbe0a0cb063ee46b602bc93934e2ce723349659163df28aa4a1a702a0e26716980c6ae9f842152fdbe37ac308d191bc5c9104b8aa6538abaa9d74748a1353
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.872
|
data/lib/v20190904/models.rb
CHANGED
|
@@ -2845,18 +2845,24 @@ module TencentCloud
|
|
|
2845
2845
|
# @type DomainTemplateCount: Integer
|
|
2846
2846
|
# @param PortTemplateCount: 协议端口模板数量
|
|
2847
2847
|
# @type PortTemplateCount: Integer
|
|
2848
|
+
# @param UsedTemplateCount: 已使用的地址模版数
|
|
2849
|
+
# @type UsedTemplateCount: Integer
|
|
2850
|
+
# @param TemplateQuotaCount: 地址模版配额数量
|
|
2851
|
+
# @type TemplateQuotaCount: Integer
|
|
2848
2852
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2849
2853
|
# @type RequestId: String
|
|
2850
2854
|
|
|
2851
|
-
attr_accessor :Total, :Data, :NameList, :IpTemplateCount, :DomainTemplateCount, :PortTemplateCount, :RequestId
|
|
2855
|
+
attr_accessor :Total, :Data, :NameList, :IpTemplateCount, :DomainTemplateCount, :PortTemplateCount, :UsedTemplateCount, :TemplateQuotaCount, :RequestId
|
|
2852
2856
|
|
|
2853
|
-
def initialize(total=nil, data=nil, namelist=nil, iptemplatecount=nil, domaintemplatecount=nil, porttemplatecount=nil, requestid=nil)
|
|
2857
|
+
def initialize(total=nil, data=nil, namelist=nil, iptemplatecount=nil, domaintemplatecount=nil, porttemplatecount=nil, usedtemplatecount=nil, templatequotacount=nil, requestid=nil)
|
|
2854
2858
|
@Total = total
|
|
2855
2859
|
@Data = data
|
|
2856
2860
|
@NameList = namelist
|
|
2857
2861
|
@IpTemplateCount = iptemplatecount
|
|
2858
2862
|
@DomainTemplateCount = domaintemplatecount
|
|
2859
2863
|
@PortTemplateCount = porttemplatecount
|
|
2864
|
+
@UsedTemplateCount = usedtemplatecount
|
|
2865
|
+
@TemplateQuotaCount = templatequotacount
|
|
2860
2866
|
@RequestId = requestid
|
|
2861
2867
|
end
|
|
2862
2868
|
|
|
@@ -2874,6 +2880,8 @@ module TencentCloud
|
|
|
2874
2880
|
@IpTemplateCount = params['IpTemplateCount']
|
|
2875
2881
|
@DomainTemplateCount = params['DomainTemplateCount']
|
|
2876
2882
|
@PortTemplateCount = params['PortTemplateCount']
|
|
2883
|
+
@UsedTemplateCount = params['UsedTemplateCount']
|
|
2884
|
+
@TemplateQuotaCount = params['TemplateQuotaCount']
|
|
2877
2885
|
@RequestId = params['RequestId']
|
|
2878
2886
|
end
|
|
2879
2887
|
end
|
|
@@ -3903,16 +3911,20 @@ module TencentCloud
|
|
|
3903
3911
|
# @type ReturnCode: Integer
|
|
3904
3912
|
# @param ReturnMsg: 返回信息 success 成功 其他 不成功
|
|
3905
3913
|
# @type ReturnMsg: String
|
|
3914
|
+
# @param AppProtocolList: 七层协议,NTA日志有效
|
|
3915
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3916
|
+
# @type AppProtocolList: Array
|
|
3906
3917
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3907
3918
|
# @type RequestId: String
|
|
3908
3919
|
|
|
3909
|
-
attr_accessor :Data, :Total, :ReturnCode, :ReturnMsg, :RequestId
|
|
3920
|
+
attr_accessor :Data, :Total, :ReturnCode, :ReturnMsg, :AppProtocolList, :RequestId
|
|
3910
3921
|
|
|
3911
|
-
def initialize(data=nil, total=nil, returncode=nil, returnmsg=nil, requestid=nil)
|
|
3922
|
+
def initialize(data=nil, total=nil, returncode=nil, returnmsg=nil, appprotocollist=nil, requestid=nil)
|
|
3912
3923
|
@Data = data
|
|
3913
3924
|
@Total = total
|
|
3914
3925
|
@ReturnCode = returncode
|
|
3915
3926
|
@ReturnMsg = returnmsg
|
|
3927
|
+
@AppProtocolList = appprotocollist
|
|
3916
3928
|
@RequestId = requestid
|
|
3917
3929
|
end
|
|
3918
3930
|
|
|
@@ -3921,6 +3933,7 @@ module TencentCloud
|
|
|
3921
3933
|
@Total = params['Total']
|
|
3922
3934
|
@ReturnCode = params['ReturnCode']
|
|
3923
3935
|
@ReturnMsg = params['ReturnMsg']
|
|
3936
|
+
@AppProtocolList = params['AppProtocolList']
|
|
3924
3937
|
@RequestId = params['RequestId']
|
|
3925
3938
|
end
|
|
3926
3939
|
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: 3.0.
|
|
4
|
+
version: 3.0.872
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-07-
|
|
11
|
+
date: 2024-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|