tencentcloud-sdk-vpc 3.0.556 → 3.0.558

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +45 -15
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eaf4f6d91297d800e9c689ac022a8b4f9f3a5296
4
- data.tar.gz: ce9a308160162534330852f5ec876a82aff37c32
3
+ metadata.gz: 2f0bf254c9be50ee8f62892703137184a3b41e97
4
+ data.tar.gz: b366c3f506a45f5867e1f8932a70f2022897501c
5
5
  SHA512:
6
- metadata.gz: 2ae0535aeba5a9fc88af95b1c211565af7a4f5413ed7ffcf255e39d1668ffaa0da90c1413be42568e2ca649259c7c603bdabc4a9d93e6dbeaa672bddfa133024
7
- data.tar.gz: f556bdd5810726cc1b8b60294d08e79aef05d5044436d0cfad664b3e171b8ef70d8f9523d5b17960543b97ea039eb6069e894a9abf37ab76fd6b2916d45448d0
6
+ metadata.gz: 48c974c569828a4f863a21f98fe93834cf1c3e5a0e8b668fcb0a473e0b073a49911825a184ccdbc92069f16765bcd0c219c553fe0daf54fa6d9214f413a47e26
7
+ data.tar.gz: 36ffb0f09a75f67dc59ed44ee1d4bb1aefe8131b17000a06028432c81b87718acd07df7d433e1d5d3e25924f13b8838e3a1810caca3ed0f0f9ecd32e0ae69949
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.556
1
+ 3.0.558
@@ -307,10 +307,16 @@ module TencentCloud
307
307
  # @param TagSet: 弹性公网IP关联的标签列表。
308
308
  # 注意:此字段可能返回 null,表示取不到有效值。
309
309
  # @type TagSet: Array
310
+ # @param DeadlineDate: 到期时间。
311
+ # 注意:此字段可能返回 null,表示取不到有效值。
312
+ # @type DeadlineDate: String
313
+ # @param InstanceType: EIP绑定的实例类型。
314
+ # 注意:此字段可能返回 null,表示取不到有效值。
315
+ # @type InstanceType: String
310
316
 
311
- attr_accessor :AddressId, :AddressName, :AddressStatus, :AddressIp, :InstanceId, :CreatedTime, :NetworkInterfaceId, :PrivateAddressIp, :IsArrears, :IsBlocked, :IsEipDirectConnection, :AddressType, :CascadeRelease, :EipAlgType, :InternetServiceProvider, :LocalBgp, :Bandwidth, :InternetChargeType, :TagSet
317
+ attr_accessor :AddressId, :AddressName, :AddressStatus, :AddressIp, :InstanceId, :CreatedTime, :NetworkInterfaceId, :PrivateAddressIp, :IsArrears, :IsBlocked, :IsEipDirectConnection, :AddressType, :CascadeRelease, :EipAlgType, :InternetServiceProvider, :LocalBgp, :Bandwidth, :InternetChargeType, :TagSet, :DeadlineDate, :InstanceType
312
318
 
313
- def initialize(addressid=nil, addressname=nil, addressstatus=nil, addressip=nil, instanceid=nil, createdtime=nil, networkinterfaceid=nil, privateaddressip=nil, isarrears=nil, isblocked=nil, iseipdirectconnection=nil, addresstype=nil, cascaderelease=nil, eipalgtype=nil, internetserviceprovider=nil, localbgp=nil, bandwidth=nil, internetchargetype=nil, tagset=nil)
319
+ def initialize(addressid=nil, addressname=nil, addressstatus=nil, addressip=nil, instanceid=nil, createdtime=nil, networkinterfaceid=nil, privateaddressip=nil, isarrears=nil, isblocked=nil, iseipdirectconnection=nil, addresstype=nil, cascaderelease=nil, eipalgtype=nil, internetserviceprovider=nil, localbgp=nil, bandwidth=nil, internetchargetype=nil, tagset=nil, deadlinedate=nil, instancetype=nil)
314
320
  @AddressId = addressid
315
321
  @AddressName = addressname
316
322
  @AddressStatus = addressstatus
@@ -330,6 +336,8 @@ module TencentCloud
330
336
  @Bandwidth = bandwidth
