tencentcloud-sdk-vpc 3.0.561 → 3.0.563
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +24 -8
- 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: aed750a3884402bcefce798079c3dc10aede2ecf
|
4
|
+
data.tar.gz: 47e9f4e42f477e4eed2fe2ef4d8981d0d26afc2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77530675450457fd442ded3bec83c6a26b67ccafc90a75abf551c6d8758fc5b488a4cf5f1caa9fe54dee212b74a8d2d0f10343c0af60d1239705a9694e5ef5ed
|
7
|
+
data.tar.gz: 1c5af61e38c12e30ba3db4026dfd708cb1b436b39987e776473dfb37d1db24c71ca4afe7ed588870eee4fe3bb88be5615cd3a73e391416eb7f7c43e4a3cd7c75
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.563
|
data/lib/v20170312/models.rb
CHANGED
@@ -923,13 +923,16 @@ module TencentCloud
|
|
923
923
|
# @type PrivateIpAddresses: Array
|
924
924
|
# @param SecondaryPrivateIpAddressCount: 新申请的内网IP地址个数,与PrivateIpAddresses至少提供一个。内网IP地址个数总和不能超过配额数,详见<a href="/document/product/576/18527">弹性网卡使用限制</a>。
|
925
925
|
# @type SecondaryPrivateIpAddressCount: Integer
|
926
|
+
# @param QosLevel: IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
|
927
|
+
# @type QosLevel: String
|
926
928
|
|
927
|
-
attr_accessor :NetworkInterfaceId, :PrivateIpAddresses, :SecondaryPrivateIpAddressCount
|
929
|
+
attr_accessor :NetworkInterfaceId, :PrivateIpAddresses, :SecondaryPrivateIpAddressCount, :QosLevel
|
928
930
|
|
929
|
-
def initialize(networkinterfaceid=nil, privateipaddresses=nil, secondaryprivateipaddresscount=nil)
|
931
|
+
def initialize(networkinterfaceid=nil, privateipaddresses=nil, secondaryprivateipaddresscount=nil, qoslevel=nil)
|
930
932
|
@NetworkInterfaceId = networkinterfaceid
|
931
933
|
@PrivateIpAddresses = privateipaddresses
|
932
934
|
@SecondaryPrivateIpAddressCount = secondaryprivateipaddresscount
|
935
|
+
@QosLevel = qoslevel
|
933
936
|
end
|
934
937
|
|
935
938
|
def deserialize(params)
|
@@ -943,6 +946,7 @@ module TencentCloud
|
|
943
946
|
end
|
944
947
|
end
|
945
948
|
@SecondaryPrivateIpAddressCount = params['SecondaryPrivateIpAddressCount']
|
949
|
+
@QosLevel = params['QosLevel']
|
946
950
|
end
|
947
951
|
end
|
948
952
|
|
@@ -2520,6 +2524,8 @@ module TencentCloud
|
|
2520
2524
|
# @type PrivateIpAddresses: Array
|
2521
2525
|
# @param SecondaryPrivateIpAddressCount: 新申请的内网IP地址个数,内网IP地址个数总和不能超过配额数。
|
2522
2526
|
# @type SecondaryPrivateIpAddressCount: Integer
|
2527
|
+
# @param QosLevel: IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
|
2528
|
+
# @type QosLevel: String
|
2523
2529
|
# @param SecurityGroupIds: 指定绑定的安全组,例如:['sg-1dd51d']。
|
2524
2530
|
# @type SecurityGroupIds: Array
|
2525
2531
|
# @param NetworkInterfaceDescription: 弹性网卡描述,可任意命名,但不得超过60个字符。
|
@@ -2529,15 +2535,16 @@ module TencentCloud
|
|
2529
2535
|
# @param AttachType: 绑定类型:0 标准型 1 扩展型。
|
2530
2536
|
# @type AttachType: Integer
|
2531
2537
|
|
2532
|
-
attr_accessor :VpcId, :NetworkInterfaceName, :SubnetId, :InstanceId, :PrivateIpAddresses, :SecondaryPrivateIpAddressCount, :SecurityGroupIds, :NetworkInterfaceDescription, :Tags, :AttachType
|
2538
|
+
attr_accessor :VpcId, :NetworkInterfaceName, :SubnetId, :InstanceId, :PrivateIpAddresses, :SecondaryPrivateIpAddressCount, :QosLevel, :SecurityGroupIds, :NetworkInterfaceDescription, :Tags, :AttachType
|
2533
2539
|
|
2534
|
-
def initialize(vpcid=nil, networkinterfacename=nil, subnetid=nil, instanceid=nil, privateipaddresses=nil, secondaryprivateipaddresscount=nil, securitygroupids=nil, networkinterfacedescription=nil, tags=nil, attachtype=nil)
|
2540
|
+
def initialize(vpcid=nil, networkinterfacename=nil, subnetid=nil, instanceid=nil, privateipaddresses=nil, secondaryprivateipaddresscount=nil, qoslevel=nil, securitygroupids=nil, networkinterfacedescription=nil, tags=nil, attachtype=nil)
|
2535
2541
|
@VpcId = vpcid
|
2536
2542
|
@NetworkInterfaceName = networkinterfacename
|
2537
2543
|
@SubnetId = subnetid
|
2538
2544
|
@InstanceId = instanceid
|
2539
2545
|
@PrivateIpAddresses = privateipaddresses
|
2540
2546
|
@SecondaryPrivateIpAddressCount = secondaryprivateipaddresscount
|
2547
|
+
@QosLevel = qoslevel
|
2541
2548
|
@SecurityGroupIds = securitygroupids
|
2542
2549
|
@NetworkInterfaceDescription = networkinterfacedescription
|
2543
2550
|
@Tags = tags
|
@@ -2558,6 +2565,7 @@ module TencentCloud
|
|
2558
2565
|
end
|
2559
2566
|
end
|
2560
2567
|
@SecondaryPrivateIpAddressCount = params['SecondaryPrivateIpAddressCount']
|
2568
|
+
@QosLevel = params['QosLevel']
|
2561
2569
|
@SecurityGroupIds = params['SecurityGroupIds']
|
2562
2570
|
@NetworkInterfaceDescription = params['NetworkInterfaceDescription']
|
2563
2571
|
unless params['Tags'].nil?
|
@@ -3700,6 +3708,8 @@ module TencentCloud
|
|
3700
3708
|
# @type NetworkInterfaceDescription: String
|
3701
3709
|
# @param SecondaryPrivateIpAddressCount: 新申请的内网IP地址个数,内网IP地址个数总和不能超过配额数。
|
3702
3710
|
# @type SecondaryPrivateIpAddressCount: Integer
|
3711
|
+
# @param QosLevel: IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
|
3712
|
+
# @type QosLevel: String
|
3703
3713
|
# @param SecurityGroupIds: 指定绑定的安全组,例如:['sg-1dd51d']。
|
3704
3714
|
# @type SecurityGroupIds: Array
|
3705
3715
|
# @param PrivateIpAddresses: 指定的内网IP信息,单次最多指定10个。
|
@@ -3709,14 +3719,15 @@ module TencentCloud
|
|
3709
3719
|
# @param TrunkingFlag: 网卡trunking模式设置,Enable-开启,Disable--关闭,默认关闭。
|
3710
3720
|
# @type TrunkingFlag: String
|
3711
3721
|
|
3712
|
-
attr_accessor :VpcId, :NetworkInterfaceName, :SubnetId, :NetworkInterfaceDescription, :SecondaryPrivateIpAddressCount, :SecurityGroupIds, :PrivateIpAddresses, :Tags, :TrunkingFlag
|
3722
|
+
attr_accessor :VpcId, :NetworkInterfaceName, :SubnetId, :NetworkInterfaceDescription, :SecondaryPrivateIpAddressCount, :QosLevel, :SecurityGroupIds, :PrivateIpAddresses, :Tags, :TrunkingFlag
|
3713
3723
|
|
3714
|
-
def initialize(vpcid=nil, networkinterfacename=nil, subnetid=nil, networkinterfacedescription=nil, secondaryprivateipaddresscount=nil, securitygroupids=nil, privateipaddresses=nil, tags=nil, trunkingflag=nil)
|
3724
|
+
def initialize(vpcid=nil, networkinterfacename=nil, subnetid=nil, networkinterfacedescription=nil, secondaryprivateipaddresscount=nil, qoslevel=nil, securitygroupids=nil, privateipaddresses=nil, tags=nil, trunkingflag=nil)
|
3715
3725
|
@VpcId = vpcid
|
3716
3726
|
@NetworkInterfaceName = networkinterfacename
|
3717
3727
|
@SubnetId = subnetid
|
3718
3728
|
@NetworkInterfaceDescription = networkinterfacedescription
|
3719
3729
|
@SecondaryPrivateIpAddressCount = secondaryprivateipaddresscount
|
3730
|
+
@QosLevel = qoslevel
|
3720
3731
|
@SecurityGroupIds = securitygroupids
|
3721
3732
|
@PrivateIpAddresses = privateipaddresses
|
3722
3733
|
@Tags = tags
|
@@ -3729,6 +3740,7 @@ module TencentCloud
|
|
3729
3740
|
@SubnetId = params['SubnetId']
|
3730
3741
|
@NetworkInterfaceDescription = params['NetworkInterfaceDescription']
|
3731
3742
|
@SecondaryPrivateIpAddressCount = params['SecondaryPrivateIpAddressCount']
|
3743
|
+
@QosLevel = params['QosLevel']
|
3732
3744
|
@SecurityGroupIds = params['SecurityGroupIds']
|
3733
3745
|
unless params['PrivateIpAddresses'].nil?
|
3734
3746
|
@PrivateIpAddresses = []
|
@@ -17260,10 +17272,12 @@ module TencentCloud
|
|
17260
17272
|
# DELETING:删除中
|
17261
17273
|
# AVAILABLE:可用的
|
17262
17274
|
# @type State: String
|
17275
|
+
# @param QosLevel: IP服务质量等级,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
|
17276
|
+
# @type QosLevel: String
|
17263
17277
|
|
17264
|
-
attr_accessor :PrivateIpAddress, :Primary, :PublicIpAddress, :AddressId, :Description, :IsWanIpBlocked, :State
|
17278
|
+
attr_accessor :PrivateIpAddress, :Primary, :PublicIpAddress, :AddressId, :Description, :IsWanIpBlocked, :State, :QosLevel
|
17265
17279
|
|
17266
|
-
def initialize(privateipaddress=nil, primary=nil, publicipaddress=nil, addressid=nil, description=nil, iswanipblocked=nil, state=nil)
|
17280
|
+
def initialize(privateipaddress=nil, primary=nil, publicipaddress=nil, addressid=nil, description=nil, iswanipblocked=nil, state=nil, qoslevel=nil)
|
17267
17281
|
@PrivateIpAddress = privateipaddress
|
17268
17282
|
@Primary = primary
|
17269
17283
|
@PublicIpAddress = publicipaddress
|
@@ -17271,6 +17285,7 @@ module TencentCloud
|
|
17271
17285
|
@Description = description
|
17272
17286
|
@IsWanIpBlocked = iswanipblocked
|
17273
17287
|
@State = state
|
17288
|
+
@QosLevel = qoslevel
|
17274
17289
|
end
|
17275
17290
|
|
17276
17291
|
def deserialize(params)
|
@@ -17281,6 +17296,7 @@ module TencentCloud
|
|
17281
17296
|
@Description = params['Description']
|
17282
17297
|
@IsWanIpBlocked = params['IsWanIpBlocked']
|
17283
17298
|
@State = params['State']
|
17299
|
+
@QosLevel = params['QosLevel']
|
17284
17300
|
end
|
17285
17301
|
end
|
17286
17302
|
|
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.
|
4
|
+
version: 3.0.563
|
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-
|
11
|
+
date: 2023-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|