tencentcloud-sdk-clb 3.0.1167 → 3.0.1177
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 +67 -25
- 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: ca1b0447ebc3bd5453c24478ef9ea6be71776b8c
|
|
4
|
+
data.tar.gz: 5ed7bdf27d56eb01e0f0323b433b2a9baead666e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 052b55b6625aeb75f3504c1875a260602a48e235eed452b75752344ba4c6e75407b64a99a73a7f0fc4c725c3f5cc02840633fc65f4e174b5ec864e6366a7be2e
|
|
7
|
+
data.tar.gz: e0eef20b76c8bcdd3a87005bc494aa3a3a22c03cd513c147e9ce4da252bce9e41cb56d4f4809b1f63f7989c21bd8dc6a372fcfab99e8e6eb32af445ca4977a2f
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1177
|
data/lib/v20180317/models.rb
CHANGED
|
@@ -164,6 +164,32 @@ module TencentCloud
|
|
|
164
164
|
end
|
|
165
165
|
end
|
|
166
166
|
|
|
167
|
+
# 可用区转发亲和信息
|
|
168
|
+
class AvailableZoneAffinityInfo < TencentCloud::Common::AbstractModel
|
|
169
|
+
# @param Enable: 是否开启可用区转发亲和。true:开启可用区转发亲和;false:开启可用区转发亲和。
|
|
170
|
+
# @type Enable: Boolean
|
|
171
|
+
# @param ExitRatio: 可用区转发亲和失效阈值,当可用区内后端服务健康比例小于该阈值时,负载均衡会退出可用区转发亲和,转为全可用区转发。
|
|
172
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
173
|
+
# @type ExitRatio: Integer
|
|
174
|
+
# @param ReentryRatio: 可用区转发亲和的重新生效阈值,当处于全可用区转发,且负载均衡可用区内的后端服务健康比例大于等于该阈值时,负载均衡会重新进入可用区转发亲和。
|
|
175
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
176
|
+
# @type ReentryRatio: Integer
|
|
177
|
+
|
|
178
|
+
attr_accessor :Enable, :ExitRatio, :ReentryRatio
|
|
179
|
+
|
|
180
|
+
def initialize(enable=nil, exitratio=nil, reentryratio=nil)
|
|
181
|
+
@Enable = enable
|
|
182
|
+
@ExitRatio = exitratio
|
|
183
|
+
@ReentryRatio = reentryratio
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
def deserialize(params)
|
|
187
|
+
@Enable = params['Enable']
|
|
188
|
+
@ExitRatio = params['ExitRatio']
|
|
189
|
+
@ReentryRatio = params['ReentryRatio']
|
|
190
|
+
end
|
|
191
|
+
end
|
|
192
|
+
|
|
167
193
|
# 监听器绑定的后端服务的详细信息
|
|
168
194
|
class Backend < TencentCloud::Common::AbstractModel
|
|
169
195
|
# @param Type: 后端服务的类型,可取:CVM、ENI、CCN、EVM、GLOBALROUTE、NAT、SRV等
|
|
@@ -189,10 +215,13 @@ module TencentCloud
|
|
|
189
215
|
# @type EniId: String
|
|
190
216
|
# @param Tag: 标签。
|
|
191
217
|
# @type Tag: String
|
|
218
|
+
# @param Zone: 后端服务所在的可用区,如ap-guangzhou-1
|
|
219
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
220
|
+
# @type Zone: String
|
|
192
221
|
|
|
193
|
-
attr_accessor :Type, :InstanceId, :Port, :Weight, :PublicIpAddresses, :PrivateIpAddresses, :InstanceName, :RegisteredTime, :EniId, :Tag
|
|
222
|
+
attr_accessor :Type, :InstanceId, :Port, :Weight, :PublicIpAddresses, :PrivateIpAddresses, :InstanceName, :RegisteredTime, :EniId, :Tag, :Zone
|
|
194
223
|
|
|
195
|
-
def initialize(type=nil, instanceid=nil, port=nil, weight=nil, publicipaddresses=nil, privateipaddresses=nil, instancename=nil, registeredtime=nil, eniid=nil, tag=nil)
|
|
224
|
+
def initialize(type=nil, instanceid=nil, port=nil, weight=nil, publicipaddresses=nil, privateipaddresses=nil, instancename=nil, registeredtime=nil, eniid=nil, tag=nil, zone=nil)
|
|
196
225
|
@Type = type
|
|
197
226
|
@InstanceId = instanceid
|
|
198
227
|
@Port = port
|
|
@@ -203,6 +232,7 @@ module TencentCloud
|
|
|
203
232
|
@RegisteredTime = registeredtime
|
|
204
233
|
@EniId = eniid
|
|
205
234
|
@Tag = tag
|
|
235
|
+
@Zone = zone
|
|
206
236
|
end
|
|
207
237
|
|
|
208
238
|
def deserialize(params)
|
|
@@ -216,6 +246,7 @@ module TencentCloud
|
|
|
216
246
|
@RegisteredTime = params['RegisteredTime']
|
|
217
247
|
@EniId = params['EniId']
|
|
218
248
|
@Tag = params['Tag']
|
|
249
|
+
@Zone = params['Zone']
|
|
219
250
|
end
|
|
220
251
|
end
|
|
221
252
|
|
|
@@ -1286,8 +1317,8 @@ module TencentCloud
|
|
|
1286
1317
|
|
|
1287
1318
|
attr_accessor :LogsetName, :Period, :LogsetType
|
|
1288
1319
|
extend Gem::Deprecate
|
|
1289
|
-
deprecate :Period, :none, 2025,
|
|
1290
|
-
deprecate :Period=, :none, 2025,
|
|
1320
|
+
deprecate :Period, :none, 2025, 12
|
|
1321
|
+
deprecate :Period=, :none, 2025, 12
|
|
1291
1322
|
|
|
1292
1323
|
def initialize(logsetname=nil, period=nil, logsettype=nil)
|
|
1293
1324
|
@LogsetName = logsetname
|
|
@@ -1355,7 +1386,7 @@ module TencentCloud
|
|
|
1355
1386
|
# @type KeepaliveEnable: Integer
|
|
1356
1387
|
# @param EndPort: 创建端口段监听器时必须传入此参数,用以标识结束端口。同时,入参Ports只允许传入一个成员,用以标识开始端口。【如果您需要体验端口段功能,请通过 [工单申请](https://console.cloud.tencent.com/workorder/category)】。
|
|
1357
1388
|
# @type EndPort: Integer
|
|
1358
|
-
# @param DeregisterTargetRst:
|
|
1389
|
+
# @param DeregisterTargetRst: 重新调度功能,解绑后端服务开关,打开此开关,当解绑后端服务时触发重新调度。仅TCP/UDP监听器支持。
|
|
1359
1390
|
# @type DeregisterTargetRst: Boolean
|
|
1360
1391
|
# @param MultiCertInfo: 证书信息,支持同时传入不同算法类型的多本服务端证书,参数限制如下:
|
|
1361
1392
|
# <li>此参数仅适用于TCP_SSL监听器和未开启SNI特性的HTTPS监听器。</li>
|
|
@@ -1369,8 +1400,7 @@ module TencentCloud
|
|
|
1369
1400
|
# @type IdleConnectTimeout: Integer
|
|
1370
1401
|
# @param ProxyProtocol: TCP_SSL和QUIC是否支持PP
|
|
1371
1402
|
# @type ProxyProtocol: Boolean
|
|
1372
|
-
# @param SnatEnable: 是否开启SNAT
|
|
1373
|
-
# 默认为关闭。
|
|
1403
|
+
# @param SnatEnable: 是否开启SNAT(源IP替换),True(开启)、False(关闭)。默认为关闭。注意:SnatEnable开启时会替换客户端源IP,此时`透传客户端源IP`选项关闭,反之亦然。
|
|
1374
1404
|
# @type SnatEnable: Boolean
|
|
1375
1405
|
# @param FullEndPorts: 全端口段监听器的结束端口,端口范围:2 - 65535
|
|
1376
1406
|
# @type FullEndPorts: Array
|
|
@@ -5099,7 +5129,7 @@ module TencentCloud
|
|
|
5099
5129
|
# @type KeepaliveEnable: Integer
|
|
5100
5130
|
# @param Toa: 仅支持Nat64 CLB TCP监听器
|
|
5101
5131
|
# @type Toa: Boolean
|
|
5102
|
-
# @param DeregisterTargetRst:
|
|
5132
|
+
# @param DeregisterTargetRst: 重新调度功能,解绑后端服务开关,打开此开关,当解绑后端服务时触发重新调度。仅TCP/UDP监听器支持。
|
|
5103
5133
|
# @type DeregisterTargetRst: Boolean
|
|
5104
5134
|
# @param AttrFlags: 监听器的属性
|
|
5105
5135
|
# @type AttrFlags: Array
|
|
@@ -5515,13 +5545,15 @@ module TencentCloud
|
|
|
5515
5545
|
# @type TargetCount: Integer
|
|
5516
5546
|
# @param AssociateEndpoint: 负载均衡实例关联的Endpoint id。
|
|
5517
5547
|
# @type AssociateEndpoint: String
|
|
5548
|
+
# @param AvailableZoneAffinityInfo: 可用区转发亲和信息
|
|
5549
|
+
# @type AvailableZoneAffinityInfo: :class:`Tencentcloud::Clb.v20180317.models.AvailableZoneAffinityInfo`
|
|
5518
5550
|
|
|
5519
|
-
attr_accessor :LoadBalancerId, :LoadBalancerName, :LoadBalancerType, :Forward, :Domain, :LoadBalancerVips, :Status, :CreateTime, :StatusTime, :ProjectId, :VpcId, :OpenBgp, :Snat, :Isolation, :Log, :SubnetId, :Tags, :SecureGroups, :TargetRegionInfo, :AnycastZone, :AddressIPVersion, :NumericalVpcId, :VipIsp, :MasterZone, :BackupZoneSet, :IsolatedTime, :ExpireTime, :ChargeType, :NetworkAttributes, :PrepaidAttributes, :LogSetId, :LogTopicId, :AddressIPv6, :ExtraInfo, :IsDDos, :ConfigId, :LoadBalancerPassToTarget, :ExclusiveCluster, :IPv6Mode, :SnatPro, :SnatIps, :SlaType, :IsBlock, :IsBlockTime, :LocalBgp, :ClusterTag, :MixIpTarget, :Zones, :NfvInfo, :HealthLogSetId, :HealthLogTopicId, :ClusterIds, :AttributeFlags, :LoadBalancerDomain, :Egress, :Exclusive, :TargetCount, :AssociateEndpoint
|
|
5551
|
+
attr_accessor :LoadBalancerId, :LoadBalancerName, :LoadBalancerType, :Forward, :Domain, :LoadBalancerVips, :Status, :CreateTime, :StatusTime, :ProjectId, :VpcId, :OpenBgp, :Snat, :Isolation, :Log, :SubnetId, :Tags, :SecureGroups, :TargetRegionInfo, :AnycastZone, :AddressIPVersion, :NumericalVpcId, :VipIsp, :MasterZone, :BackupZoneSet, :IsolatedTime, :ExpireTime, :ChargeType, :NetworkAttributes, :PrepaidAttributes, :LogSetId, :LogTopicId, :AddressIPv6, :ExtraInfo, :IsDDos, :ConfigId, :LoadBalancerPassToTarget, :ExclusiveCluster, :IPv6Mode, :SnatPro, :SnatIps, :SlaType, :IsBlock, :IsBlockTime, :LocalBgp, :ClusterTag, :MixIpTarget, :Zones, :NfvInfo, :HealthLogSetId, :HealthLogTopicId, :ClusterIds, :AttributeFlags, :LoadBalancerDomain, :Egress, :Exclusive, :TargetCount, :AssociateEndpoint, :AvailableZoneAffinityInfo
|
|
5520
5552
|
extend Gem::Deprecate
|
|
5521
|
-
deprecate :Log, :none, 2025,
|
|
5522
|
-
deprecate :Log=, :none, 2025,
|
|
5553
|
+
deprecate :Log, :none, 2025, 12
|
|
5554
|
+
deprecate :Log=, :none, 2025, 12
|
|
5523
5555
|
|
|
5524
|
-
def initialize(loadbalancerid=nil, loadbalancername=nil, loadbalancertype=nil, forward=nil, domain=nil, loadbalancervips=nil, status=nil, createtime=nil, statustime=nil, projectid=nil, vpcid=nil, openbgp=nil, snat=nil, isolation=nil, log=nil, subnetid=nil, tags=nil, securegroups=nil, targetregioninfo=nil, anycastzone=nil, addressipversion=nil, numericalvpcid=nil, vipisp=nil, masterzone=nil, backupzoneset=nil, isolatedtime=nil, expiretime=nil, chargetype=nil, networkattributes=nil, prepaidattributes=nil, logsetid=nil, logtopicid=nil, addressipv6=nil, extrainfo=nil, isddos=nil, configid=nil, loadbalancerpasstotarget=nil, exclusivecluster=nil, ipv6mode=nil, snatpro=nil, snatips=nil, slatype=nil, isblock=nil, isblocktime=nil, localbgp=nil, clustertag=nil, mixiptarget=nil, zones=nil, nfvinfo=nil, healthlogsetid=nil, healthlogtopicid=nil, clusterids=nil, attributeflags=nil, loadbalancerdomain=nil, egress=nil, exclusive=nil, targetcount=nil, associateendpoint=nil)
|
|
5556
|
+
def initialize(loadbalancerid=nil, loadbalancername=nil, loadbalancertype=nil, forward=nil, domain=nil, loadbalancervips=nil, status=nil, createtime=nil, statustime=nil, projectid=nil, vpcid=nil, openbgp=nil, snat=nil, isolation=nil, log=nil, subnetid=nil, tags=nil, securegroups=nil, targetregioninfo=nil, anycastzone=nil, addressipversion=nil, numericalvpcid=nil, vipisp=nil, masterzone=nil, backupzoneset=nil, isolatedtime=nil, expiretime=nil, chargetype=nil, networkattributes=nil, prepaidattributes=nil, logsetid=nil, logtopicid=nil, addressipv6=nil, extrainfo=nil, isddos=nil, configid=nil, loadbalancerpasstotarget=nil, exclusivecluster=nil, ipv6mode=nil, snatpro=nil, snatips=nil, slatype=nil, isblock=nil, isblocktime=nil, localbgp=nil, clustertag=nil, mixiptarget=nil, zones=nil, nfvinfo=nil, healthlogsetid=nil, healthlogtopicid=nil, clusterids=nil, attributeflags=nil, loadbalancerdomain=nil, egress=nil, exclusive=nil, targetcount=nil, associateendpoint=nil, availablezoneaffinityinfo=nil)
|
|
5525
5557
|
@LoadBalancerId = loadbalancerid
|
|
5526
5558
|
@LoadBalancerName = loadbalancername
|
|
5527
5559
|
@LoadBalancerType = loadbalancertype
|
|
@@ -5580,6 +5612,7 @@ module TencentCloud
|
|
|
5580
5612
|
@Exclusive = exclusive
|
|
5581
5613
|
@TargetCount = targetcount
|
|
5582
5614
|
@AssociateEndpoint = associateendpoint
|
|
5615
|
+
@AvailableZoneAffinityInfo = availablezoneaffinityinfo
|
|
5583
5616
|
end
|
|
5584
5617
|
|
|
5585
5618
|
def deserialize(params)
|
|
@@ -5680,6 +5713,10 @@ module TencentCloud
|
|
|
5680
5713
|
@Exclusive = params['Exclusive']
|
|
5681
5714
|
@TargetCount = params['TargetCount']
|
|
5682
5715
|
@AssociateEndpoint = params['AssociateEndpoint']
|
|
5716
|
+
unless params['AvailableZoneAffinityInfo'].nil?
|
|
5717
|
+
@AvailableZoneAffinityInfo = AvailableZoneAffinityInfo.new
|
|
5718
|
+
@AvailableZoneAffinityInfo.deserialize(params['AvailableZoneAffinityInfo'])
|
|
5719
|
+
end
|
|
5683
5720
|
end
|
|
5684
5721
|
end
|
|
5685
5722
|
|
|
@@ -5810,10 +5847,13 @@ module TencentCloud
|
|
|
5810
5847
|
# @param Exclusive: 0:表示非独占型实例,1:表示独占型态实例。
|
|
5811
5848
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
5812
5849
|
# @type Exclusive: Integer
|
|
5850
|
+
# @param AvailableZoneAffinityInfo: 可用区转发亲和信息
|
|
5851
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
5852
|
+
# @type AvailableZoneAffinityInfo: :class:`Tencentcloud::Clb.v20180317.models.AvailableZoneAffinityInfo`
|
|
5813
5853
|
|
|
5814
|
-
attr_accessor :LoadBalancerId, :LoadBalancerName, :LoadBalancerType, :Status, :Address, :AddressIPv6, :AddressIPVersion, :IPv6Mode, :Zone, :AddressIsp, :VpcId, :ProjectId, :CreateTime, :ChargeType, :NetworkAttributes, :PrepaidAttributes, :ExtraInfo, :ConfigId, :Tags, :ListenerId, :Protocol, :Port, :LocationId, :Domain, :Url, :TargetId, :TargetAddress, :TargetPort, :TargetWeight, :Isolation, :SecurityGroup, :LoadBalancerPassToTarget, :TargetHealth, :Domains, :SlaveZone, :Zones, :SniSwitch, :LoadBalancerDomain, :Egress, :AttributeFlags, :SlaType, :Exclusive
|
|
5854
|
+
attr_accessor :LoadBalancerId, :LoadBalancerName, :LoadBalancerType, :Status, :Address, :AddressIPv6, :AddressIPVersion, :IPv6Mode, :Zone, :AddressIsp, :VpcId, :ProjectId, :CreateTime, :ChargeType, :NetworkAttributes, :PrepaidAttributes, :ExtraInfo, :ConfigId, :Tags, :ListenerId, :Protocol, :Port, :LocationId, :Domain, :Url, :TargetId, :TargetAddress, :TargetPort, :TargetWeight, :Isolation, :SecurityGroup, :LoadBalancerPassToTarget, :TargetHealth, :Domains, :SlaveZone, :Zones, :SniSwitch, :LoadBalancerDomain, :Egress, :AttributeFlags, :SlaType, :Exclusive, :AvailableZoneAffinityInfo
|
|
5815
5855
|
|
|
5816
|
-
def initialize(loadbalancerid=nil, loadbalancername=nil, loadbalancertype=nil, status=nil, address=nil, addressipv6=nil, addressipversion=nil, ipv6mode=nil, zone=nil, addressisp=nil, vpcid=nil, projectid=nil, createtime=nil, chargetype=nil, networkattributes=nil, prepaidattributes=nil, extrainfo=nil, configid=nil, tags=nil, listenerid=nil, protocol=nil, port=nil, locationid=nil, domain=nil, url=nil, targetid=nil, targetaddress=nil, targetport=nil, targetweight=nil, isolation=nil, securitygroup=nil, loadbalancerpasstotarget=nil, targethealth=nil, domains=nil, slavezone=nil, zones=nil, sniswitch=nil, loadbalancerdomain=nil, egress=nil, attributeflags=nil, slatype=nil, exclusive=nil)
|
|
5856
|
+
def initialize(loadbalancerid=nil, loadbalancername=nil, loadbalancertype=nil, status=nil, address=nil, addressipv6=nil, addressipversion=nil, ipv6mode=nil, zone=nil, addressisp=nil, vpcid=nil, projectid=nil, createtime=nil, chargetype=nil, networkattributes=nil, prepaidattributes=nil, extrainfo=nil, configid=nil, tags=nil, listenerid=nil, protocol=nil, port=nil, locationid=nil, domain=nil, url=nil, targetid=nil, targetaddress=nil, targetport=nil, targetweight=nil, isolation=nil, securitygroup=nil, loadbalancerpasstotarget=nil, targethealth=nil, domains=nil, slavezone=nil, zones=nil, sniswitch=nil, loadbalancerdomain=nil, egress=nil, attributeflags=nil, slatype=nil, exclusive=nil, availablezoneaffinityinfo=nil)
|
|
5817
5857
|
@LoadBalancerId = loadbalancerid
|
|
5818
5858
|
@LoadBalancerName = loadbalancername
|
|
5819
5859
|
@LoadBalancerType = loadbalancertype
|
|
@@ -5856,6 +5896,7 @@ module TencentCloud
|
|
|
5856
5896
|
@AttributeFlags = attributeflags
|
|
5857
5897
|
@SlaType = slatype
|
|
5858
5898
|
@Exclusive = exclusive
|
|
5899
|
+
@AvailableZoneAffinityInfo = availablezoneaffinityinfo
|
|
5859
5900
|
end
|
|
5860
5901
|
|
|
5861
5902
|
def deserialize(params)
|
|
@@ -5917,6 +5958,10 @@ module TencentCloud
|
|
|
5917
5958
|
@AttributeFlags = params['AttributeFlags']
|
|
5918
5959
|
@SlaType = params['SlaType']
|
|
5919
5960
|
@Exclusive = params['Exclusive']
|
|
5961
|
+
unless params['AvailableZoneAffinityInfo'].nil?
|
|
5962
|
+
@AvailableZoneAffinityInfo = AvailableZoneAffinityInfo.new
|
|
5963
|
+
@AvailableZoneAffinityInfo.deserialize(params['AvailableZoneAffinityInfo'])
|
|
5964
|
+
end
|
|
5920
5965
|
end
|
|
5921
5966
|
end
|
|
5922
5967
|
|
|
@@ -6349,9 +6394,7 @@ module TencentCloud
|
|
|
6349
6394
|
# 默认值0表示不开启,1表示开启。
|
|
6350
6395
|
# 若后端服务对连接数上限有限制,则建议谨慎开启。此功能目前处于内测中,如需使用,请提交 [内测申请](https://cloud.tencent.com/apply/p/tsodp6qm21)。
|
|
6351
6396
|
# @type KeepaliveEnable: Integer
|
|
6352
|
-
# @param DeregisterTargetRst:
|
|
6353
|
-
# True表示发送 RST 给客户端,False表示不发送 RST 给客户端。
|
|
6354
|
-
# 不传则表示不修改。
|
|
6397
|
+
# @param DeregisterTargetRst: 重新调度功能,解绑后端服务开关,打开此开关,当解绑后端服务时触发重新调度。仅TCP/UDP监听器支持。
|
|
6355
6398
|
# @type DeregisterTargetRst: Boolean
|
|
6356
6399
|
# @param SessionType: 会话保持类型。NORMAL表示默认会话保持类型。QUIC_CID表示根据Quic Connection ID做会话保持。QUIC_CID只支持UDP协议。
|
|
6357
6400
|
# 使用场景:适用于TCP/UDP/TCP_SSL/QUIC监听器。
|
|
@@ -6369,8 +6412,7 @@ module TencentCloud
|
|
|
6369
6412
|
# @type IdleConnectTimeout: Integer
|
|
6370
6413
|
# @param ProxyProtocol: TCP_SSL和QUIC是否支持PP
|
|
6371
6414
|
# @type ProxyProtocol: Boolean
|
|
6372
|
-
# @param SnatEnable: 是否开启SNAT
|
|
6373
|
-
# 不传则表示不修改。
|
|
6415
|
+
# @param SnatEnable: 是否开启SNAT(源IP替换),True(开启)、False(关闭)。默认为关闭。注意:SnatEnable开启时会替换客户端源IP,此时`透传客户端源IP`选项关闭,反之亦然。
|
|
6374
6416
|
# @type SnatEnable: Boolean
|
|
6375
6417
|
# @param DataCompressMode: 数据压缩模式
|
|
6376
6418
|
# @type DataCompressMode: String
|
|
@@ -7570,10 +7612,10 @@ module TencentCloud
|
|
|
7570
7612
|
|
|
7571
7613
|
attr_accessor :ListenerId, :Targets, :LocationId, :Domain, :Url, :Weight
|
|
7572
7614
|
extend Gem::Deprecate
|
|
7573
|
-
deprecate :Domain, :none, 2025,
|
|
7574
|
-
deprecate :Domain=, :none, 2025,
|
|
7575
|
-
deprecate :Url, :none, 2025,
|
|
7576
|
-
deprecate :Url=, :none, 2025,
|
|
7615
|
+
deprecate :Domain, :none, 2025, 12
|
|
7616
|
+
deprecate :Domain=, :none, 2025, 12
|
|
7617
|
+
deprecate :Url, :none, 2025, 12
|
|
7618
|
+
deprecate :Url=, :none, 2025, 12
|
|
7577
7619
|
|
|
7578
7620
|
def initialize(listenerid=nil, targets=nil, locationid=nil, domain=nil, url=nil, weight=nil)
|
|
7579
7621
|
@ListenerId = listenerid
|
|
@@ -8652,8 +8694,8 @@ module TencentCloud
|
|
|
8652
8694
|
|
|
8653
8695
|
attr_accessor :IP, :Port, :HealthStatus, :TargetId, :HealthStatusDetail, :HealthStatusDetial, :TargetGroupId, :Weight
|
|
8654
8696
|
extend Gem::Deprecate
|
|
8655
|
-
deprecate :HealthStatusDetial, :none, 2025,
|
|
8656
|
-
deprecate :HealthStatusDetial=, :none, 2025,
|
|
8697
|
+
deprecate :HealthStatusDetial, :none, 2025, 12
|
|
8698
|
+
deprecate :HealthStatusDetial=, :none, 2025, 12
|
|
8657
8699
|
|
|
8658
8700
|
def initialize(ip=nil, port=nil, healthstatus=nil, targetid=nil, healthstatusdetail=nil, healthstatusdetial=nil, targetgroupid=nil, weight=nil)
|
|
8659
8701
|
@IP = ip
|
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.1177
|
|
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-
|
|
11
|
+
date: 2025-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|