tencentcloud-sdk-vpc 1.0.203 → 1.0.204

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 +27 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1869ec671bd82bfd50f290623a3bd55baace80c0
4
- data.tar.gz: 522fc77f81a355788ab5b1dcab955b972fcca183
3
+ metadata.gz: cef2fcda61693ceef1a5c3f94b069c0d0023e6f4
4
+ data.tar.gz: 491b831fbcbb7d84cc088e5074c0c64586ab66c4
5
5
  SHA512:
6
- metadata.gz: 38ec0ca471ae6779076cef612eacbfff602e84193fcb7e96e5065866a9e4b0f225a996f98f41ed2f7b426ad5e1864d2fbc88b263ecc2b09c6d617d8dccca1f5e
7
- data.tar.gz: ce20ce05986405defdf5d55a6b4bbee2c4d1742a8ab7ecc02ee6dcdaa5d06632758f6ac469e734f6c48aae7a38f59e959341adc38ef5847bab8c3d01f170d5c9
6
+ metadata.gz: 20b227c58b1183faf080b8ab2c6f71c6dfaffc96d80e0e8cff3502d0a751aa20280749c2df2a63d9e0a508766b8f98efd6c94816d2db346a9e71b57d8f74cebd
7
+ data.tar.gz: 4f686a7b2f14b544286f967d9db092c84c601ce0f9c2a2fda556267e0aee6934f3960fa5439e576e8aba5b3739af0f8223ddb90dd7c8e8cd2ae3a2917683b700
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.203
1
+ 1.0.204
@@ -4130,14 +4130,18 @@ module TencentCloud
4130
4130
  # @type InstanceChargePrepaid: :class:`Tencentcloud::Vpc.v20170312.models.InstanceChargePrepaid`
4131
4131
  # @param Zone: 可用区,如:ap-guangzhou-2。
4132
4132
  # @type Zone: String
4133
- # @param Type: VPN网关类型。值“CCN”云联网类型VPN网关
4133
+ # @param Type: VPN网关类型。值“CCN”云联网类型VPN网关,值SSL为SSL-VPN
4134
4134
  # @type Type: String
4135
4135
  # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
4136
4136
  # @type Tags: Array
4137
+ # @param CdcId: CDC实例ID
4138
+ # @type CdcId: String
4139
+ # @param MaxConnection: SSL-VPN 最大CLIENT 连接数。可选 [5, 10, 20, 50, 100]。仅SSL-VPN 需要选这个参数。
4140
+ # @type MaxConnection: Integer
4137
4141
 
4138
- attr_accessor :VpcId, :VpnGatewayName, :InternetMaxBandwidthOut, :InstanceChargeType, :InstanceChargePrepaid, :Zone, :Type, :Tags
4142
+ attr_accessor :VpcId, :VpnGatewayName, :InternetMaxBandwidthOut, :InstanceChargeType, :InstanceChargePrepaid, :Zone, :Type, :Tags, :CdcId, :MaxConnection
4139
4143
 
4140
- def initialize(vpcid=nil, vpngatewayname=nil, internetmaxbandwidthout=nil, instancechargetype=nil, instancechargeprepaid=nil, zone=nil, type=nil, tags=nil)
4144
+ def initialize(vpcid=nil, vpngatewayname=nil, internetmaxbandwidthout=nil, instancechargetype=nil, instancechargeprepaid=nil, zone=nil, type=nil, tags=nil, cdcid=nil, maxconnection=nil)
4141
4145
  @VpcId = vpcid
4142
4146
  @VpnGatewayName = vpngatewayname
4143
4147
  @InternetMaxBandwidthOut = internetmaxbandwidthout
@@ -4146,6 +4150,8 @@ module TencentCloud
4146
4150
  @Zone = zone
4147
4151
  @Type = type
4148
4152
  @Tags = tags
4153
+ @CdcId = cdcid
4154
+ @MaxConnection = maxconnection
4149
4155
  end
4150
4156
 
4151
4157
  def deserialize(params)
@@ -4167,6 +4173,8 @@ module TencentCloud
4167
4173
  @Tags << tag_tmp
4168
4174
  end
4169
4175
  end
4176
+ @CdcId = params['CdcId']
4177
+ @MaxConnection = params['MaxConnection']
4170
4178
  end
4171
4179
  end
4172
4180
 
@@ -12701,16 +12709,20 @@ module TencentCloud
12701
12709
 
