tencentcloud-sdk-vpc 3.0.665 → 3.0.667
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 +16 -4
- 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: ed27e99cc0c3011983a29b83899af9ef0b010526
|
4
|
+
data.tar.gz: 0775ee6a0956a7000661b4ee39f89b630a5cdabc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc265ddaec9de171596b259199ba073477141346d6923527a6775c619e07aa9b106d442483ca524168077ace3b34debaace012a04196f061916e9b09eddbb0e4
|
7
|
+
data.tar.gz: 666dc93e5eadf73797cc0bd530645da14a3f830106041cd2bfc29147efb2cb68dfc880e985d43f848645028b8ed7088a1d490ce20401f043400065064efb6d4b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.667
|
data/lib/v20170312/models.rb
CHANGED
@@ -1576,10 +1576,13 @@ module TencentCloud
|
|
1576
1576
|
# @type ResourceSet: Array
|
1577
1577
|
# @param Bandwidth: 带宽包限速大小。单位:Mbps,-1表示不限速。
|
1578
1578
|
# @type Bandwidth: Integer
|
1579
|
+
# @param Egress: 网络出口
|
1580
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1581
|
+
# @type Egress: String
|
1579
1582
|
|
1580
|
-
attr_accessor :BandwidthPackageId, :NetworkType, :ChargeType, :BandwidthPackageName, :CreatedTime, :Status, :ResourceSet, :Bandwidth
|
1583
|
+
attr_accessor :BandwidthPackageId, :NetworkType, :ChargeType, :BandwidthPackageName, :CreatedTime, :Status, :ResourceSet, :Bandwidth, :Egress
|
1581
1584
|
|
1582
|
-
def initialize(bandwidthpackageid=nil, networktype=nil, chargetype=nil, bandwidthpackagename=nil, createdtime=nil, status=nil, resourceset=nil, bandwidth=nil)
|
1585
|
+
def initialize(bandwidthpackageid=nil, networktype=nil, chargetype=nil, bandwidthpackagename=nil, createdtime=nil, status=nil, resourceset=nil, bandwidth=nil, egress=nil)
|
1583
1586
|
@BandwidthPackageId = bandwidthpackageid
|
1584
1587
|
@NetworkType = networktype
|
1585
1588
|
@ChargeType = chargetype
|
@@ -1588,6 +1591,7 @@ module TencentCloud
|
|
1588
1591
|
@Status = status
|
1589
1592
|
@ResourceSet = resourceset
|
1590
1593
|
@Bandwidth = bandwidth
|
1594
|
+
@Egress = egress
|
1591
1595
|
end
|
1592
1596
|
|
1593
1597
|
def deserialize(params)
|
@@ -1606,6 +1610,7 @@ module TencentCloud
|
|
1606
1610
|
end
|
1607
1611
|
end
|
1608
1612
|
@Bandwidth = params['Bandwidth']
|
1613
|
+
@Egress = params['Egress']
|
1609
1614
|
end
|
1610
1615
|
end
|
1611
1616
|
|
@@ -2723,6 +2728,9 @@ module TencentCloud
|
|
2723
2728
|
# @param NetworkType: 带宽包类型, 默认值: BGP, 可选值:
|
2724
2729
|
# <li>BGP: 普通BGP共享带宽包</li>
|
2725
2730
|
# <li>HIGH_QUALITY_BGP: 精品BGP共享带宽包</li>
|
2731
|
+
# <li>SINGLEISP_CMCC: 中国移动共享带宽包</li>
|
2732
|
+
# <li>SINGLEISP_CTCC: 中国电信共享带宽包</li>
|
2733
|
+
# <li>SINGLEISP_CUCC: 中国联通共享带宽包</li>
|
2726
2734
|
# @type NetworkType: String
|
2727
2735
|
# @param ChargeType: 带宽包计费类型, 默认为: TOP5_POSTPAID_BY_MONTH, 可选值:
|
2728
2736
|
# <li>TOP5_POSTPAID_BY_MONTH: 按月后付费TOP5计费</li>
|
@@ -2743,10 +2751,12 @@ module TencentCloud
|
|
2743
2751
|
# @type Protocol: String
|
2744
2752
|
# @param TimeSpan: 预付费包月带宽包的购买时长,单位: 月,取值范围: 1~60。
|
2745
2753
|
# @type TimeSpan: Integer
|
2754
|
+
# @param Egress: 网络出口,默认值:center_egress1
|
2755
|
+
# @type Egress: String
|
2746
2756
|
|
2747
|
-
attr_accessor :NetworkType, :ChargeType, :BandwidthPackageName, :BandwidthPackageCount, :InternetMaxBandwidth, :Tags, :Protocol, :TimeSpan
|
2757
|
+
attr_accessor :NetworkType, :ChargeType, :BandwidthPackageName, :BandwidthPackageCount, :InternetMaxBandwidth, :Tags, :Protocol, :TimeSpan, :Egress
|
2748
2758
|
|
2749
|
-
def initialize(networktype=nil, chargetype=nil, bandwidthpackagename=nil, bandwidthpackagecount=nil, internetmaxbandwidth=nil, tags=nil, protocol=nil, timespan=nil)
|
2759
|
+
def initialize(networktype=nil, chargetype=nil, bandwidthpackagename=nil, bandwidthpackagecount=nil, internetmaxbandwidth=nil, tags=nil, protocol=nil, timespan=nil, egress=nil)
|
2750
2760
|
@NetworkType = networktype
|
2751
2761
|
@ChargeType = chargetype
|
2752
2762
|
@BandwidthPackageName = bandwidthpackagename
|
@@ -2755,6 +2765,7 @@ module TencentCloud
|
|
2755
2765
|
@Tags = tags
|
2756
2766
|
@Protocol = protocol
|
2757
2767
|
@TimeSpan = timespan
|
2768
|
+
@Egress = egress
|
2758
2769
|
end
|
2759
2770
|
|
2760
2771
|
def deserialize(params)
|
@@ -2773,6 +2784,7 @@ module TencentCloud
|
|
2773
2784
|
end
|
2774
2785
|
@Protocol = params['Protocol']
|
2775
2786
|
@TimeSpan = params['TimeSpan']
|
2787
|
+
@Egress = params['Egress']
|
2776
2788
|
end
|
2777
2789
|
end
|
2778
2790
|
|
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.667
|
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-09-
|
11
|
+
date: 2023-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|