tencentcloud-sdk-vpc 1.0.281 → 1.0.284
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/client.rb +2 -2
- data/lib/v20170312/models.rb +21 -5
- 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: 23eb42823619fad6e63e0d0536428606dd73c1a3
|
|
4
|
+
data.tar.gz: 58ace38065af863d5a3b48c99c6096ef987ff8ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 894fdac712deb66a2711c68f3ad9a1ef2ebb08d70f3661e035d3ffe476da432bfa21b46440a374186e2f1811c7cef07fef6d1143f689796725a9496b0e436972
|
|
7
|
+
data.tar.gz: fbbca5f645c471b7a9581924971cf59b4243c3472128bd9dd6b16157afc1d4f4fdcfa82206a7c46a12110246a16042e42d0be13ac62afecaa29c6017fadcfd65
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.284
|
data/lib/v20170312/client.rb
CHANGED
|
@@ -5813,7 +5813,7 @@ module TencentCloud
|
|
|
5813
5813
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
5814
5814
|
end
|
|
5815
5815
|
|
|
5816
|
-
#
|
|
5816
|
+
# 修改弹性网卡服务质量。
|
|
5817
5817
|
|
|
5818
5818
|
# @param request: Request instance for ModifyNetworkInterfaceQos.
|
|
5819
5819
|
# @type request: :class:`Tencentcloud::vpc::V20170312::ModifyNetworkInterfaceQosRequest`
|
|
@@ -6237,7 +6237,7 @@ module TencentCloud
|
|
|
6237
6237
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
6238
6238
|
end
|
|
6239
6239
|
|
|
6240
|
-
#
|
|
6240
|
+
# 本接口(NotifyRoutes)用于路由表列表页操作增加“发布到云联网”,发布路由到云联网。
|
|
6241
6241
|
|
|
6242
6242
|
# @param request: Request instance for NotifyRoutes.
|
|
6243
6243
|
# @type request: :class:`Tencentcloud::vpc::V20170312::NotifyRoutesRequest`
|
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
|
|
|
@@ -13900,7 +13916,7 @@ module TencentCloud
|
|
|
13900
13916
|
class ModifyNetworkInterfaceQosRequest < TencentCloud::Common::AbstractModel
|
|
13901
13917
|
# @param NetworkInterfaceIds: 弹性网卡ID,支持批量修改。
|
|
13902
13918
|
# @type NetworkInterfaceIds: Array
|
|
13903
|
-
# @param QosLevel: 服务质量,可选值:AU、AG、
|
|
13919
|
+
# @param QosLevel: 服务质量,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
|
|
13904
13920
|
# @type QosLevel: String
|
|
13905
13921
|
|
|
13906
13922
|
attr_accessor :NetworkInterfaceIds, :QosLevel
|
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.284
|
|
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-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|