12702
12710
  # ModifyIp6AddressesBandwidth返回参数结构体
12703
12711
  class ModifyIp6AddressesBandwidthResponse < TencentCloud::Common::AbstractModel
12712
+ # @param TaskId: 任务ID
12713
+ # @type TaskId: String
12704
12714
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12705
12715
  # @type RequestId: String
12706
12716
 
12707
- attr_accessor :RequestId
12717
+ attr_accessor :TaskId, :RequestId
12708
12718
 
12709
- def initialize(requestid=nil)
12719
+ def initialize(taskid=nil, requestid=nil)
12720
+ @TaskId = taskid
12710
12721
  @RequestId = requestid
12711
12722
  end
12712
12723
 
12713
12724
  def deserialize(params)
12725
+ @TaskId = params['TaskId']
12714
12726
  @RequestId = params['RequestId']
12715
12727
  end
12716
12728
  end
@@ -17098,10 +17110,14 @@ module TencentCloud
17098
17110
  # @type Version: String
17099
17111
  # @param NetworkInstanceId: Type值为CCN时,该值表示云联网实例ID
17100
17112
  # @type NetworkInstanceId: String
17113
+ # @param CdcId: CDC 实例ID
17114
+ # @type CdcId: String
17115
+ # @param MaxConnection: SSL-VPN 客户端连接数。
17116
+ # @type MaxConnection: Integer
17101
17117
 
17102
- attr_accessor :VpnGatewayId, :VpcId, :VpnGatewayName, :Type, :State, :PublicIpAddress, :RenewFlag, :InstanceChargeType, :InternetMaxBandwidthOut, :CreatedTime, :ExpiredTime, :IsAddressBlocked, :NewPurchasePlan, :RestrictState, :Zone, :VpnGatewayQuotaSet, :Version, :NetworkInstanceId
17118
+ attr_accessor :VpnGatewayId, :VpcId, :VpnGatewayName, :Type, :State, :PublicIpAddress, :RenewFlag, :InstanceChargeType, :InternetMaxBandwidthOut, :CreatedTime, :ExpiredTime, :IsAddressBlocked, :NewPurchasePlan, :RestrictState, :Zone, :VpnGatewayQuotaSet, :Version, :NetworkInstanceId, :CdcId, :MaxConnection
17103
17119
 
17104
- def initialize(vpngatewayid=nil, vpcid=nil, vpngatewayname=nil, type=nil, state=nil, publicipaddress=nil, renewflag=nil, instancechargetype=nil, internetmaxbandwidthout=nil, createdtime=nil, expiredtime=nil, isaddressblocked=nil, newpurchaseplan=nil, restrictstate=nil, zone=nil, vpngatewayquotaset=nil, version=nil, networkinstanceid=nil)
17120
+ def initialize(vpngatewayid=nil, vpcid=nil, vpngatewayname=nil, type=nil, state=nil, publicipaddress=nil, renewflag=nil, instancechargetype=nil, internetmaxbandwidthout=nil, createdtime=nil, expiredtime=nil, isaddressblocked=nil, newpurchaseplan=nil, restrictstate=nil, zone=nil, vpngatewayquotaset=nil, version=nil, networkinstanceid=nil, cdcid=nil, maxconnection=nil)
17105
17121
  @VpnGatewayId = vpngatewayid
17106
17122
  @VpcId = vpcid
17107
17123
  @VpnGatewayName = vpngatewayname
@@ -17120,6 +17136,8 @@ module TencentCloud
17120
17136
  @VpnGatewayQuotaSet = vpngatewayquotaset
17121
17137
  @Version = version
17122
17138
  @NetworkInstanceId = networkinstanceid
17139
+ @CdcId = cdcid
17140
+ @MaxConnection = maxconnection
17123
17141
  end
17124
17142
 
17125
17143
  def deserialize(params)
@@ -17148,6 +17166,8 @@ module TencentCloud
17148
17166
  end
17149
17167
  @Version = params['Version']
17150
17168
  @NetworkInstanceId = params['NetworkInstanceId']
17169
+ @CdcId = params['CdcId']
17170
+ @MaxConnection = params['MaxConnection']
17151
17171
  end
17152
17172
  end
17153
17173
 
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: 1.0.203
4
+ version: 1.0.204
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-16 00:00:00.000000000 Z
11
+ date: 2021-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common