tencentcloud-sdk-clb 3.0.864 → 3.0.865
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/v20180317/models.rb +9 -2
- 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: 5ab9e6db60d997dc7cd6a7b5b2017ee8f8a29770
|
|
4
|
+
data.tar.gz: b61a32e1e54cc1ee1d8a0a0d86df3f9b7c3e43b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 589779c15ead48943fdc81d6b812b7dc55fa5da969d1da56d0886295ccfd40a867076bec60744db45238aa86e9608bc8ef602b99778b549e8787db5f7d017faf
|
|
7
|
+
data.tar.gz: 0064c18c5ab9641c9ece22a5cd981f971c89f7ddfb71dbec8b5d4a1fe9fa79f3efdc49c92281a66ff6761d8b8010a41f7c9af941f8791dc2018a5e3b6254b665
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.865
|
data/lib/v20180317/models.rb
CHANGED
|
@@ -1492,10 +1492,12 @@ module TencentCloud
|
|
|
1492
1492
|
# @type DynamicVip: Boolean
|
|
1493
1493
|
# @param Egress: 网络出口
|
|
1494
1494
|
# @type Egress: String
|
|
1495
|
+
# @param LBChargePrepaid: 负载均衡实例的预付费相关属性
|
|
1496
|
+
# @type LBChargePrepaid: :class:`Tencentcloud::Clb.v20180317.models.LBChargePrepaid`
|
|
1495
1497
|
|
|
1496
|
-
attr_accessor :LoadBalancerType, :Forward, :LoadBalancerName, :VpcId, :SubnetId, :ProjectId, :AddressIPVersion, :Number, :MasterZoneId, :ZoneId, :InternetAccessible, :VipIsp, :Tags, :Vip, :BandwidthPackageId, :ExclusiveCluster, :SlaType, :ClusterIds, :ClientToken, :SnatPro, :SnatIps, :ClusterTag, :SlaveZoneId, :EipAddressId, :LoadBalancerPassToTarget, :DynamicVip, :Egress
|
|
1498
|
+
attr_accessor :LoadBalancerType, :Forward, :LoadBalancerName, :VpcId, :SubnetId, :ProjectId, :AddressIPVersion, :Number, :MasterZoneId, :ZoneId, :InternetAccessible, :VipIsp, :Tags, :Vip, :BandwidthPackageId, :ExclusiveCluster, :SlaType, :ClusterIds, :ClientToken, :SnatPro, :SnatIps, :ClusterTag, :SlaveZoneId, :EipAddressId, :LoadBalancerPassToTarget, :DynamicVip, :Egress, :LBChargePrepaid
|
|
1497
1499
|
|
|
1498
|
-
def initialize(loadbalancertype=nil, forward=nil, loadbalancername=nil, vpcid=nil, subnetid=nil, projectid=nil, addressipversion=nil, number=nil, masterzoneid=nil, zoneid=nil, internetaccessible=nil, vipisp=nil, tags=nil, vip=nil, bandwidthpackageid=nil, exclusivecluster=nil, slatype=nil, clusterids=nil, clienttoken=nil, snatpro=nil, snatips=nil, clustertag=nil, slavezoneid=nil, eipaddressid=nil, loadbalancerpasstotarget=nil, dynamicvip=nil, egress=nil)
|
|
1500
|
+
def initialize(loadbalancertype=nil, forward=nil, loadbalancername=nil, vpcid=nil, subnetid=nil, projectid=nil, addressipversion=nil, number=nil, masterzoneid=nil, zoneid=nil, internetaccessible=nil, vipisp=nil, tags=nil, vip=nil, bandwidthpackageid=nil, exclusivecluster=nil, slatype=nil, clusterids=nil, clienttoken=nil, snatpro=nil, snatips=nil, clustertag=nil, slavezoneid=nil, eipaddressid=nil, loadbalancerpasstotarget=nil, dynamicvip=nil, egress=nil, lbchargeprepaid=nil)
|
|
1499
1501
|
@LoadBalancerType = loadbalancertype
|
|
1500
1502
|
@Forward = forward
|
|
1501
1503
|
@LoadBalancerName = loadbalancername
|
|
@@ -1523,6 +1525,7 @@ module TencentCloud
|
|
|
1523
1525
|
@LoadBalancerPassToTarget = loadbalancerpasstotarget
|
|
1524
1526
|
@DynamicVip = dynamicvip
|
|
1525
1527
|
@Egress = egress
|
|
1528
|
+
@LBChargePrepaid = lbchargeprepaid
|
|
1526
1529
|
end
|
|
1527
1530
|
|
|
1528
1531
|
def deserialize(params)
|
|
@@ -1573,6 +1576,10 @@ module TencentCloud
|
|
|
1573
1576
|
@LoadBalancerPassToTarget = params['LoadBalancerPassToTarget']
|
|
1574
1577
|
@DynamicVip = params['DynamicVip']
|
|
1575
1578
|
@Egress = params['Egress']
|
|
1579
|
+
unless params['LBChargePrepaid'].nil?
|
|
1580
|
+
@LBChargePrepaid = LBChargePrepaid.new
|
|
1581
|
+
@LBChargePrepaid.deserialize(params['LBChargePrepaid'])
|
|
1582
|
+
end
|
|
1576
1583
|
end
|
|
1577
1584
|
end
|
|
1578
1585
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-clb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.865
|
|
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-07-
|
|
11
|
+
date: 2024-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|