tencentcloud-sdk-vpc 3.0.1080 → 3.0.1092

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 +16 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35900c15072b0c5f37de5cafddad2667b1523cf0
4
- data.tar.gz: 78a0ee754aba7b95b3536aa7d36eda53e54edea3
3
+ metadata.gz: dc11310e132234aa96a50b7d49035f066547eb7d
4
+ data.tar.gz: ed8e3af9d31492212c613a18726e7b7262394134
5
5
  SHA512:
6
- metadata.gz: 15054735e7199b48fc75b451bb1e422a15eedfc80ca72f34e604853dca173c0276169ae81c7d011ee5e686131017ce0d50ac02ca10565ce2f6f58afd9a67d5f5
7
- data.tar.gz: c5fa083616cc1f95822a40953aa4e2ad9fc2a6602217da57af758528a052c9845aaeacd04c23bfe9b6d81f14886b9249f82bf912d01890f799d087efc6b5c835
6
+ metadata.gz: ac08e35f88a6950495d9f8b65e338a903e2854ce59d903bf0e422a9d402214903e5a86173f0d05f41fa8748fca431844006a4ec8362959fec2f67f3606036877
7
+ data.tar.gz: 00e335993c1850b91369e9e2e7704b182b809f82597c440c8c9f3546369c9a820b8820980d29eaeb947e2719ad35bf983a8fe51cfceb37dc204aa931aa3bea20
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1080
1
+ 3.0.1092
@@ -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, 6
797
- deprecate :ApplicableForCLB=, :none, 2025, 6
796
+ deprecate :ApplicableForCLB, :none, 2025, 7
797
+ deprecate :ApplicableForCLB=, :none, 2025, 7
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
@@ -1477,21 +1477,25 @@ module TencentCloud
1477
1477
  class AssociateIPv6AddressRequest < TencentCloud::Common::AbstractModel
1478
1478
  # @param IPv6AddressId: 弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
1479
1479
  # @type IPv6AddressId: String
1480
+ # @param InstanceId: 要绑定的实例 ID。实例 ID 形如:ins-djflxkvi。可通过登录控制台查询,也可通过 DescribeInstances 接口返回值中的InstanceId获取。
1481
+ # @type InstanceId: String
1480
1482
  # @param NetworkInterfaceId: 要绑定的弹性网卡 ID。 弹性网卡 ID 形如:eni-11112222。NetworkInterfaceId 与 InstanceId 不可同时指定。弹性网卡 ID 可通过登录[控制台](https://console.cloud.tencent.com/vpc/eni?rid=1)查询,也可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/api/215/15817)接口返回值中的networkInterfaceId获取。
1481
1483
  # @type NetworkInterfaceId: String
1482
1484
  # @param PrivateIPv6Address: 要绑定的内网 IPv6。如果指定了 NetworkInterfaceId 则也必须指定 PrivateIPv6Address ,表示将 EIP 绑定到指定弹性网卡的指定内网 IP 上。同时要确保指定的 PrivateIPv6Address 是指定的 NetworkInterfaceId 上的一个内网 IPv6。指定弹性网卡的内网 IPv6 可通过登录[控制台](https://console.cloud.tencent.com/vpc/eni?rid=1)查询,也可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/api/215/15817)接口返回值中的Ipv6AddressSet.Address获取。
1483
1485
  # @type PrivateIPv6Address: String
1484
1486
 
1485
- attr_accessor :IPv6AddressId, :NetworkInterfaceId, :PrivateIPv6Address
1487
+ attr_accessor :IPv6AddressId, :InstanceId, :NetworkInterfaceId, :PrivateIPv6Address
1486
1488
 
1487
- def initialize(ipv6addressid=nil, networkinterfaceid=nil, privateipv6address=nil)
1489
+ def initialize(ipv6addressid=nil, instanceid=nil, networkinterfaceid=nil, privateipv6address=nil)
1488
1490
  @IPv6AddressId = ipv6addressid
1491
+ @InstanceId = instanceid
1489
1492
  @NetworkInterfaceId = networkinterfaceid
1490
1493
  @PrivateIPv6Address = privateipv6address
1491
1494
  end
1492
1495
 
1493
1496
  def deserialize(params)
1494
1497
  @IPv6AddressId = params['IPv6AddressId']
1498
+ @InstanceId = params['InstanceId']
1495
1499
  @NetworkInterfaceId = params['NetworkInterfaceId']
1496
1500
  @PrivateIPv6Address = params['PrivateIPv6Address']
1497
1501
  end
@@ -4803,8 +4807,8 @@ module TencentCloud
4803
4807
 
4804
4808
  attr_accessor :NatGatewayName, :VpcId, :InternetMaxBandwidthOut, :MaxConcurrentConnection, :AddressCount, :PublicIpAddresses, :Zone, :Tags, :SubnetId, :StockPublicIpAddressesBandwidthOut, :PublicIpAddressesBandwidthOut, :PublicIpFromSameZone, :NatProductVersion
4805
4809
  extend Gem::Deprecate
4806
- deprecate :SubnetId, :none, 2025, 6
4807
- deprecate :SubnetId=, :none, 2025, 6
4810
+ deprecate :SubnetId, :none, 2025, 7
4811
+ deprecate :SubnetId=, :none, 2025, 7
4808
4812
 
4809
4813
  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)
4810
4814
  @NatGatewayName = natgatewayname
@@ -18721,8 +18725,8 @@ module TencentCloud
18721
18725
 
18722
18726
  attr_accessor :EncryptAlgorithm, :IntegrityAlgorith, :IPSECSaLifetimeSeconds, :PfsDhGroup, :IPSECSaLifetimeTraffic, :IntegrityAlgorithm
18723
18727
  extend Gem::Deprecate
18724
- deprecate :IntegrityAlgorith, :none, 2025, 6
18725
- deprecate :IntegrityAlgorith=, :none, 2025, 6
18728
+ deprecate :IntegrityAlgorith, :none, 2025, 7
18729
+ deprecate :IntegrityAlgorith=, :none, 2025, 7
18726
18730
 
18727
18731
  def initialize(encryptalgorithm=nil, integrityalgorith=nil, ipsecsalifetimeseconds=nil, pfsdhgroup=nil, ipsecsalifetimetraffic=nil, integrityalgorithm=nil)
18728
18732
  @EncryptAlgorithm = encryptalgorithm
@@ -20109,10 +20113,10 @@ module TencentCloud
20109
20113
 
20110
20114
  attr_accessor :AddressIds, :InternetMaxBandwidthOut, :StartTime, :EndTime
20111
20115
  extend Gem::Deprecate
20112
- deprecate :StartTime, :none, 2025, 6
20113
- deprecate :StartTime=, :none, 2025, 6
20114
- deprecate :EndTime, :none, 2025, 6
20115
- deprecate :EndTime=, :none, 2025, 6
20116
+ deprecate :StartTime, :none, 2025, 7
20117
+ deprecate :StartTime=, :none, 2025, 7
20118
+ deprecate :EndTime, :none, 2025, 7
20119
+ deprecate :EndTime=, :none, 2025, 7
20116
20120
 
20117
20121
  def initialize(addressids=nil, internetmaxbandwidthout=nil, starttime=nil, endtime=nil)
20118
20122
  @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.1080
4
+ version: 3.0.1092
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-06-12 00:00:00.000000000 Z
11
+ date: 2025-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common