331
337
  @InternetChargeType = internetchargetype
332
338
  @TagSet = tagset
339
+ @DeadlineDate = deadlinedate
340
+ @InstanceType = instancetype
333
341
  end
334
342
 
335
343
  def deserialize(params)
@@ -362,6 +370,8 @@ module TencentCloud
362
370
  @TagSet << tag_tmp
363
371
  end
364
372
  end
373
+ @DeadlineDate = params['DeadlineDate']
374
+ @InstanceType = params['InstanceType']
365
375
  end
366
376
  end
367
377
 
@@ -1993,12 +2003,28 @@ module TencentCloud
1993
2003
 
1994
2004
  # 云联网(CCN)地域出带宽上限。
1995
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
1996
2015
 
2016
+ attr_accessor :SourceRegion, :DestinationRegion, :BandwidthLimit
1997
2017
 
1998
- def initialize()
2018
+ def initialize(sourceregion=nil, destinationregion=nil, bandwidthlimit=nil)
2019
+ @SourceRegion = sourceregion
2020
+ @DestinationRegion = destinationregion
2021
+ @BandwidthLimit = bandwidthlimit
1999
2022
  end
2000
2023
 
2001
2024
  def deserialize(params)
2025
+ @SourceRegion = params['SourceRegion']
2026
+ @DestinationRegion = params['DestinationRegion']
2027
+ @BandwidthLimit = params['BandwidthLimit']
2002
2028
  end
2003
2029
  end
2004
2030
 
@@ -4574,7 +4600,7 @@ module TencentCloud
4574
4600
  class CreateVpnConnectionRequest < TencentCloud::Common::AbstractModel
4575
4601
  # @param VpnGatewayId: VPN网关实例ID。
4576
4602
  # @type VpnGatewayId: String
4577
- # @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过DescribeCustomerGateways接口查询对端网关。
4603
+ # @param CustomerGatewayId: 对端网关ID。例如:cgw-2wqq41m9,可通过[DescribeCustomerGateways](https://cloud.tencent.com/document/product/215/17516)接口查询对端网关。
4578
4604
  # @type CustomerGatewayId: String
4579
4605
  # @param VpnConnectionName: 通道名称,可任意命名,但不得超过60个字符。
4580
4606
  # @type VpnConnectionName: String
@@ -4591,11 +4617,11 @@ module TencentCloud
4591
4617
  # @type IPSECOptionsSpecification: :class:`Tencentcloud::Vpc.v20170312.models.IPSECOptionsSpecification`
4592
4618
  # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
4593
4619
  # @type Tags: Array
4594
- # @param EnableHealthCheck: 是否支持隧道内健康检查
4620
+ # @param EnableHealthCheck: 是否支持隧道内健康检查,默认为False。
4595
4621
  # @type EnableHealthCheck: Boolean
4596
- # @param HealthCheckLocalIp: 健康检查本端地址
4622
+ # @param HealthCheckLocalIp: 健康检查本端地址,默认值为随机在169.254.128.0/17分配一个IP。
4597
4623
  # @type HealthCheckLocalIp: String
4598
- # @param HealthCheckRemoteIp: 健康检查对端地址
4624
+ # @param HealthCheckRemoteIp: 健康检查对端地址,默认值为随机在169.254.128.0/17分配一个IP。
4599
4625
  # @type HealthCheckRemoteIp: String
4600
4626
  # @param RouteType: 通道类型, 例如:["STATIC", "StaticRoute", "Policy"]
4601
4627
  # @type RouteType: String
@@ -5399,7 +5425,7 @@ module TencentCloud
5399
5425
 
5400
5426
  # DeleteCustomerGateway请求参数结构体
5401
5427
  class DeleteCustomerGatewayRequest < TencentCloud::Common::AbstractModel
5402
- # @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过DescribeCustomerGateways接口查询对端网关。
5428
+ # @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过[DescribeCustomerGateways](https://cloud.tencent.com/document/api/215/17516)接口查询对端网关。
5403
5429
  # @type CustomerGatewayId: String
5404
5430
 
5405
5431
  attr_accessor :CustomerGatewayId
