tencentcloud-sdk-clb 3.0.1126 → 3.0.1143
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 +36 -17
- 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: 53aca27d7d5e177c80e445ee23dd1edb10ab782b
|
4
|
+
data.tar.gz: 877f9f8a7e5f49fa9f1b088178f3a46617b3b46a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abdf876a6be65243b6423882c4757ce06946cb13400f78b4054fa402794b222d911d00f20abab5ff404a82ed3e3fa3e0a4e1eec6414c3d3476b73fd2da586e74
|
7
|
+
data.tar.gz: 10550811bba3897687b114cf5abe8ae5891d5c60808e3331c4f280bcf7c09bc95359eab632340926d4783d0e7a1f81b9dfdaa84afe57cb885c366fb88caeda51
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1143
|
data/lib/v20180317/models.rb
CHANGED
@@ -25,19 +25,30 @@ module TencentCloud
|
|
25
25
|
# @type ConfigType: String
|
26
26
|
# @param ConfigContent: 配置内容
|
27
27
|
# @type ConfigContent: String
|
28
|
+
# @param Tags: 标签
|
29
|
+
# @type Tags: Array
|
28
30
|
|
29
|
-
attr_accessor :ConfigName, :ConfigType, :ConfigContent
|
31
|
+
attr_accessor :ConfigName, :ConfigType, :ConfigContent, :Tags
|
30
32
|
|
31
|
-
def initialize(configname=nil, configtype=nil, configcontent=nil)
|
33
|
+
def initialize(configname=nil, configtype=nil, configcontent=nil, tags=nil)
|
32
34
|
@ConfigName = configname
|
33
35
|
@ConfigType = configtype
|
34
36
|
@ConfigContent = configcontent
|
37
|
+
@Tags = tags
|
35
38
|
end
|
36
39
|
|
37
40
|
def deserialize(params)
|
38
41
|
@ConfigName = params['ConfigName']
|
39
42
|
@ConfigType = params['ConfigType']
|
40
43
|
@ConfigContent = params['ConfigContent']
|
44
|
+
unless params['Tags'].nil?
|
45
|
+
@Tags = []
|
46
|
+
params['Tags'].each do |i|
|
47
|
+
taginfo_tmp = TagInfo.new
|
48
|
+
taginfo_tmp.deserialize(i)
|
49
|
+
@Tags << taginfo_tmp
|
50
|
+
end
|
51
|
+
end
|
41
52
|
end
|
42
53
|
end
|
43
54
|
|
@@ -1401,8 +1412,8 @@ module TencentCloud
|
|
1401
1412
|
|
1402
1413
|
attr_accessor :LogsetName, :Period, :LogsetType
|
1403
1414
|
extend Gem::Deprecate
|
1404
|
-
deprecate :Period, :none, 2025,
|
1405
|
-
deprecate :Period=, :none, 2025,
|
1415
|
+
deprecate :Period, :none, 2025, 9
|
1416
|
+
deprecate :Period=, :none, 2025, 9
|
1406
1417
|
|
1407
1418
|
def initialize(logsetname=nil, period=nil, logsettype=nil)
|
1408
1419
|
@LogsetName = logsetname
|
@@ -1904,10 +1915,12 @@ module TencentCloud
|
|
1904
1915
|
# @type KeepaliveEnable: Boolean
|
1905
1916
|
# @param SessionExpireTime: 会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。仅V2新版且后端转发协议为HTTP/HTTPS/GRPC目标组支持该参数。
|
1906
1917
|
# @type SessionExpireTime: Integer
|
1918
|
+
# @param IpVersion: IP版本类型。
|
1919
|
+
# @type IpVersion: String
|
1907
1920
|
|
1908
|
-
attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Type, :Protocol, :HealthCheck, :ScheduleAlgorithm, :Tags, :Weight, :FullListenSwitch, :KeepaliveEnable, :SessionExpireTime
|
1921
|
+
attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Type, :Protocol, :HealthCheck, :ScheduleAlgorithm, :Tags, :Weight, :FullListenSwitch, :KeepaliveEnable, :SessionExpireTime, :IpVersion
|
1909
1922
|
|
1910
|
-
def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, type=nil, protocol=nil, healthcheck=nil, schedulealgorithm=nil, tags=nil, weight=nil, fulllistenswitch=nil, keepaliveenable=nil, sessionexpiretime=nil)
|
1923
|
+
def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, type=nil, protocol=nil, healthcheck=nil, schedulealgorithm=nil, tags=nil, weight=nil, fulllistenswitch=nil, keepaliveenable=nil, sessionexpiretime=nil, ipversion=nil)
|
1911
1924
|
@TargetGroupName = targetgroupname
|
1912
1925
|
@VpcId = vpcid
|
1913
1926
|
@Port = port
|
@@ -1921,6 +1934,7 @@ module TencentCloud
|
|
1921
1934
|
@FullListenSwitch = fulllistenswitch
|
1922
1935
|
@KeepaliveEnable = keepaliveenable
|
1923
1936
|
@SessionExpireTime = sessionexpiretime
|
1937
|
+
@IpVersion = ipversion
|
1924
1938
|
end
|
1925
1939
|
|
1926
1940
|
def deserialize(params)
|
@@ -1954,6 +1968,7 @@ module TencentCloud
|
|
1954
1968
|
@FullListenSwitch = params['FullListenSwitch']
|
1955
1969
|
@KeepaliveEnable = params['KeepaliveEnable']
|
1956
1970
|
@SessionExpireTime = params['SessionExpireTime']
|
1971
|
+
@IpVersion = params['IpVersion']
|
1957
1972
|
end
|
1958
1973
|
end
|
1959
1974
|
|
@@ -5680,8 +5695,8 @@ module TencentCloud
|
|
5680
5695
|
|
5681
5696
|
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
|
5682
5697
|
extend Gem::Deprecate
|
5683
|
-
deprecate :Log, :none, 2025,
|
5684
|
-
deprecate :Log=, :none, 2025,
|
5698
|
+
deprecate :Log, :none, 2025, 9
|
5699
|
+
deprecate :Log=, :none, 2025, 9
|
5685
5700
|
|
5686
5701
|
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)
|
5687
5702
|
@LoadBalancerId = loadbalancerid
|
@@ -7704,7 +7719,7 @@ module TencentCloud
|
|
7704
7719
|
# @type Targets: Array
|
7705
7720
|
# @param LocationId: 转发规则的ID,七层规则时需要此参数,4层规则不需要。
|
7706
7721
|
# @type LocationId: String
|
7707
|
-
# @param Tag: 后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的
|
7722
|
+
# @param Tag: 后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的Tag参数为空时,才以RsTagRule中的Tag参数为准。
|
7708
7723
|
# @type Tag: String
|
7709
7724
|
|
7710
7725
|
attr_accessor :ListenerId, :Targets, :LocationId, :Tag
|
@@ -7748,10 +7763,10 @@ module TencentCloud
|
|
7748
7763
|
|
7749
7764
|
attr_accessor :ListenerId, :Targets, :LocationId, :Domain, :Url, :Weight
|
7750
7765
|
extend Gem::Deprecate
|
7751
|
-
deprecate :Domain, :none, 2025,
|
7752
|
-
deprecate :Domain=, :none, 2025,
|
7753
|
-
deprecate :Url, :none, 2025,
|
7754
|
-
deprecate :Url=, :none, 2025,
|
7766
|
+
deprecate :Domain, :none, 2025, 9
|
7767
|
+
deprecate :Domain=, :none, 2025, 9
|
7768
|
+
deprecate :Url, :none, 2025, 9
|
7769
|
+
deprecate :Url=, :none, 2025, 9
|
7755
7770
|
|
7756
7771
|
def initialize(listenerid=nil, targets=nil, locationid=nil, domain=nil, url=nil, weight=nil)
|
7757
7772
|
@ListenerId = listenerid
|
@@ -8704,10 +8719,12 @@ module TencentCloud
|
|
8704
8719
|
# @type KeepaliveEnable: Boolean
|
8705
8720
|
# @param SessionExpireTime: 会话保持时间,仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
|
8706
8721
|
# @type SessionExpireTime: Integer
|
8722
|
+
# @param IpVersion: IP版本。
|
8723
|
+
# @type IpVersion: String
|
8707
8724
|
|
8708
|
-
attr_accessor :TargetGroupId, :VpcId, :TargetGroupName, :Port, :CreatedTime, :UpdatedTime, :AssociatedRule, :Protocol, :ScheduleAlgorithm, :HealthCheck, :TargetGroupType, :AssociatedRuleCount, :RegisteredInstancesCount, :Tag, :Weight, :FullListenSwitch, :KeepaliveEnable, :SessionExpireTime
|
8725
|
+
attr_accessor :TargetGroupId, :VpcId, :TargetGroupName, :Port, :CreatedTime, :UpdatedTime, :AssociatedRule, :Protocol, :ScheduleAlgorithm, :HealthCheck, :TargetGroupType, :AssociatedRuleCount, :RegisteredInstancesCount, :Tag, :Weight, :FullListenSwitch, :KeepaliveEnable, :SessionExpireTime, :IpVersion
|
8709
8726
|
|
8710
|
-
def initialize(targetgroupid=nil, vpcid=nil, targetgroupname=nil, port=nil, createdtime=nil, updatedtime=nil, associatedrule=nil, protocol=nil, schedulealgorithm=nil, healthcheck=nil, targetgrouptype=nil, associatedrulecount=nil, registeredinstancescount=nil, tag=nil, weight=nil, fulllistenswitch=nil, keepaliveenable=nil, sessionexpiretime=nil)
|
8727
|
+
def initialize(targetgroupid=nil, vpcid=nil, targetgroupname=nil, port=nil, createdtime=nil, updatedtime=nil, associatedrule=nil, protocol=nil, schedulealgorithm=nil, healthcheck=nil, targetgrouptype=nil, associatedrulecount=nil, registeredinstancescount=nil, tag=nil, weight=nil, fulllistenswitch=nil, keepaliveenable=nil, sessionexpiretime=nil, ipversion=nil)
|
8711
8728
|
@TargetGroupId = targetgroupid
|
8712
8729
|
@VpcId = vpcid
|
8713
8730
|
@TargetGroupName = targetgroupname
|
@@ -8726,6 +8743,7 @@ module TencentCloud
|
|
8726
8743
|
@FullListenSwitch = fulllistenswitch
|
8727
8744
|
@KeepaliveEnable = keepaliveenable
|
8728
8745
|
@SessionExpireTime = sessionexpiretime
|
8746
|
+
@IpVersion = ipversion
|
8729
8747
|
end
|
8730
8748
|
|
8731
8749
|
def deserialize(params)
|
@@ -8764,6 +8782,7 @@ module TencentCloud
|
|
8764
8782
|
@FullListenSwitch = params['FullListenSwitch']
|
8765
8783
|
@KeepaliveEnable = params['KeepaliveEnable']
|
8766
8784
|
@SessionExpireTime = params['SessionExpireTime']
|
8785
|
+
@IpVersion = params['IpVersion']
|
8767
8786
|
end
|
8768
8787
|
end
|
8769
8788
|
|
@@ -8818,8 +8837,8 @@ module TencentCloud
|
|
8818
8837
|
|
8819
8838
|
attr_accessor :IP, :Port, :HealthStatus, :TargetId, :HealthStatusDetail, :HealthStatusDetial, :TargetGroupId, :Weight
|
8820
8839
|
extend Gem::Deprecate
|
8821
|
-
deprecate :HealthStatusDetial, :none, 2025,
|
8822
|
-
deprecate :HealthStatusDetial=, :none, 2025,
|
8840
|
+
deprecate :HealthStatusDetial, :none, 2025, 9
|
8841
|
+
deprecate :HealthStatusDetial=, :none, 2025, 9
|
8823
8842
|
|
8824
8843
|
def initialize(ip=nil, port=nil, healthstatus=nil, targetid=nil, healthstatusdetail=nil, healthstatusdetial=nil, targetgroupid=nil, weight=nil)
|
8825
8844
|
@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.1143
|
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-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|