tencentcloud-sdk-clb 3.0.1108 → 3.0.1112
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 +18 -6
- 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: 05b640791e437628a9facaede8c4aac514941fa1
|
4
|
+
data.tar.gz: a126ca803ffc218ca7a41348d0760365bf770b86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5de649d750728148191886b871e1e82743676954f504136caf40e24969f1a8bae3c313834433cc47806f67a75362fe814c43021c5d8f11b512553551d62eb7e9
|
7
|
+
data.tar.gz: 9f630c3357cf266299f01eeb70d7f8c80906b9632ac05a66eb9f191e7e1a9b066380e9dae3fafbb3e220aaf4f2127874f1a7f0c42ef503c10989cbd1c66a3e93
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1112
|
data/lib/v20180317/models.rb
CHANGED
@@ -169,10 +169,12 @@ module TencentCloud
|
|
169
169
|
# @type ListenerName: String
|
170
170
|
# @param Weight: 关联目标组的权重, 该参数只有v2新版目标组生效。
|
171
171
|
# @type Weight: Integer
|
172
|
+
# @param RuleId: 高级路由规则ID
|
173
|
+
# @type RuleId: String
|
172
174
|
|
173
|
-
attr_accessor :LoadBalancerId, :ListenerId, :LocationId, :Protocol, :Port, :Domain, :Url, :LoadBalancerName, :ListenerName, :Weight
|
175
|
+
attr_accessor :LoadBalancerId, :ListenerId, :LocationId, :Protocol, :Port, :Domain, :Url, :LoadBalancerName, :ListenerName, :Weight, :RuleId
|
174
176
|
|
175
|
-
def initialize(loadbalancerid=nil, listenerid=nil, locationid=nil, protocol=nil, port=nil, domain=nil, url=nil, loadbalancername=nil, listenername=nil, weight=nil)
|
177
|
+
def initialize(loadbalancerid=nil, listenerid=nil, locationid=nil, protocol=nil, port=nil, domain=nil, url=nil, loadbalancername=nil, listenername=nil, weight=nil, ruleid=nil)
|
176
178
|
@LoadBalancerId = loadbalancerid
|
177
179
|
@ListenerId = listenerid
|
178
180
|
@LocationId = locationid
|
@@ -183,6 +185,7 @@ module TencentCloud
|
|
183
185
|
@LoadBalancerName = loadbalancername
|
184
186
|
@ListenerName = listenername
|
185
187
|
@Weight = weight
|
188
|
+
@RuleId = ruleid
|
186
189
|
end
|
187
190
|
|
188
191
|
def deserialize(params)
|
@@ -196,6 +199,7 @@ module TencentCloud
|
|
196
199
|
@LoadBalancerName = params['LoadBalancerName']
|
197
200
|
@ListenerName = params['ListenerName']
|
198
201
|
@Weight = params['Weight']
|
202
|
+
@RuleId = params['RuleId']
|
199
203
|
end
|
200
204
|
end
|
201
205
|
|
@@ -1648,10 +1652,12 @@ module TencentCloud
|
|
1648
1652
|
# @type LBChargeType: String
|
1649
1653
|
# @param AccessLogTopicId: 七层访问日志主题ID
|
1650
1654
|
# @type AccessLogTopicId: String
|
1655
|
+
# @param AdvancedRoute: 是否开启七层高级路由
|
1656
|
+
# @type AdvancedRoute: Boolean
|
1651
1657
|
|
1652
|
-
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, :LBChargeType, :AccessLogTopicId
|
1658
|
+
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, :LBChargeType, :AccessLogTopicId, :AdvancedRoute
|
1653
1659
|
|
1654
|
-
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, lbchargetype=nil, accesslogtopicid=nil)
|
1660
|
+
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, lbchargetype=nil, accesslogtopicid=nil, advancedroute=nil)
|
1655
1661
|
@LoadBalancerType = loadbalancertype
|
1656
1662
|
@Forward = forward
|
1657
1663
|
@LoadBalancerName = loadbalancername
|
@@ -1682,6 +1688,7 @@ module TencentCloud
|
|
1682
1688
|
@LBChargePrepaid = lbchargeprepaid
|
1683
1689
|
@LBChargeType = lbchargetype
|
1684
1690
|
@AccessLogTopicId = accesslogtopicid
|
1691
|
+
@AdvancedRoute = advancedroute
|
1685
1692
|
end
|
1686
1693
|
|
1687
1694
|
def deserialize(params)
|
@@ -1738,6 +1745,7 @@ module TencentCloud
|
|
1738
1745
|
end
|
1739
1746
|
@LBChargeType = params['LBChargeType']
|
1740
1747
|
@AccessLogTopicId = params['AccessLogTopicId']
|
1748
|
+
@AdvancedRoute = params['AdvancedRoute']
|
1741
1749
|
end
|
1742
1750
|
end
|
1743
1751
|
|
@@ -7758,15 +7766,18 @@ module TencentCloud
|
|
7758
7766
|
# @param Url: 转发规则的Url
|
7759
7767
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7760
7768
|
# @type Url: String
|
7769
|
+
# @param RuleId: 高级路由规则ID
|
7770
|
+
# @type RuleId: String
|
7761
7771
|
# @param Targets: 本规则上绑定的后端服务的健康检查状态
|
7762
7772
|
# @type Targets: Array
|
7763
7773
|
|
7764
|
-
attr_accessor :LocationId, :Domain, :Url, :Targets
|
7774
|
+
attr_accessor :LocationId, :Domain, :Url, :RuleId, :Targets
|
7765
7775
|
|
7766
|
-
def initialize(locationid=nil, domain=nil, url=nil, targets=nil)
|
7776
|
+
def initialize(locationid=nil, domain=nil, url=nil, ruleid=nil, targets=nil)
|
7767
7777
|
@LocationId = locationid
|
7768
7778
|
@Domain = domain
|
7769
7779
|
@Url = url
|
7780
|
+
@RuleId = ruleid
|
7770
7781
|
@Targets = targets
|
7771
7782
|
end
|
7772
7783
|
|
@@ -7774,6 +7785,7 @@ module TencentCloud
|
|
7774
7785
|
@LocationId = params['LocationId']
|
7775
7786
|
@Domain = params['Domain']
|
7776
7787
|
@Url = params['Url']
|
7788
|
+
@RuleId = params['RuleId']
|
7777
7789
|
unless params['Targets'].nil?
|
7778
7790
|
@Targets = []
|
7779
7791
|
params['Targets'].each do |i|
|
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.1112
|
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-07-
|
11
|
+
date: 2025-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|