tencentcloud-sdk-vpc 3.0.557 → 3.0.559
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 +33 -13
- 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: 313bbee2d8bed6a16379f0c47b60965ccd56d5a3
|
4
|
+
data.tar.gz: ba4c56c0c7f6b4488f8bf6ba2c2315845182c15f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ed145a58273d59c3bf2059c7cda6c8c69426099a43616849e2b446d48d672e4127ee836a6a6ab0cbbf130185b21281c6b884460979774bbfad501eea3b445fc
|
7
|
+
data.tar.gz: ae7e750b6f6dc840541403c3b03972f727918b50f2ef6094f841842101e7afb7be3330ec34b47e1d7b3ccbc36142fa61cdfb453a69ccd84dec3b9ce0edb24359
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.559
|
data/lib/v20170312/models.rb
CHANGED
@@ -2003,12 +2003,28 @@ module TencentCloud
|
|
2003
2003
|
|
2004
2004
|
# 云联网(CCN)地域出带宽上限。
|
2005
2005
|
class CcnRegionBandwidthLimitInfo < TencentCloud::Common::AbstractModel
|
2006
|
+
# @param SourceRegion: 源地域,例如:ap-shanghai
|
2007
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2008
|
+
# @type SourceRegion: String
|
2009
|
+
# @param DestinationRegion: 目的地域, 例如:ap-shanghai
|
2010
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2011
|
+
# @type DestinationRegion: String
|
2012
|
+
# @param BandwidthLimit: 出带宽上限,单位:Mbps。
|
2013
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2014
|
+
# @type BandwidthLimit: Integer
|
2006
2015
|
|
2016
|
+
attr_accessor :SourceRegion, :DestinationRegion, :BandwidthLimit
|
2007
2017
|
|
2008
|
-
def initialize()
|
2018
|
+
def initialize(sourceregion=nil, destinationregion=nil, bandwidthlimit=nil)
|
2019
|
+
@SourceRegion = sourceregion
|
2020
|
+
@DestinationRegion = destinationregion
|
2021
|
+
@BandwidthLimit = bandwidthlimit
|
2009
2022
|
end
|
2010
2023
|
|
2011
2024
|
def deserialize(params)
|
2025
|
+
@SourceRegion = params['SourceRegion']
|
2026
|
+
@DestinationRegion = params['DestinationRegion']
|
2027
|
+
@BandwidthLimit = params['BandwidthLimit']
|
2012
2028
|
end
|
2013
2029
|
end
|
2014
2030
|
|
@@ -4584,7 +4600,7 @@ module TencentCloud
|
|
4584
4600
|
class CreateVpnConnectionRequest < TencentCloud::Common::AbstractModel
|
4585
4601
|
# @param VpnGatewayId: VPN网关实例ID。
|
4586
4602
|
# @type VpnGatewayId: String
|
4587
|
-
# @param CustomerGatewayId: 对端网关ID
|
4603
|
+
# @param CustomerGatewayId: 对端网关ID。例如:cgw-2wqq41m9,可通过[DescribeCustomerGateways](https://cloud.tencent.com/document/product/215/17516)接口查询对端网关。
|
4588
4604
|
# @type CustomerGatewayId: String
|
4589
4605
|
# @param VpnConnectionName: 通道名称,可任意命名,但不得超过60个字符。
|
4590
4606
|
# @type VpnConnectionName: String
|
@@ -4601,11 +4617,11 @@ module TencentCloud
|
|
4601
4617
|
# @type IPSECOptionsSpecification: :class:`Tencentcloud::Vpc.v20170312.models.IPSECOptionsSpecification`
|
4602
4618
|
# @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
|
4603
4619
|
# @type Tags: Array
|
4604
|
-
# @param EnableHealthCheck:
|
4620
|
+
# @param EnableHealthCheck: 是否支持隧道内健康检查,默认为False。
|
4605
4621
|
# @type EnableHealthCheck: Boolean
|
4606
|
-
# @param HealthCheckLocalIp:
|
4622
|
+
# @param HealthCheckLocalIp: 健康检查本端地址,默认值为随机在169.254.128.0/17分配一个IP。
|
4607
4623
|
# @type HealthCheckLocalIp: String
|
4608
|
-
# @param HealthCheckRemoteIp:
|
4624
|
+
# @param HealthCheckRemoteIp: 健康检查对端地址,默认值为随机在169.254.128.0/17分配一个IP。
|
4609
4625
|
# @type HealthCheckRemoteIp: String
|
4610
4626
|
# @param RouteType: 通道类型, 例如:["STATIC", "StaticRoute", "Policy"]
|
4611
4627
|
# @type RouteType: String
|
@@ -5409,7 +5425,7 @@ module TencentCloud
|
|
5409
5425
|
|
5410
5426
|
# DeleteCustomerGateway请求参数结构体
|
5411
5427
|
class DeleteCustomerGatewayRequest < TencentCloud::Common::AbstractModel
|
5412
|
-
# @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过DescribeCustomerGateways接口查询对端网关。
|
5428
|
+
# @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过[DescribeCustomerGateways](https://cloud.tencent.com/document/api/215/17516)接口查询对端网关。
|
5413
5429
|
# @type CustomerGatewayId: String
|
5414
5430
|
|
5415
5431
|
attr_accessor :CustomerGatewayId
|
@@ -14688,7 +14704,7 @@ module TencentCloud
|
|
14688
14704
|
|
14689
14705
|
# ModifyCustomerGatewayAttribute请求参数结构体
|
14690
14706
|
class ModifyCustomerGatewayAttributeRequest < TencentCloud::Common::AbstractModel
|
14691
|
-
# @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过DescribeCustomerGateways接口查询对端网关。
|
14707
|
+
# @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过[DescribeCustomerGateways](https://cloud.tencent.com/document/api/215/17516)接口查询对端网关。
|
14692
14708
|
# @type CustomerGatewayId: String
|
14693
14709
|
# @param CustomerGatewayName: 对端网关名称,可任意命名,但不得超过60个字符。
|
14694
14710
|
# @type CustomerGatewayName: String
|
@@ -16118,17 +16134,17 @@ module TencentCloud
|
|
16118
16134
|
# @type VpnConnectionName: String
|
16119
16135
|
# @param PreShareKey: 预共享密钥。
|
16120
16136
|
# @type PreShareKey: String
|
16121
|
-
# @param SecurityPolicyDatabases: SPD策略组,例如:{"10.0.0.5/24":["172.123.10.5/16"]},10.0.0.5/24是vpc
|
16137
|
+
# @param SecurityPolicyDatabases: SPD策略组,例如:{"10.0.0.5/24":["172.123.10.5/16"]},10.0.0.5/24是vpc内网段,172.123.10.5/16是IDC网段。用户指定VPC内哪些网段可以和您IDC中哪些网段通信。
|
16122
16138
|
# @type SecurityPolicyDatabases: Array
|
16123
16139
|
# @param IKEOptionsSpecification: IKE配置(Internet Key Exchange,因特网密钥交换),IKE具有一套自我保护机制,用户配置网络安全协议。
|
16124
16140
|
# @type IKEOptionsSpecification: :class:`Tencentcloud::Vpc.v20170312.models.IKEOptionsSpecification`
|
16125
16141
|
# @param IPSECOptionsSpecification: IPSec配置,腾讯云提供IPSec安全会话设置。
|
16126
16142
|
# @type IPSECOptionsSpecification: :class:`Tencentcloud::Vpc.v20170312.models.IPSECOptionsSpecification`
|
16127
|
-
# @param EnableHealthCheck:
|
16143
|
+
# @param EnableHealthCheck: 是否启用通道健康检查,默认为False。
|
16128
16144
|
# @type EnableHealthCheck: Boolean
|
16129
|
-
# @param HealthCheckLocalIp: 本端通道探测
|
16145
|
+
# @param HealthCheckLocalIp: 本端通道探测IP。
|
16130
16146
|
# @type HealthCheckLocalIp: String
|
16131
|
-
# @param HealthCheckRemoteIp: 对端通道探测
|
16147
|
+
# @param HealthCheckRemoteIp: 对端通道探测IP。
|
16132
16148
|
# @type HealthCheckRemoteIp: String
|
16133
16149
|
# @param NegotiationType: 协商类型,默认为active(主动协商)。可选值:active(主动协商),passive(被动协商),flowTrigger(流量协商)
|
16134
16150
|
# @type NegotiationType: String
|
@@ -16138,10 +16154,12 @@ module TencentCloud
|
|
16138
16154
|
# @type DpdTimeout: String
|
16139
16155
|
# @param DpdAction: DPD超时后的动作。默认为clear。dpdEnable为1(开启)时有效。可取值为clear(断开)和restart(重试)
|
16140
16156
|
# @type DpdAction: String
|
16157
|
+
# @param CustomerGatewayId: 对端网关ID,4.0及以上网关下的通道支持更新。
|
16158
|
+
# @type CustomerGatewayId: String
|
16141
16159
|
|
16142
|
-
attr_accessor :VpnConnectionId, :VpnConnectionName, :PreShareKey, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction
|
16160
|
+
attr_accessor :VpnConnectionId, :VpnConnectionName, :PreShareKey, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction, :CustomerGatewayId
|
16143
16161
|
|
16144
|
-
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)
|
16162
|
+
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)
|
16145
16163
|
@VpnConnectionId = vpnconnectionid
|
16146
16164
|
@VpnConnectionName = vpnconnectionname
|
16147
16165
|
@PreShareKey = presharekey
|
@@ -16155,6 +16173,7 @@ module TencentCloud
|
|
16155
16173
|
@DpdEnable = dpdenable
|
16156
16174
|
@DpdTimeout = dpdtimeout
|
16157
16175
|
@DpdAction = dpdaction
|
16176
|
+
@CustomerGatewayId = customergatewayid
|
16158
16177
|
end
|
16159
16178
|
|
16160
16179
|
def deserialize(params)
|
@@ -16184,6 +16203,7 @@ module TencentCloud
|
|
16184
16203
|
@DpdEnable = params['DpdEnable']
|
16185
16204
|
@DpdTimeout = params['DpdTimeout']
|
16186
16205
|
@DpdAction = params['DpdAction']
|
16206
|
+
@CustomerGatewayId = params['CustomerGatewayId']
|
16187
16207
|
end
|
16188
16208
|
end
|
16189
16209
|
|
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.559
|
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-04-
|
11
|
+
date: 2023-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|