tencentcloud-sdk-vpc 3.0.902 → 3.0.904
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/v20170312/models.rb +20 -7
- 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: 3e692f9acd1b8f58a27fffe31bce6679aa0690b0
|
4
|
+
data.tar.gz: c46beaf4a434cee619e09c1dcd5ef4e83d903664
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da35a379570106c8e3916091d38da6265e1b56ff2969b527739f7ca694614ba1959ba0201274b2888dd8f33f4e5057d484bd425bae33377c10baf4e57ed24322
|
7
|
+
data.tar.gz: dd53b48b075d6673ce0033da080928c3d65cb0f1337dd2888f0ee033a4a76a51c62623f6cc739b8cf3da665a5202187aa7895e11e0f1497bd60d585616234c21
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.904
|
data/lib/v20170312/models.rb
CHANGED
@@ -4978,14 +4978,17 @@ module TencentCloud
|
|
4978
4978
|
# @type ProjectId: String
|
4979
4979
|
# @param SecurityGroupPolicySet: 安全组规则集合。
|
4980
4980
|
# @type SecurityGroupPolicySet: :class:`Tencentcloud::Vpc.v20170312.models.SecurityGroupPolicySet`
|
4981
|
+
# @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
4982
|
+
# @type Tags: Array
|
4981
4983
|
|
4982
|
-
attr_accessor :GroupName, :GroupDescription, :ProjectId, :SecurityGroupPolicySet
|
4984
|
+
attr_accessor :GroupName, :GroupDescription, :ProjectId, :SecurityGroupPolicySet, :Tags
|
4983
4985
|
|
4984
|
-
def initialize(groupname=nil, groupdescription=nil, projectid=nil, securitygrouppolicyset=nil)
|
4986
|
+
def initialize(groupname=nil, groupdescription=nil, projectid=nil, securitygrouppolicyset=nil, tags=nil)
|
4985
4987
|
@GroupName = groupname
|
4986
4988
|
@GroupDescription = groupdescription
|
4987
4989
|
@ProjectId = projectid
|
4988
4990
|
@SecurityGroupPolicySet = securitygrouppolicyset
|
4991
|
+
@Tags = tags
|
4989
4992
|
end
|
4990
4993
|
|
4991
4994
|
def deserialize(params)
|
@@ -4996,6 +4999,14 @@ module TencentCloud
|
|
4996
4999
|
@SecurityGroupPolicySet = SecurityGroupPolicySet.new
|
4997
5000
|
@SecurityGroupPolicySet.deserialize(params['SecurityGroupPolicySet'])
|
4998
5001
|
end
|
5002
|
+
unless params['Tags'].nil?
|
5003
|
+
@Tags = []
|
5004
|
+
params['Tags'].each do |i|
|
5005
|
+
tag_tmp = Tag.new
|
5006
|
+
tag_tmp.deserialize(i)
|
5007
|
+
@Tags << tag_tmp
|
5008
|
+
end
|
5009
|
+
end
|
4999
5010
|
end
|
5000
5011
|
end
|
5001
5012
|
|
@@ -22288,7 +22299,7 @@ module TencentCloud
|
|
22288
22299
|
|
22289
22300
|
# 路由策略对象
|
22290
22301
|
class Route < TencentCloud::Common::AbstractModel
|
22291
|
-
# @param DestinationCidrBlock: 目的网段,取值不能在私有网络网段内,例如:112.20.51.0/24。
|
22302
|
+
# @param DestinationCidrBlock: 创建IPv4目的网段,取值不能在私有网络网段内,例如:112.20.51.0/24。
|
22292
22303
|
# @type DestinationCidrBlock: String
|
22293
22304
|
# @param GatewayType: 下一跳类型,目前我们支持的类型有:
|
22294
22305
|
# CVM:公网网关类型的云服务器;
|
@@ -22296,10 +22307,12 @@ module TencentCloud
|
|
22296
22307
|
# DIRECTCONNECT:专线网关;
|
22297
22308
|
# PEERCONNECTION:对等连接;
|
22298
22309
|
# HAVIP:高可用虚拟IP;
|
22299
|
-
# NAT
|
22310
|
+
# NAT:公网NAT网关;
|
22300
22311
|
# NORMAL_CVM:普通云服务器;
|
22301
22312
|
# EIP:云服务器的公网IP;
|
22302
|
-
# LOCAL_GATEWAY
|
22313
|
+
# LOCAL_GATEWAY:CDC本地网关;
|
22314
|
+
# INTRANAT:私网NAT网关;
|
22315
|
+
# USER_CCN;云联网(自定义路由)。
|
22303
22316
|
# @type GatewayType: String
|
22304
22317
|
# @param GatewayId: 下一跳地址,这里只需要指定不同下一跳类型的网关ID,系统会自动匹配到下一跳地址。
|
22305
22318
|
# 特殊说明:
|
@@ -22321,12 +22334,12 @@ module TencentCloud
|
|
22321
22334
|
# @type RouteType: String
|
22322
22335
|
# @param RouteTableId: 路由表实例ID,例如:rtb-azd4dt1c。
|
22323
22336
|
# @type RouteTableId: String
|
22324
|
-
# @param DestinationIpv6CidrBlock:
|
22337
|
+
# @param DestinationIpv6CidrBlock: 创建IPv6目的网段,取值不能在私有网络网段内,例如:2402:4e00:1000:810b::/64。
|
22325
22338
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22326
22339
|
# @type DestinationIpv6CidrBlock: String
|
22327
22340
|
# @param RouteItemId: 路由唯一策略ID。
|
22328
22341
|
# @type RouteItemId: String
|
22329
|
-
# @param PublishedToVbc:
|
22342
|
+
# @param PublishedToVbc: 路由策略是否发布到云联网。该字段仅做出参使用,作为入参字段时此参数不生效。
|
22330
22343
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22331
22344
|
# @type PublishedToVbc: Boolean
|
22332
22345
|
# @param CreatedTime: 路由策略创建时间
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-vpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.904
|
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-09-
|
11
|
+
date: 2024-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|