tencentcloud-sdk-vpc 3.0.916 → 3.0.917
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/models.rb +35 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e87e4a190b0c4d7d90fdd574534f03269d72e73c
|
|
4
|
+
data.tar.gz: 95dd1b8ea924b9b2a1b59ead82fd302517edbdf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7df600cb323af2f924b2e62e8ec226b07d490531700bfcfd832196dc9addcb7955c29b0fc1cae78fe606d932fb6c195e1efb23625b1d06c0491329495e4212b5
|
|
7
|
+
data.tar.gz: e0fc756a958ed0b2be3fb9894b241db6468bd1a295f0bf32ccc253360108d6e07befed8e92a06842f080443a4faa1f27952dc7abd9b2b7fd4ced9ee9bf5b0ba4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.917
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -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地址成员配额。
|