tencentcloud-sdk-vpc 1.0.281 → 1.0.282
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 +20 -4
- 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: 49b456a8bb4e378fb2ee4f0b888a9109dcd64909
|
4
|
+
data.tar.gz: 5ed673e30cec88e1325169f2ddc91d623bd3134c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2aa8af9b91c768589b447b54fbd68bff9f47abcc72e06841af6dbbf96750c8e9548862cd4fdf8e6827694f5078a3bdbd2a7c8bbb2344890dc60255d733a439e2
|
7
|
+
data.tar.gz: 09aa2b0658345bbf3e762a745bc0f3115fe31c8cdce8af5f8017891ca2cfc240f590c7f6f78b6d0559be3a012e20803e3b98520b6c13bb5e2eb333d64e283e72
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.282
|
data/lib/v20170312/models.rb
CHANGED
@@ -1053,14 +1053,20 @@ module TencentCloud
|
|
1053
1053
|
# @type PublicIpAddresses: Array
|
1054
1054
|
# @param Zone: 弹性IP可用区,自动分配弹性IP时传递。
|
1055
1055
|
# @type Zone: String
|
1056
|
+
# @param StockPublicIpAddressesBandwidthOut: 绑定NAT网关的弹性IP带宽大小(单位Mbps),默认为当前用户类型所能使用的最大值。
|
1057
|
+
# @type StockPublicIpAddressesBandwidthOut: Integer
|
1058
|
+
# @param PublicIpAddressesBandwidthOut: 需要申请公网IP带宽大小(单位Mbps),默认为当前用户类型所能使用的最大值。
|
1059
|
+
# @type PublicIpAddressesBandwidthOut: Integer
|
1056
1060
|
|
1057
|
-
attr_accessor :NatGatewayId, :AddressCount, :PublicIpAddresses, :Zone
|
1061
|
+
attr_accessor :NatGatewayId, :AddressCount, :PublicIpAddresses, :Zone, :StockPublicIpAddressesBandwidthOut, :PublicIpAddressesBandwidthOut
|
1058
1062
|
|
1059
|
-
def initialize(natgatewayid=nil, addresscount=nil, publicipaddresses=nil, zone=nil)
|
1063
|
+
def initialize(natgatewayid=nil, addresscount=nil, publicipaddresses=nil, zone=nil, stockpublicipaddressesbandwidthout=nil, publicipaddressesbandwidthout=nil)
|
1060
1064
|
@NatGatewayId = natgatewayid
|
1061
1065
|
@AddressCount = addresscount
|
1062
1066
|
@PublicIpAddresses = publicipaddresses
|
1063
1067
|
@Zone = zone
|
1068
|
+
@StockPublicIpAddressesBandwidthOut = stockpublicipaddressesbandwidthout
|
1069
|
+
@PublicIpAddressesBandwidthOut = publicipaddressesbandwidthout
|
1064
1070
|
end
|
1065
1071
|
|
1066
1072
|
def deserialize(params)
|
@@ -1068,6 +1074,8 @@ module TencentCloud
|
|
1068
1074
|
@AddressCount = params['AddressCount']
|
1069
1075
|
@PublicIpAddresses = params['PublicIpAddresses']
|
1070
1076
|
@Zone = params['Zone']
|
1077
|
+
@StockPublicIpAddressesBandwidthOut = params['StockPublicIpAddressesBandwidthOut']
|
1078
|
+
@PublicIpAddressesBandwidthOut = params['PublicIpAddressesBandwidthOut']
|
1071
1079
|
end
|
1072
1080
|
end
|
1073
1081
|
|
@@ -3015,10 +3023,14 @@ module TencentCloud
|
|
3015
3023
|
# @type Tags: Array
|
3016
3024
|
# @param SubnetId: NAT网关所属子网
|
3017
3025
|
# @type SubnetId: String
|
3026
|
+
# @param StockPublicIpAddressesBandwidthOut: 绑定NAT网关的弹性IP带宽大小(单位Mbps),默认为当前用户类型所能使用的最大值。
|
3027
|
+
# @type StockPublicIpAddressesBandwidthOut: Integer
|
3028
|
+
# @param PublicIpAddressesBandwidthOut: 需要申请公网IP带宽大小(单位Mbps),默认为当前用户类型所能使用的最大值。
|
3029
|
+
# @type PublicIpAddressesBandwidthOut: Integer
|
3018
3030
|
|
3019
|
-
attr_accessor :NatGatewayName, :VpcId, :InternetMaxBandwidthOut, :MaxConcurrentConnection, :AddressCount, :PublicIpAddresses, :Zone, :Tags, :SubnetId
|
3031
|
+
attr_accessor :NatGatewayName, :VpcId, :InternetMaxBandwidthOut, :MaxConcurrentConnection, :AddressCount, :PublicIpAddresses, :Zone, :Tags, :SubnetId, :StockPublicIpAddressesBandwidthOut, :PublicIpAddressesBandwidthOut
|
3020
3032
|
|
3021
|
-
def initialize(natgatewayname=nil, vpcid=nil, internetmaxbandwidthout=nil, maxconcurrentconnection=nil, addresscount=nil, publicipaddresses=nil, zone=nil, tags=nil, subnetid=nil)
|
3033
|
+
def initialize(natgatewayname=nil, vpcid=nil, internetmaxbandwidthout=nil, maxconcurrentconnection=nil, addresscount=nil, publicipaddresses=nil, zone=nil, tags=nil, subnetid=nil, stockpublicipaddressesbandwidthout=nil, publicipaddressesbandwidthout=nil)
|
3022
3034
|
@NatGatewayName = natgatewayname
|
3023
3035
|
@VpcId = vpcid
|
3024
3036
|
@InternetMaxBandwidthOut = internetmaxbandwidthout
|
@@ -3028,6 +3040,8 @@ module TencentCloud
|
|
3028
3040
|
@Zone = zone
|
3029
3041
|
@Tags = tags
|
3030
3042
|
@SubnetId = subnetid
|
3043
|
+
@StockPublicIpAddressesBandwidthOut = stockpublicipaddressesbandwidthout
|
3044
|
+
@PublicIpAddressesBandwidthOut = publicipaddressesbandwidthout
|
3031
3045
|
end
|
3032
3046
|
|
3033
3047
|
def deserialize(params)
|
@@ -3047,6 +3061,8 @@ module TencentCloud
|
|
3047
3061
|
end
|
3048
3062
|
end
|
3049
3063
|
@SubnetId = params['SubnetId']
|
3064
|
+
@StockPublicIpAddressesBandwidthOut = params['StockPublicIpAddressesBandwidthOut']
|
3065
|
+
@PublicIpAddressesBandwidthOut = params['PublicIpAddressesBandwidthOut']
|
3050
3066
|
end
|
3051
3067
|
end
|
3052
3068
|
|
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.
|
4
|
+
version: 1.0.282
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|