tencentcloud-sdk-vpc 3.0.855 → 3.0.856
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 +60 -6
- 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: c124f4c453a87f1942bf43c01dfb471716bbc1a6
|
4
|
+
data.tar.gz: f927173123ee0ae0e144bc6238b99e8e7437ebc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b70da5a8fab3400e36639935f7ab7ec3e8cdcfc4af1f95fef05d12f1d2cda82355a940c1c1c48e847359e40101e77ecc33931215dfd6b3ebebfac425327e39b8
|
7
|
+
data.tar.gz: e939deeaa8c960543546d81d895bf7e4ce8f1ed9316480b7c57825e1e519857a5a023ee10708e18e318d9693088d28d237ba2325ddccf403790ceb1d49c362b6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.856
|
data/lib/v20170312/models.rb
CHANGED
@@ -5177,10 +5177,12 @@ module TencentCloud
|
|
5177
5177
|
# @type Route: :class:`Tencentcloud::Vpc.v20170312.models.CreateVpnConnRoute`
|
5178
5178
|
# @param BgpConfig: BGP配置。
|
5179
5179
|
# @type BgpConfig: :class:`Tencentcloud::Vpc.v20170312.models.BgpConfig`
|
5180
|
+
# @param HealthCheckConfig: 健康检查NQA配置。
|
5181
|
+
# @type HealthCheckConfig: :class:`Tencentcloud::Vpc.v20170312.models.HealthCheckConfig`
|
5180
5182
|
|
5181
|
-
attr_accessor :VpnGatewayId, :CustomerGatewayId, :VpnConnectionName, :PreShareKey, :VpcId, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :Tags, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :RouteType, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction, :Route, :BgpConfig
|
5183
|
+
attr_accessor :VpnGatewayId, :CustomerGatewayId, :VpnConnectionName, :PreShareKey, :VpcId, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :Tags, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :RouteType, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction, :Route, :BgpConfig, :HealthCheckConfig
|
5182
5184
|
|
5183
|
-
def initialize(vpngatewayid=nil, customergatewayid=nil, vpnconnectionname=nil, presharekey=nil, vpcid=nil, securitypolicydatabases=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, tags=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, routetype=nil, negotiationtype=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil, route=nil, bgpconfig=nil)
|
5185
|
+
def initialize(vpngatewayid=nil, customergatewayid=nil, vpnconnectionname=nil, presharekey=nil, vpcid=nil, securitypolicydatabases=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, tags=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, routetype=nil, negotiationtype=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil, route=nil, bgpconfig=nil, healthcheckconfig=nil)
|
5184
5186
|
@VpnGatewayId = vpngatewayid
|
5185
5187
|
@CustomerGatewayId = customergatewayid
|
5186
5188
|
@VpnConnectionName = vpnconnectionname
|
@@ -5200,6 +5202,7 @@ module TencentCloud
|
|
5200
5202
|
@DpdAction = dpdaction
|
5201
5203
|
@Route = route
|
5202
5204
|
@BgpConfig = bgpconfig
|
5205
|
+
@HealthCheckConfig = healthcheckconfig
|
5203
5206
|
end
|
5204
5207
|
|
5205
5208
|
def deserialize(params)
|
@@ -5248,6 +5251,10 @@ module TencentCloud
|
|
5248
5251
|
@BgpConfig = BgpConfig.new
|
5249
5252
|
@BgpConfig.deserialize(params['BgpConfig'])
|
5250
5253
|
end
|
5254
|
+
unless params['HealthCheckConfig'].nil?
|
5255
|
+
@HealthCheckConfig = HealthCheckConfig.new
|
5256
|
+
@HealthCheckConfig.deserialize(params['HealthCheckConfig'])
|
5257
|
+
end
|
5251
5258
|
end
|
5252
5259
|
end
|
5253
5260
|
|
@@ -15124,6 +15131,38 @@ module TencentCloud
|
|
15124
15131
|
end
|
15125
15132
|
end
|
15126
15133
|
|
15134
|
+
# VPN通道健康检查配置
|
15135
|
+
class HealthCheckConfig < TencentCloud::Common::AbstractModel
|
15136
|
+
# @param ProbeType: 探测模式,默认值NQA,不可修改。
|
15137
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15138
|
+
# @type ProbeType: String
|
15139
|
+
# @param ProbeInterval: 探测间隔,腾讯云两次健康检查间隔时间,范围【1000-5000】,单位ms。
|
15140
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15141
|
+
# @type ProbeInterval: Integer
|
15142
|
+
# @param ProbeThreshold: 探测次数,连续N次健康检查失败后执行路由切换,范围【3-8】,单位次。
|
15143
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15144
|
+
# @type ProbeThreshold: Integer
|
15145
|
+
# @param ProbeTimeout: 探测超时时间,范围【10-5000】,单位ms。
|
15146
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15147
|
+
# @type ProbeTimeout: Integer
|
15148
|
+
|
15149
|
+
attr_accessor :ProbeType, :ProbeInterval, :ProbeThreshold, :ProbeTimeout
|
15150
|
+
|
15151
|
+
def initialize(probetype=nil, probeinterval=nil, probethreshold=nil, probetimeout=nil)
|
15152
|
+
@ProbeType = probetype
|
15153
|
+
@ProbeInterval = probeinterval
|
15154
|
+
@ProbeThreshold = probethreshold
|
15155
|
+
@ProbeTimeout = probetimeout
|
15156
|
+
end
|
15157
|
+
|
15158
|
+
def deserialize(params)
|
15159
|
+
@ProbeType = params['ProbeType']
|
15160
|
+
@ProbeInterval = params['ProbeInterval']
|
15161
|
+
@ProbeThreshold = params['ProbeThreshold']
|
15162
|
+
@ProbeTimeout = params['ProbeTimeout']
|
15163
|
+
end
|
15164
|
+
end
|
15165
|
+
|
15127
15166
|
# IKE配置(Internet Key Exchange,因特网密钥交换),IKE具有一套自我保护机制,用户配置网络安全协议
|
15128
15167
|
class IKEOptionsSpecification < TencentCloud::Common::AbstractModel
|
15129
15168
|
# @param PropoEncryAlgorithm: 加密算法,可选值:'3DES-CBC', 'AES-CBC-128', 'AES-CBS-192', 'AES-CBC-256', 'DES-CBC','SM4', 默认为3DES-CBC
|
@@ -18196,10 +18235,12 @@ module TencentCloud
|
|
18196
18235
|
# @type DpdAction: String
|
18197
18236
|
# @param CustomerGatewayId: 对端网关ID,4.0及以上网关下的通道支持更新。
|
18198
18237
|
# @type CustomerGatewayId: String
|
18238
|
+
# @param HealthCheckConfig: 健康检查配置
|
18239
|
+
# @type HealthCheckConfig: :class:`Tencentcloud::Vpc.v20170312.models.HealthCheckConfig`
|
18199
18240
|
|
18200
|
-
attr_accessor :VpnConnectionId, :VpnConnectionName, :PreShareKey, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction, :CustomerGatewayId
|
18241
|
+
attr_accessor :VpnConnectionId, :VpnConnectionName, :PreShareKey, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction, :CustomerGatewayId, :HealthCheckConfig
|
18201
18242
|
|
18202
|
-
def initialize(vpnconnectionid=nil, vpnconnectionname=nil, presharekey=nil, securitypolicydatabases=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, negotiationtype=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil, customergatewayid=nil)
|
18243
|
+
def initialize(vpnconnectionid=nil, vpnconnectionname=nil, presharekey=nil, securitypolicydatabases=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, negotiationtype=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil, customergatewayid=nil, healthcheckconfig=nil)
|
18203
18244
|
@VpnConnectionId = vpnconnectionid
|
18204
18245
|
@VpnConnectionName = vpnconnectionname
|
18205
18246
|
@PreShareKey = presharekey
|
@@ -18214,6 +18255,7 @@ module TencentCloud
|
|
18214
18255
|
@DpdTimeout = dpdtimeout
|
18215
18256
|
@DpdAction = dpdaction
|
18216
18257
|
@CustomerGatewayId = customergatewayid
|
18258
|
+
@HealthCheckConfig = healthcheckconfig
|
18217
18259
|
end
|
18218
18260
|
|
18219
18261
|
def deserialize(params)
|
@@ -18244,6 +18286,10 @@ module TencentCloud
|
|
18244
18286
|
@DpdTimeout = params['DpdTimeout']
|
18245
18287
|
@DpdAction = params['DpdAction']
|
18246
18288
|
@CustomerGatewayId = params['CustomerGatewayId']
|
18289
|
+
unless params['HealthCheckConfig'].nil?
|
18290
|
+
@HealthCheckConfig = HealthCheckConfig.new
|
18291
|
+
@HealthCheckConfig.deserialize(params['HealthCheckConfig'])
|
18292
|
+
end
|
18247
18293
|
end
|
18248
18294
|
end
|
18249
18295
|
|
@@ -22901,10 +22947,13 @@ module TencentCloud
|
|
22901
22947
|
# @param BgpConfig: Bgp配置信息
|
22902
22948
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22903
22949
|
# @type BgpConfig: :class:`Tencentcloud::Vpc.v20170312.models.BgpConfigAndAsn`
|
22950
|
+
# @param HealthCheckConfig: Nqa配置信息
|
22951
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22952
|
+
# @type HealthCheckConfig: :class:`Tencentcloud::Vpc.v20170312.models.HealthCheckConfig`
|
22904
22953
|
|
22905
|
-
attr_accessor :VpnConnectionId, :VpnConnectionName, :VpcId, :VpnGatewayId, :CustomerGatewayId, :PreShareKey, :VpnProto, :EncryptProto, :RouteType, :CreatedTime, :State, :NetStatus, :SecurityPolicyDatabaseSet, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :HealthCheckStatus, :DpdEnable, :DpdTimeout, :DpdAction, :TagSet, :NegotiationType, :BgpConfig
|
22954
|
+
attr_accessor :VpnConnectionId, :VpnConnectionName, :VpcId, :VpnGatewayId, :CustomerGatewayId, :PreShareKey, :VpnProto, :EncryptProto, :RouteType, :CreatedTime, :State, :NetStatus, :SecurityPolicyDatabaseSet, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :HealthCheckStatus, :DpdEnable, :DpdTimeout, :DpdAction, :TagSet, :NegotiationType, :BgpConfig, :HealthCheckConfig
|
22906
22955
|
|
22907
|
-
def initialize(vpnconnectionid=nil, vpnconnectionname=nil, vpcid=nil, vpngatewayid=nil, customergatewayid=nil, presharekey=nil, vpnproto=nil, encryptproto=nil, routetype=nil, createdtime=nil, state=nil, netstatus=nil, securitypolicydatabaseset=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, healthcheckstatus=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil, tagset=nil, negotiationtype=nil, bgpconfig=nil)
|
22956
|
+
def initialize(vpnconnectionid=nil, vpnconnectionname=nil, vpcid=nil, vpngatewayid=nil, customergatewayid=nil, presharekey=nil, vpnproto=nil, encryptproto=nil, routetype=nil, createdtime=nil, state=nil, netstatus=nil, securitypolicydatabaseset=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, healthcheckstatus=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil, tagset=nil, negotiationtype=nil, bgpconfig=nil, healthcheckconfig=nil)
|
22908
22957
|
@VpnConnectionId = vpnconnectionid
|
22909
22958
|
@VpnConnectionName = vpnconnectionname
|
22910
22959
|
@VpcId = vpcid
|
@@ -22930,6 +22979,7 @@ module TencentCloud
|
|
22930
22979
|
@TagSet = tagset
|
22931
22980
|
@NegotiationType = negotiationtype
|
22932
22981
|
@BgpConfig = bgpconfig
|
22982
|
+
@HealthCheckConfig = healthcheckconfig
|
22933
22983
|
end
|
22934
22984
|
|
22935
22985
|
def deserialize(params)
|
@@ -22981,6 +23031,10 @@ module TencentCloud
|
|
22981
23031
|
@BgpConfig = BgpConfigAndAsn.new
|
22982
23032
|
@BgpConfig.deserialize(params['BgpConfig'])
|
22983
23033
|
end
|
23034
|
+
unless params['HealthCheckConfig'].nil?
|
23035
|
+
@HealthCheckConfig = HealthCheckConfig.new
|
23036
|
+
@HealthCheckConfig.deserialize(params['HealthCheckConfig'])
|
23037
|
+
end
|
22984
23038
|
end
|
22985
23039
|
end
|
22986
23040
|
|
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.856
|
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-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|