@@ -14678,7 +14704,7 @@ module TencentCloud
14678
14704
 
14679
14705
  # ModifyCustomerGatewayAttribute请求参数结构体
14680
14706
  class ModifyCustomerGatewayAttributeRequest < TencentCloud::Common::AbstractModel
14681
- # @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过DescribeCustomerGateways接口查询对端网关。
14707
+ # @param CustomerGatewayId: 对端网关ID,例如:cgw-2wqq41m9,可通过[DescribeCustomerGateways](https://cloud.tencent.com/document/api/215/17516)接口查询对端网关。
14682
14708
  # @type CustomerGatewayId: String
14683
14709
  # @param CustomerGatewayName: 对端网关名称,可任意命名,但不得超过60个字符。
14684
14710
  # @type CustomerGatewayName: String
@@ -16108,17 +16134,17 @@ module TencentCloud
16108
16134
  # @type VpnConnectionName: String
16109
16135
  # @param PreShareKey: 预共享密钥。
16110
16136
  # @type PreShareKey: String
16111
- # @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中哪些网段通信。
16112
16138
  # @type SecurityPolicyDatabases: Array
16113
16139
  # @param IKEOptionsSpecification: IKE配置(Internet Key Exchange,因特网密钥交换),IKE具有一套自我保护机制,用户配置网络安全协议。
16114
16140
  # @type IKEOptionsSpecification: :class:`Tencentcloud::Vpc.v20170312.models.IKEOptionsSpecification`
16115
16141
  # @param IPSECOptionsSpecification: IPSec配置,腾讯云提供IPSec安全会话设置。
16116
16142
  # @type IPSECOptionsSpecification: :class:`Tencentcloud::Vpc.v20170312.models.IPSECOptionsSpecification`
16117
- # @param EnableHealthCheck: 是否启用通道健康检查
16143
+ # @param EnableHealthCheck: 是否启用通道健康检查,默认为False。
16118
16144
  # @type EnableHealthCheck: Boolean
16119
- # @param HealthCheckLocalIp: 本端通道探测ip
16145
+ # @param HealthCheckLocalIp: 本端通道探测IP。
16120
16146
  # @type HealthCheckLocalIp: String
16121
- # @param HealthCheckRemoteIp: 对端通道探测ip
16147
+ # @param HealthCheckRemoteIp: 对端通道探测IP。
16122
16148
  # @type HealthCheckRemoteIp: String
16123
16149
  # @param NegotiationType: 协商类型,默认为active(主动协商)。可选值:active(主动协商),passive(被动协商),flowTrigger(流量协商)
16124
16150
  # @type NegotiationType: String
@@ -16128,10 +16154,12 @@ module TencentCloud
16128
16154
  # @type DpdTimeout: String
16129
16155
  # @param DpdAction: DPD超时后的动作。默认为clear。dpdEnable为1(开启)时有效。可取值为clear(断开)和restart(重试)
16130
16156
  # @type DpdAction: String
16157
+ # @param CustomerGatewayId: 对端网关ID,4.0及以上网关下的通道支持更新。
16158
+ # @type CustomerGatewayId: String
16131
16159
 
16132
- 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
16133
16161
 
16134
- 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)
16135
16163
  @VpnConnectionId = vpnconnectionid
16136
16164
  @VpnConnectionName = vpnconnectionname
16137
16165
  @PreShareKey = presharekey
@@ -16145,6 +16173,7 @@ module TencentCloud
16145
16173
  @DpdEnable = dpdenable
16146
16174
  @DpdTimeout = dpdtimeout
16147
16175
  @DpdAction = dpdaction
16176
+ @CustomerGatewayId = customergatewayid
16148
16177
  end
16149
16178
 
16150
16179
  def deserialize(params)
@@ -16174,6 +16203,7 @@ module TencentCloud
16174
16203
  @DpdEnable = params['DpdEnable']
16175
16204
  @DpdTimeout = params['DpdTimeout']
16176
16205
  @DpdAction = params['DpdAction']
16206
+ @CustomerGatewayId = params['CustomerGatewayId']
16177
16207
  end
16178
16208
  end
16179
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.556
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-20 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