tencentcloud-sdk-cfw 3.0.770 → 3.0.771
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 +9 -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: 3ff0a383df56e478754b7640d17617e2158ce16c
|
|
4
|
+
data.tar.gz: 539ca347d95fcb08b0ac47cdcc8de4ff2aa95149
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf0d5d08bc79c12d80f85cf3fb760afc31b4c0f52c50fa139461cce681ac36a0a14f712be822a096cf42ccff7a9a71c9edd089548ff0cb8a22702df751699793
|
|
7
|
+
data.tar.gz: 7cb35c6008bfd914c90d9c24c7fab16eb0aa46500bf4b8e3513b2fc5c71f6fa620bae7d3781ee5693c4c3d69065ab97ad2506125040c53a4f2d8a4aeece8c443
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.771
|
data/lib/v20190904/models.rb
CHANGED
|
@@ -2297,7 +2297,7 @@ module TencentCloud
|
|
|
2297
2297
|
# @param SourceType: 访问源类型:入向规则时类型可以为 ip,net,template,location;出向规则时可以为 ip,net,template,instance,group,tag
|
|
2298
2298
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2299
2299
|
# @type SourceType: String
|
|
2300
|
-
# @param TargetType: 访问目的类型:入向规则时类型可以为ip,net,template,instance,group,tag;出向规则时可以为 ip,net,domain,template,location
|
|
2300
|
+
# @param TargetType: 访问目的类型:入向规则时类型可以为ip,net,template,instance,group,tag;出向规则时可以为 ip,net,domain,template,location,dnsparse
|
|
2301
2301
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2302
2302
|
# @type TargetType: String
|
|
2303
2303
|
# @param Uuid: 规则对应的唯一id
|
|
@@ -8847,10 +8847,13 @@ module TencentCloud
|
|
|
8847
8847
|
# @param ProtocolType: 协议端口模板,协议类型,4:4层协议,7:7层协议
|
|
8848
8848
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8849
8849
|
# @type ProtocolType: String
|
|
8850
|
+
# @param IPNum: 模板包含地址数量
|
|
8851
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8852
|
+
# @type IPNum: Integer
|
|
8850
8853
|
|
|
8851
|
-
attr_accessor :Uuid, :Name, :Detail, :IpString, :InsertTime, :UpdateTime, :Type, :RulesNum, :TemplateId, :ProtocolType
|
|
8854
|
+
attr_accessor :Uuid, :Name, :Detail, :IpString, :InsertTime, :UpdateTime, :Type, :RulesNum, :TemplateId, :ProtocolType, :IPNum
|
|
8852
8855
|
|
|
8853
|
-
def initialize(uuid=nil, name=nil, detail=nil, ipstring=nil, inserttime=nil, updatetime=nil, type=nil, rulesnum=nil, templateid=nil, protocoltype=nil)
|
|
8856
|
+
def initialize(uuid=nil, name=nil, detail=nil, ipstring=nil, inserttime=nil, updatetime=nil, type=nil, rulesnum=nil, templateid=nil, protocoltype=nil, ipnum=nil)
|
|
8854
8857
|
@Uuid = uuid
|
|
8855
8858
|
@Name = name
|
|
8856
8859
|
@Detail = detail
|
|
@@ -8861,6 +8864,7 @@ module TencentCloud
|
|
|
8861
8864
|
@RulesNum = rulesnum
|
|
8862
8865
|
@TemplateId = templateid
|
|
8863
8866
|
@ProtocolType = protocoltype
|
|
8867
|
+
@IPNum = ipnum
|
|
8864
8868
|
end
|
|
8865
8869
|
|
|
8866
8870
|
def deserialize(params)
|
|
@@ -8874,6 +8878,7 @@ module TencentCloud
|
|
|
8874
8878
|
@RulesNum = params['RulesNum']
|
|
8875
8879
|
@TemplateId = params['TemplateId']
|
|
8876
8880
|
@ProtocolType = params['ProtocolType']
|
|
8881
|
+
@IPNum = params['IPNum']
|
|
8877
8882
|
end
|
|
8878
8883
|
end
|
|
8879
8884
|
|
|
@@ -9371,7 +9376,7 @@ module TencentCloud
|
|
|
9371
9376
|
# net:IP/CIDR(192.168.0.2)
|
|
9372
9377
|
# domain:域名规则,例如*.qq.com
|
|
9373
9378
|
# @type DestContent: String
|
|
9374
|
-
# @param DestType: 访问目的类型,类型可以为:net,domain
|
|
9379
|
+
# @param DestType: 访问目的类型,类型可以为:net,domain,dnsparse
|
|
9375
9380
|
# @type DestType: String
|
|
9376
9381
|
# @param Protocol: 协议,可选的值:
|
|
9377
9382
|
# TCP
|
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.771
|
|
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-02-
|
|
11
|
+
date: 2024-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|