tencentcloud-sdk-vpc 3.0.915 → 3.0.917

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +35 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6251f3797567301945a877260bdb8d9b4f13188e
4
- data.tar.gz: 021b4767ba43d091700b1095e8428511402cbbee
3
+ metadata.gz: e87e4a190b0c4d7d90fdd574534f03269d72e73c
4
+ data.tar.gz: 95dd1b8ea924b9b2a1b59ead82fd302517edbdf7
5
5
  SHA512:
6
- metadata.gz: e028d55da2b39f52375672d3049b6f40d1b2c20234c28505f44e717e97fce409ea89de20b922614009efab163bdfe6700ee0eaa3b5d6b23ad7087b0ee15a07e6
7
- data.tar.gz: 1e19e48c754e65bedff082c1c4ffaee86ade0a7b4d8b446d5247a3137576c20e5bdcac614e1de63f761e7f781d2e78947f748ea649fca4891f27b12fcf5a8b97
6
+ metadata.gz: 7df600cb323af2f924b2e62e8ec226b07d490531700bfcfd832196dc9addcb7955c29b0fc1cae78fe606d932fb6c195e1efb23625b1d06c0491329495e4212b5
7
+ data.tar.gz: e0fc756a958ed0b2be3fb9894b241db6468bd1a295f0bf32ccc253360108d6e07befed8e92a06842f080443a4faa1f27952dc7abd9b2b7fd4ced9ee9bf5b0ba4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.915
1
+ 3.0.917
@@ -5734,10 +5734,12 @@ module TencentCloud
5734
5734
  # @type ChargeType: String
5735
5735
  # @param QosLevel: 服务分级:PT、AU、AG。
5736
5736
  # @type QosLevel: String
5737
+ # @param Tags: 标签键值对
5738
+ # @type Tags: Array
5737
5739
 
5738
- attr_accessor :SourceVpcId, :PeeringConnectionName, :DestinationVpcId, :DestinationUin, :DestinationRegion, :Bandwidth, :Type, :ChargeType, :QosLevel
5740
+ attr_accessor :SourceVpcId, :PeeringConnectionName, :DestinationVpcId, :DestinationUin, :DestinationRegion, :Bandwidth, :Type, :ChargeType, :QosLevel, :Tags
5739
5741
 
5740
- def initialize(sourcevpcid=nil, peeringconnectionname=nil, destinationvpcid=nil, destinationuin=nil, destinationregion=nil, bandwidth=nil, type=nil, chargetype=nil, qoslevel=nil)
5742
+ def initialize(sourcevpcid=nil, peeringconnectionname=nil, destinationvpcid=nil, destinationuin=nil, destinationregion=nil, bandwidth=nil, type=nil, chargetype=nil, qoslevel=nil, tags=nil)
5741
5743
  @SourceVpcId = sourcevpcid
5742
5744
  @PeeringConnectionName = peeringconnectionname
5743
5745
  @DestinationVpcId = destinationvpcid
@@ -5747,6 +5749,7 @@ module TencentCloud
5747
5749
  @Type = type
5748
5750
  @ChargeType = chargetype
5749
5751
  @QosLevel = qoslevel
5752
+ @Tags = tags
5750
5753
  end
5751
5754
 
5752
5755
  def deserialize(params)
@@ -5759,6 +5762,14 @@ module TencentCloud
5759
5762
  @Type = params['Type']
5760
5763
  @ChargeType = params['ChargeType']
5761
5764
  @QosLevel = params['QosLevel']
5765
+ unless params['Tags'].nil?
5766
+ @Tags = []
5767
+ params['Tags'].each do |i|
5768
+ tags_tmp = Tags.new
5769
+ tags_tmp.deserialize(i)
5770
+ @Tags << tags_tmp
5771
+ end
5772
+ end
5762
5773
  end
5763
5774
  end
5764
5775
 
@@ -24731,6 +24742,28 @@ module TencentCloud
24731
24742
  end
24732
24743
  end
24733
24744
 
24745
+ # 标签描述信息
24746
+ class Tags < TencentCloud::Common::AbstractModel
24747
+ # @param Key: 标签键
24748
+ # 注意:此字段可能返回 null,表示取不到有效值。
24749
+ # @type Key: String
24750
+ # @param Value: 标签值
24751
+ # 注意:此字段可能返回 null,表示取不到有效值。
24752
+ # @type Value: String
24753
+
24754
+ attr_accessor :Key, :Value
24755
+
24756
+ def initialize(key=nil, value=nil)
24757
+ @Key = key
24758
+ @Value = value
24759
+ end
24760
+
24761
+ def deserialize(params)
24762
+ @Key = params['Key']
24763
+ @Value = params['Value']
24764
+ end
24765
+ end
24766
+
24734
24767
  # 参数模板配额
24735
24768
  class TemplateLimit < TencentCloud::Common::AbstractModel
24736
24769
  # @param AddressTemplateMemberLimit: 参数模板IP地址成员配额。
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.915
4
+ version: 3.0.917
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-26 00:00:00.000000000 Z
11
+ date: 2024-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common