tencentcloud-sdk-vpc 3.0.557 → 3.0.558

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +33 -13
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 514e0a95c5c877f071d474bf9bf6d371bb6f26ad
4
- data.tar.gz: b1501055aef4d325a2be528380f0c2003fd80fdb
3
+ metadata.gz: 2f0bf254c9be50ee8f62892703137184a3b41e97
4
+ data.tar.gz: b366c3f506a45f5867e1f8932a70f2022897501c
5
5
  SHA512:
6
- metadata.gz: 8057e30f5191702fdb3d2d29b2bdb64cbf64facc7294ca47005468904e1f26afdab586d28619db8841b2d5c8dd99a1d519e7900b55ea1b42c8a1e9c096f359c2
7
- data.tar.gz: 5b986c50b029c73b7d66e28fd1945615d4445d31aca51f642feb17b0f234b58264b00e4970d7d291c8cba26e278ea2c4ef60445d96a4e9d1200fc835d9863340
6
+ metadata.gz: 48c974c569828a4f863a21f98fe93834cf1c3e5a0e8b668fcb0a473e0b073a49911825a184ccdbc92069f16765bcd0c219c553fe0daf54fa6d9214f413a47e26
7
+ data.tar.gz: 36ffb0f09a75f67dc59ed44ee1d4bb1aefe8131b17000a06028432c81b87718acd07df7d433e1d5d3e25924f13b8838e3a1810caca3ed0f0f9ecd32e0ae69949
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.557
1
+ 3.0.558
@@ -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,例如:cgw-2wqq41m9,可通过DescribeCustomerGateways接口查询对端网关。
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内网段172.123.10.5/16是IDC网段。用户指定VPC内哪些网段可以和您IDC中哪些网段通信。
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: 本端通道探测ip
16145
+ # @param HealthCheckLocalIp: 本端通道探测IP。
16130
16146
  # @type HealthCheckLocalIp: String
16131
- # @param HealthCheckRemoteIp: 对端通道探测ip
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.557
4
+ version: 3.0.558
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-21 00:00:00.000000000 Z
11
+ date: 2023-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common