tencentcloud-sdk-vpc 3.0.1106 → 3.0.1122
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 +1 -1
- data/lib/v20170312/models.rb +23 -11
- 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: d9dd7d49bdac98e9bce6338391de922ff04b5c4f
|
4
|
+
data.tar.gz: a389d9e18564d31fdf0d37922a777e5db811f4f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 792477a9b54d566794a833f5ccafb79edab5de99098e48c17bd0c064857509efcfa5e5aa2695e9b4012cf3171562c1f0044641f9b84df1746a664da784f6ba2c
|
7
|
+
data.tar.gz: 1a991ce6b8c128c91759ca31cae5c65b2a59035b47834766a087364f6d6c78eab2e937e051c500c97db9ae8004797d1d5d047aebe3cd62a9780cb32366b1b6f9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1122
|
data/lib/v20170312/client.rb
CHANGED
@@ -448,7 +448,7 @@ module TencentCloud
|
|
448
448
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
449
449
|
end
|
450
450
|
|
451
|
-
# 本接口(AssociateHaVipInstance)用于HAVIP绑定子机或网卡(限制HaVip
|
451
|
+
# 本接口(AssociateHaVipInstance)用于HAVIP绑定子机或网卡(限制HaVip的漂移范围)。
|
452
452
|
|
453
453
|
# @param request: Request instance for AssociateHaVipInstance.
|
454
454
|
# @type request: :class:`Tencentcloud::vpc::V20170312::AssociateHaVipInstanceRequest`
|
data/lib/v20170312/models.rb
CHANGED
@@ -793,8 +793,8 @@ module TencentCloud
|
|
793
793
|
|
794
794
|
attr_accessor :AddressCount, :InternetServiceProvider, :InternetChargeType, :InternetMaxBandwidthOut, :AddressChargePrepaid, :AddressType, :AnycastZone, :VipCluster, :ApplicableForCLB, :Tags, :BandwidthPackageId, :AddressName, :DedicatedClusterId, :IsDedicatedAddressPool, :Egress, :AntiDDoSPackageId, :ClientToken
|
795
795
|
extend Gem::Deprecate
|
796
|
-
deprecate :ApplicableForCLB, :none, 2025,
|
797
|
-
deprecate :ApplicableForCLB=, :none, 2025,
|
796
|
+
deprecate :ApplicableForCLB, :none, 2025, 8
|
797
|
+
deprecate :ApplicableForCLB=, :none, 2025, 8
|
798
798
|
|
799
799
|
def initialize(addresscount=nil, internetserviceprovider=nil, internetchargetype=nil, internetmaxbandwidthout=nil, addresschargeprepaid=nil, addresstype=nil, anycastzone=nil, vipcluster=nil, applicableforclb=nil, tags=nil, bandwidthpackageid=nil, addressname=nil, dedicatedclusterid=nil, isdedicatedaddresspool=nil, egress=nil, antiddospackageid=nil, clienttoken=nil)
|
800
800
|
@AddressCount = addresscount
|
@@ -1448,12 +1448,24 @@ module TencentCloud
|
|
1448
1448
|
|
1449
1449
|
# AssociateHaVipInstance请求参数结构体
|
1450
1450
|
class AssociateHaVipInstanceRequest < TencentCloud::Common::AbstractModel
|
1451
|
+
# @param HaVipAssociationSet: HaVip绑定的子机或网卡。最多支持10个实例。
|
1452
|
+
# @type HaVipAssociationSet: Array
|
1451
1453
|
|
1454
|
+
attr_accessor :HaVipAssociationSet
|
1452
1455
|
|
1453
|
-
def initialize()
|
1456
|
+
def initialize(havipassociationset=nil)
|
1457
|
+
@HaVipAssociationSet = havipassociationset
|
1454
1458
|
end
|
1455
1459
|
|
1456
1460
|
def deserialize(params)
|
1461
|
+
unless params['HaVipAssociationSet'].nil?
|
1462
|
+
@HaVipAssociationSet = []
|
1463
|
+
params['HaVipAssociationSet'].each do |i|
|
1464
|
+
havipassociation_tmp = HaVipAssociation.new
|
1465
|
+
havipassociation_tmp.deserialize(i)
|
1466
|
+
@HaVipAssociationSet << havipassociation_tmp
|
1467
|
+
end
|
1468
|
+
end
|
1457
1469
|
end
|
1458
1470
|
end
|
1459
1471
|
|
@@ -4807,8 +4819,8 @@ module TencentCloud
|
|
4807
4819
|
|
4808
4820
|
attr_accessor :NatGatewayName, :VpcId, :InternetMaxBandwidthOut, :MaxConcurrentConnection, :AddressCount, :PublicIpAddresses, :Zone, :Tags, :SubnetId, :StockPublicIpAddressesBandwidthOut, :PublicIpAddressesBandwidthOut, :PublicIpFromSameZone, :NatProductVersion
|
4809
4821
|
extend Gem::Deprecate
|
4810
|
-
deprecate :SubnetId, :none, 2025,
|
4811
|
-
deprecate :SubnetId=, :none, 2025,
|
4822
|
+
deprecate :SubnetId, :none, 2025, 8
|
4823
|
+
deprecate :SubnetId=, :none, 2025, 8
|
4812
4824
|
|
4813
4825
|
def initialize(natgatewayname=nil, vpcid=nil, internetmaxbandwidthout=nil, maxconcurrentconnection=nil, addresscount=nil, publicipaddresses=nil, zone=nil, tags=nil, subnetid=nil, stockpublicipaddressesbandwidthout=nil, publicipaddressesbandwidthout=nil, publicipfromsamezone=nil, natproductversion=nil)
|
4814
4826
|
@NatGatewayName = natgatewayname
|
@@ -18725,8 +18737,8 @@ module TencentCloud
|
|
18725
18737
|
|
18726
18738
|
attr_accessor :EncryptAlgorithm, :IntegrityAlgorith, :IPSECSaLifetimeSeconds, :PfsDhGroup, :IPSECSaLifetimeTraffic, :IntegrityAlgorithm
|
18727
18739
|
extend Gem::Deprecate
|
18728
|
-
deprecate :IntegrityAlgorith, :none, 2025,
|
18729
|
-
deprecate :IntegrityAlgorith=, :none, 2025,
|
18740
|
+
deprecate :IntegrityAlgorith, :none, 2025, 8
|
18741
|
+
deprecate :IntegrityAlgorith=, :none, 2025, 8
|
18730
18742
|
|
18731
18743
|
def initialize(encryptalgorithm=nil, integrityalgorith=nil, ipsecsalifetimeseconds=nil, pfsdhgroup=nil, ipsecsalifetimetraffic=nil, integrityalgorithm=nil)
|
18732
18744
|
@EncryptAlgorithm = encryptalgorithm
|
@@ -20113,10 +20125,10 @@ module TencentCloud
|
|
20113
20125
|
|
20114
20126
|
attr_accessor :AddressIds, :InternetMaxBandwidthOut, :StartTime, :EndTime
|
20115
20127
|
extend Gem::Deprecate
|
20116
|
-
deprecate :StartTime, :none, 2025,
|
20117
|
-
deprecate :StartTime=, :none, 2025,
|
20118
|
-
deprecate :EndTime, :none, 2025,
|
20119
|
-
deprecate :EndTime=, :none, 2025,
|
20128
|
+
deprecate :StartTime, :none, 2025, 8
|
20129
|
+
deprecate :StartTime=, :none, 2025, 8
|
20130
|
+
deprecate :EndTime, :none, 2025, 8
|
20131
|
+
deprecate :EndTime=, :none, 2025, 8
|
20120
20132
|
|
20121
20133
|
def initialize(addressids=nil, internetmaxbandwidthout=nil, starttime=nil, endtime=nil)
|
20122
20134
|
@AddressIds = addressids
|
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.1122
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|