tencentcloud-sdk-clb 3.0.773 → 3.0.776
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180317/client.rb +3 -1
- data/lib/v20180317/models.rb +93 -59
- 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: cc6117bce2c4f3500390d018b0e2dae073db30a2
|
4
|
+
data.tar.gz: 7c0d6c4b4ea8c46a62ab3145e739fe7e018a3825
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d83fe729d56c1424a0b69e84c76ec467743ee3bf7f561528ecce1054738e1b4bbc6452af9baa60da415dc7ae1acc930ca32c7e6bfe9022f3036abb9a7f33550
|
7
|
+
data.tar.gz: 98bd3cd67b21143cba06efc6460cd04295a4fc55889556a17f6c012a1e8c7af03d460c91dc6eb22817e29410d7fbb37286a1086ae130d028ac97c5958e2f14b5
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.776
|
data/lib/v20180317/client.rb
CHANGED
@@ -177,6 +177,8 @@ module TencentCloud
|
|
177
177
|
|
178
178
|
# 克隆负载均衡实例,根据指定的负载均衡实例,复制出相同规则和绑定关系的负载均衡实例。克隆接口为异步操作,克隆的数据以调用CloneLoadBalancer时为准,如果调用CloneLoadBalancer后克隆CLB发生变化,变化规则不会克隆。
|
179
179
|
|
180
|
+
# 注:查询实例创建状态可以根据返回值中的requestId访问[DescribeTaskStatus](https://cloud.tencent.com/document/product/214/30683)接口
|
181
|
+
|
180
182
|
# 限制说明:
|
181
183
|
# 实例属性维度限制
|
182
184
|
# 仅支持克隆按量计费实例,不支持包年包月实例。
|
@@ -2103,7 +2105,7 @@ module TencentCloud
|
|
2103
2105
|
|
2104
2106
|
# SetLoadBalancerSecurityGroups 接口支持对一个公网负载均衡实例执行设置(绑定、解绑)安全组操作。查询一个负载均衡实例目前已绑定的安全组,可使用 DescribeLoadBalancers 接口。本接口是set语义,
|
2105
2107
|
# 绑定操作时,入参需要传入负载均衡实例要绑定的所有安全组(已绑定的+新增绑定的)。
|
2106
|
-
#
|
2108
|
+
# 解绑操作时,入参需要传入负载均衡实例执行解绑后所绑定的所有安全组;如果要解绑所有安全组,可不传此参数,或传入空数组。注意:内网 CLB 绑定 EIP 后,CLB 上的安全组对来自 EIP 的流量不生效,对来自内网 CLB 的流量生效。
|
2107
2109
|
|
2108
2110
|
# @param request: Request instance for SetLoadBalancerSecurityGroups.
|
2109
2111
|
# @type request: :class:`Tencentcloud::clb::V20180317::SetLoadBalancerSecurityGroupsRequest`
|
data/lib/v20180317/models.rb
CHANGED
@@ -398,18 +398,22 @@ module TencentCloud
|
|
398
398
|
# @param FailListenerIdSet: 绑定失败的监听器ID,如为空表示全部绑定成功。
|
399
399
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
400
400
|
# @type FailListenerIdSet: Array
|
401
|
+
# @param Message: 绑定失败错误原因信息。
|
402
|
+
# @type Message: String
|
401
403
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
402
404
|
# @type RequestId: String
|
403
405
|
|
404
|
-
attr_accessor :FailListenerIdSet, :RequestId
|
406
|
+
attr_accessor :FailListenerIdSet, :Message, :RequestId
|
405
407
|
|
406
|
-
def initialize(faillisteneridset=nil, requestid=nil)
|
408
|
+
def initialize(faillisteneridset=nil, message=nil, requestid=nil)
|
407
409
|
@FailListenerIdSet = faillisteneridset
|
410
|
+
@Message = message
|
408
411
|
@RequestId = requestid
|
409
412
|
end
|
410
413
|
|
411
414
|
def deserialize(params)
|
412
415
|
@FailListenerIdSet = params['FailListenerIdSet']
|
416
|
+
@Message = params['Message']
|
413
417
|
@RequestId = params['RequestId']
|
414
418
|
end
|
415
419
|
end
|
@@ -427,7 +431,7 @@ module TencentCloud
|
|
427
431
|
# @type EniIp: String
|
428
432
|
# @param Weight: 子机权重,范围[0, 100]。绑定时如果不存在,则默认为10。
|
429
433
|
# @type Weight: Integer
|
430
|
-
# @param LocationId: 七层规则 ID。
|
434
|
+
# @param LocationId: 七层规则 ID。7层负载均衡该参数必填
|
431
435
|
# @type LocationId: String
|
432
436
|
# @param Tag: 标签。
|
433
437
|
# @type Tag: String
|
@@ -874,7 +878,7 @@ module TencentCloud
|
|
874
878
|
# @param LoadBalancerName: 克隆出负载均衡实例的名称,规则:1-60 个英文、汉字、数字、连接线“-”或下划线“_”。
|
875
879
|
# 注意:如果名称与系统中已有负载均衡实例的名称相同,则系统将会自动生成此次创建的负载均衡实例的名称。
|
876
880
|
# @type LoadBalancerName: String
|
877
|
-
# @param ProjectId: 负载均衡实例所属的项目 ID,可以通过 [
|
881
|
+
# @param ProjectId: 负载均衡实例所属的项目 ID,可以通过 [DescribeLoadBalancers](https://cloud.tencent.com/document/product/214/30685) 接口获取。不传此参数则视为默认项目。
|
878
882
|
# @type ProjectId: Integer
|
879
883
|
# @param MasterZoneId: 仅适用于公网负载均衡。设置跨可用区容灾时的主可用区ID,例如 100001 或 ap-guangzhou-1
|
880
884
|
# 注:主可用区是需要承载流量的可用区,备可用区默认不承载流量,主可用区不可用时才使用备可用区,平台将为您自动选择最佳备可用区。可通过 [DescribeResources](https://cloud.tencent.com/document/api/214/70213) 接口查询一个地域的主可用区的列表。
|
@@ -882,7 +886,7 @@ module TencentCloud
|
|
882
886
|
# @param SlaveZoneId: 仅适用于公网负载均衡。设置跨可用区容灾时的备可用区ID,例如 100001 或 ap-guangzhou-1
|
883
887
|
# 注:备可用区是主可用区故障后,需要承载流量的可用区。可通过 [DescribeResources](https://cloud.tencent.com/document/api/214/70213) 接口查询一个地域的主/备可用区的列表。
|
884
888
|
# @type SlaveZoneId: String
|
885
|
-
# @param ZoneId: 仅适用于公网负载均衡。可用区ID,指定可用区以创建负载均衡实例。如:ap-guangzhou-1
|
889
|
+
# @param ZoneId: 仅适用于公网负载均衡。可用区ID,指定可用区以创建负载均衡实例。如:ap-guangzhou-1。不传则查询所有可用区的 CVM 实例。如需指定可用区,可调用查询可用区列表[DescribeZones](https://cloud.tencent.com/document/product/213/15707)接口查询。
|
886
890
|
# @type ZoneId: String
|
887
891
|
# @param InternetAccessible: 仅适用于公网负载均衡。负载均衡的网络计费模式。
|
888
892
|
# @type InternetAccessible: :class:`Tencentcloud::Clb.v20180317.models.InternetAccessible`
|
@@ -903,11 +907,12 @@ module TencentCloud
|
|
903
907
|
# @type SnatIps: Array
|
904
908
|
# @param ClusterIds: 公网独占集群ID或者CDCId。
|
905
909
|
# @type ClusterIds: Array
|
906
|
-
# @param SlaType:
|
910
|
+
# @param SlaType: 性能容量型规格。<li>clb.c2.medium(标准型)</li><li>clb.c3.small(高阶型1)</li><li>clb.c3.medium(高阶型2)</li>
|
911
|
+
# <li>clb.c4.small(超强型1)</li><li>clb.c4.medium(超强型2)</li><li>clb.c4.large(超强型3)</li><li>clb.c4.xlarge(超强型4)</li>
|
907
912
|
# @type SlaType: String
|
908
913
|
# @param ClusterTag: Stgw独占集群的标签。
|
909
914
|
# @type ClusterTag: String
|
910
|
-
# @param Zones:
|
915
|
+
# @param Zones: 仅适用于私有网络内网负载均衡。内网就近接入时,选择可用区下发。可调用[DescribeZones](https://cloud.tencent.com/document/product/213/15707)接口查询可用区列表。
|
911
916
|
# @type Zones: Array
|
912
917
|
# @param EipAddressId: EIP 的唯一 ID,形如:eip-11112222,仅适用于内网负载均衡绑定EIP。
|
913
918
|
# @type EipAddressId: String
|
@@ -1003,35 +1008,35 @@ module TencentCloud
|
|
1003
1008
|
# @type ClusterName: String
|
1004
1009
|
# @param ClusterType: 集群类型,如TGW,STGW,VPCGW
|
1005
1010
|
# @type ClusterType: String
|
1006
|
-
# @param ClusterTag: 集群标签,只有STGW集群有标签
|
1011
|
+
# @param ClusterTag: 集群标签,只有TGW/STGW集群有标签
|
1007
1012
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1008
1013
|
# @type ClusterTag: String
|
1009
1014
|
# @param Zone: 集群所在可用区,如ap-guangzhou-1
|
1010
1015
|
# @type Zone: String
|
1011
1016
|
# @param Network: 集群网络类型,如Public,Private
|
1012
1017
|
# @type Network: String
|
1013
|
-
# @param MaxConn:
|
1018
|
+
# @param MaxConn: 最大连接数(个/秒)
|
1014
1019
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1015
1020
|
# @type MaxConn: Integer
|
1016
|
-
# @param MaxInFlow: 最大入带宽
|
1021
|
+
# @param MaxInFlow: 最大入带宽Mbps
|
1017
1022
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1018
1023
|
# @type MaxInFlow: Integer
|
1019
|
-
# @param MaxInPkg:
|
1024
|
+
# @param MaxInPkg: 最大入包量(个/秒)
|
1020
1025
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1021
1026
|
# @type MaxInPkg: Integer
|
1022
|
-
# @param MaxOutFlow: 最大出带宽
|
1027
|
+
# @param MaxOutFlow: 最大出带宽Mbps
|
1023
1028
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1024
1029
|
# @type MaxOutFlow: Integer
|
1025
|
-
# @param MaxOutPkg:
|
1030
|
+
# @param MaxOutPkg: 最大出包量(个/秒)
|
1026
1031
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1027
1032
|
# @type MaxOutPkg: Integer
|
1028
|
-
# @param MaxNewConn:
|
1033
|
+
# @param MaxNewConn: 最大新建连接数(个/秒)
|
1029
1034
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1030
1035
|
# @type MaxNewConn: Integer
|
1031
|
-
# @param HTTPMaxNewConn: http
|
1036
|
+
# @param HTTPMaxNewConn: http最大新建连接数(个/秒)
|
1032
1037
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1033
1038
|
# @type HTTPMaxNewConn: Integer
|
1034
|
-
# @param HTTPSMaxNewConn: https
|
1039
|
+
# @param HTTPSMaxNewConn: https最大新建连接数(个/秒)
|
1035
1040
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1036
1041
|
# @type HTTPSMaxNewConn: Integer
|
1037
1042
|
# @param HTTPQps: http QPS
|
@@ -1063,10 +1068,13 @@ module TencentCloud
|
|
1063
1068
|
# @param Egress: 网络出口
|
1064
1069
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1065
1070
|
# @type Egress: String
|
1071
|
+
# @param IPVersion: IP版本
|
1072
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1073
|
+
# @type IPVersion: String
|
1066
1074
|
|
1067
|
-
attr_accessor :ClusterId, :ClusterName, :ClusterType, :ClusterTag, :Zone, :Network, :MaxConn, :MaxInFlow, :MaxInPkg, :MaxOutFlow, :MaxOutPkg, :MaxNewConn, :HTTPMaxNewConn, :HTTPSMaxNewConn, :HTTPQps, :HTTPSQps, :ResourceCount, :IdleResourceCount, :LoadBalanceDirectorCount, :Isp, :ClustersZone, :ClustersVersion, :DisasterRecoveryType, :Egress
|
1075
|
+
attr_accessor :ClusterId, :ClusterName, :ClusterType, :ClusterTag, :Zone, :Network, :MaxConn, :MaxInFlow, :MaxInPkg, :MaxOutFlow, :MaxOutPkg, :MaxNewConn, :HTTPMaxNewConn, :HTTPSMaxNewConn, :HTTPQps, :HTTPSQps, :ResourceCount, :IdleResourceCount, :LoadBalanceDirectorCount, :Isp, :ClustersZone, :ClustersVersion, :DisasterRecoveryType, :Egress, :IPVersion
|
1068
1076
|
|
1069
|
-
def initialize(clusterid=nil, clustername=nil, clustertype=nil, clustertag=nil, zone=nil, network=nil, maxconn=nil, maxinflow=nil, maxinpkg=nil, maxoutflow=nil, maxoutpkg=nil, maxnewconn=nil, httpmaxnewconn=nil, httpsmaxnewconn=nil, httpqps=nil, httpsqps=nil, resourcecount=nil, idleresourcecount=nil, loadbalancedirectorcount=nil, isp=nil, clusterszone=nil, clustersversion=nil, disasterrecoverytype=nil, egress=nil)
|
1077
|
+
def initialize(clusterid=nil, clustername=nil, clustertype=nil, clustertag=nil, zone=nil, network=nil, maxconn=nil, maxinflow=nil, maxinpkg=nil, maxoutflow=nil, maxoutpkg=nil, maxnewconn=nil, httpmaxnewconn=nil, httpsmaxnewconn=nil, httpqps=nil, httpsqps=nil, resourcecount=nil, idleresourcecount=nil, loadbalancedirectorcount=nil, isp=nil, clusterszone=nil, clustersversion=nil, disasterrecoverytype=nil, egress=nil, ipversion=nil)
|
1070
1078
|
@ClusterId = clusterid
|
1071
1079
|
@ClusterName = clustername
|
1072
1080
|
@ClusterType = clustertype
|
@@ -1091,6 +1099,7 @@ module TencentCloud
|
|
1091
1099
|
@ClustersVersion = clustersversion
|
1092
1100
|
@DisasterRecoveryType = disasterrecoverytype
|
1093
1101
|
@Egress = egress
|
1102
|
+
@IPVersion = ipversion
|
1094
1103
|
end
|
1095
1104
|
|
1096
1105
|
def deserialize(params)
|
@@ -1121,6 +1130,7 @@ module TencentCloud
|
|
1121
1130
|
@ClustersVersion = params['ClustersVersion']
|
1122
1131
|
@DisasterRecoveryType = params['DisasterRecoveryType']
|
1123
1132
|
@Egress = params['Egress']
|
1133
|
+
@IPVersion = params['IPVersion']
|
1124
1134
|
end
|
1125
1135
|
end
|
1126
1136
|
|
@@ -1266,6 +1276,9 @@ module TencentCloud
|
|
1266
1276
|
# @type LogsetType: String
|
1267
1277
|
|
1268
1278
|
attr_accessor :LogsetName, :Period, :LogsetType
|
1279
|
+
extend Gem::Deprecate
|
1280
|
+
deprecate :Period, :none, 2024, 3
|
1281
|
+
deprecate :Period=, :none, 2024, 3
|
1269
1282
|
|
1270
1283
|
def initialize(logsetname=nil, period=nil, logsettype=nil)
|
1271
1284
|
@LogsetName = logsetname
|
@@ -1319,11 +1332,11 @@ module TencentCloud
|
|
1319
1332
|
# @param Scheduler: 监听器转发的方式。可选值:WRR、LEAST_CONN
|
1320
1333
|
# 分别表示按权重轮询、最小连接数, 默认为 WRR。此参数仅适用于TCP/UDP/TCP_SSL/QUIC监听器。
|
1321
1334
|
# @type Scheduler: String
|
1322
|
-
# @param SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS监听器。
|
1335
|
+
# @param SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS监听器。0表示开启,1表示未开启。
|
1323
1336
|
# @type SniSwitch: Integer
|
1324
|
-
# @param TargetType: 后端目标类型,NODE表示绑定普通节点,TARGETGROUP
|
1337
|
+
# @param TargetType: 后端目标类型,NODE表示绑定普通节点,TARGETGROUP表示绑定目标组。此参数仅适用于TCP/UDP监听器。七层监听器应在转发规则中设置。
|
1325
1338
|
# @type TargetType: String
|
1326
|
-
# @param SessionType: 会话保持类型。不传或传NORMAL表示默认会话保持类型。QUIC_CID 表示根据Quic Connection ID做会话保持。QUIC_CID只支持UDP
|
1339
|
+
# @param SessionType: 会话保持类型。不传或传NORMAL表示默认会话保持类型。QUIC_CID 表示根据Quic Connection ID做会话保持。QUIC_CID只支持UDP协议。此参数仅适用于TCP/UDP监听器。七层监听器应在转发规则中设置。(若选择QUIC_CID,则Protocol必须为UDP,Scheduler必须为WRR,同时只支持ipv4)
|
1327
1340
|
# @type SessionType: String
|
1328
1341
|
# @param KeepaliveEnable: 是否开启长连接,此参数仅适用于HTTP/HTTPS监听器,0:关闭;1:开启, 默认关闭。
|
1329
1342
|
# @type KeepaliveEnable: Integer
|
@@ -1439,7 +1452,7 @@ module TencentCloud
|
|
1439
1452
|
# @type MasterZoneId: String
|
1440
1453
|
# @param ZoneId: 仅适用于公网负载均衡。可用区ID,指定可用区以创建负载均衡实例。如:ap-guangzhou-1。
|
1441
1454
|
# @type ZoneId: String
|
1442
|
-
# @param InternetAccessible:
|
1455
|
+
# @param InternetAccessible: 网络计费模式,最大出带宽。仅对内网属性的性能容量型实例和公网属性的所有实例生效。
|
1443
1456
|
# @type InternetAccessible: :class:`Tencentcloud::Clb.v20180317.models.InternetAccessible`
|
1444
1457
|
# @param VipIsp: 仅适用于公网负载均衡。目前仅广州、上海、南京、济南、杭州、福州、北京、石家庄、武汉、长沙、成都、重庆地域支持静态单线 IP 线路类型,如需体验,请联系商务经理申请。申请通过后,即可选择中国移动(CMCC)、中国联通(CUCC)或中国电信(CTCC)的运营商类型,网络计费模式只能使用按带宽包计费(BANDWIDTH_PACKAGE)。 如果不指定本参数,则默认使用BGP。可通过 [DescribeResources](https://cloud.tencent.com/document/api/214/70213) 接口查询一个地域所支持的Isp。
|
1445
1458
|
# @type VipIsp: String
|
@@ -1691,7 +1704,7 @@ module TencentCloud
|
|
1691
1704
|
# @type TargetGroupName: String
|
1692
1705
|
# @param VpcId: 目标组的vpcid属性,不填则使用默认vpc
|
1693
1706
|
# @type VpcId: String
|
1694
|
-
# @param Port: 目标组的默认端口,
|
1707
|
+
# @param Port: 目标组的默认端口, 后续添加服务器时可使用该默认端口。Port和TargetGroupInstances.N中的port二者必填其一。
|
1695
1708
|
# @type Port: Integer
|
1696
1709
|
# @param TargetGroupInstances: 目标组绑定的后端服务器
|
1697
1710
|
# @type TargetGroupInstances: Array
|
@@ -1748,7 +1761,7 @@ module TencentCloud
|
|
1748
1761
|
# @type PartitionCount: Integer
|
1749
1762
|
# @param TopicType: 日志类型,ACCESS:访问日志,HEALTH:健康检查日志,默认ACCESS。
|
1750
1763
|
# @type TopicType: String
|
1751
|
-
# @param Period: 日志集的保存周期,单位:天,默认30
|
1764
|
+
# @param Period: 日志集的保存周期,单位:天,默认30天,范围[1, 3600]。
|
1752
1765
|
# @type Period: Integer
|
1753
1766
|
# @param StorageType: 日志主题的存储类型,可选值 HOT(标准存储),COLD(低频存储);默认为HOT。
|
1754
1767
|
# @type StorageType: String
|
@@ -3277,7 +3290,7 @@ module TencentCloud
|
|
3277
3290
|
# @type Offset: Integer
|
3278
3291
|
# @param Fields: 选择返回的Fields列表,系统仅会返回Fileds中填写的字段,可填写的字段详情请参见<a href="https://cloud.tencent.com/document/api/214/30694#LoadBalancerDetail">LoadBalancerDetail</a>。若未在Fileds填写相关字段,则此字段返回null。Fileds中默认添加LoadBalancerId和LoadBalancerName字段。
|
3279
3292
|
# @type Fields: Array
|
3280
|
-
# @param TargetType: 当Fields包含TargetId、TargetAddress、TargetPort、TargetWeight等Fields时,必选选择导出目标组的Target或者非目标组Target,值范围NODE、GROUP。
|
3293
|
+
# @param TargetType: 当Fields包含TargetId、TargetAddress、TargetPort、TargetWeight、ListenerId、Protocol、Port、LocationId、Domain、Url等Fields时,必选选择导出目标组的Target或者非目标组Target,值范围NODE、GROUP。
|
3281
3294
|
# @type TargetType: String
|
3282
3295
|
# @param Filters: 查询负载均衡详细信息列表条件,详细的过滤条件如下:
|
3283
3296
|
# <li> loadbalancer-id - String - 是否必填:否 - (过滤条件)按照 负载均衡ID 过滤,如:"lb-12345678"。</li>
|
@@ -3388,7 +3401,7 @@ module TencentCloud
|
|
3388
3401
|
# @type VpcId: String
|
3389
3402
|
# @param SecurityGroup: 安全组ID,如 sg-m1cc****。
|
3390
3403
|
# @type SecurityGroup: String
|
3391
|
-
# @param MasterZone: 主可用区ID,如 :"100001"
|
3404
|
+
# @param MasterZone: 主可用区ID,如 :"100001" (对应的是广州一区)。可通过[DescribeZones](https://cloud.tencent.com/document/product/213/15707)获取可用区列表。
|
3392
3405
|
# @type MasterZone: String
|
3393
3406
|
# @param Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。<br/>`Filter.Name`和`Filter.Values`皆为必填项。详细的过滤条件如下:
|
3394
3407
|
# <li> charge-type - String - 是否必填:否 - (过滤条件)按照 CLB 的实例计费模式过滤,包括"PREPAID","POSTPAID_BY_HOUR"。</li>
|
@@ -3397,7 +3410,6 @@ module TencentCloud
|
|
3397
3410
|
# <li> tag-key - String - 是否必填:否 - (过滤条件)按照 CLB 标签的键过滤。</li>
|
3398
3411
|
# <li> tag:tag-key - String - 是否必填:否 - (过滤条件)按照CLB标签键值对进行过滤,tag-key使用具体的标签键进行替换。</li>
|
3399
3412
|
# <li> function-name - String - 是否必填:否 - (过滤条件)按照 CLB 后端绑定的SCF云函数的函数名称过滤。</li>
|
3400
|
-
# <li> function-name - String - 是否必填:否 - (过滤条件)按照 CLB 后端绑定的SCF云函数的函数名称过滤。</li>
|
3401
3413
|
# <li> vip-isp - String - 是否必填:否 - (过滤条件)按照 CLB VIP的运营商类型过滤,如:"BGP","INTERNAL","CMCC","CTCC","CUCC"等。</li>
|
3402
3414
|
# <li> sla-type - String - 是否必填:否 - (过滤条件)按照 CLB 的性能容量型规格过滤,包括"clb.c2.medium","clb.c3.small","clb.c3.medium","clb.c4.small","clb.c4.medium","clb.c4.large","clb.c4.xlarge"。</li>
|
3403
3415
|
# @type Filters: Array
|
@@ -3532,7 +3544,7 @@ module TencentCloud
|
|
3532
3544
|
# @param Offset: 返回可用区资源列表起始偏移量,默认0。
|
3533
3545
|
# @type Offset: Integer
|
3534
3546
|
# @param Filters: 查询可用区资源列表条件,详细的过滤条件如下:
|
3535
|
-
# <li>
|
3547
|
+
# <li>master-zone -- String - 是否必填:否 - (过滤条件)按照 地区 类型过滤,如:"ap-guangzhou-2"。</li><li>ip-version -- String - 是否必填:否 - (过滤条件)按照 IP 类型过滤,可选值:"IPv4"、"IPv6"、"IPv6_Nat"。</li>
|
3536
3548
|
# <li> isp -- String - 是否必填:否 - (过滤条件)按照 Isp 类型过滤,如:"BGP","CMCC","CUCC","CTCC"。</li>
|
3537
3549
|
# @type Filters: Array
|
3538
3550
|
|
@@ -3895,6 +3907,7 @@ module TencentCloud
|
|
3895
3907
|
# @param Filters: 查询负载均衡绑定的后端服务列表,过滤条件如下:
|
3896
3908
|
# <li> location-id - String - 是否必填:否 - (过滤条件)按照 规则ID 过滤,如:"loc-12345678"。</li>
|
3897
3909
|
# <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 后端服务内网IP 过滤,如:"172.16.1.1"。</li>
|
3910
|
+
# <li> tag - String - 是否必填:否 - (过滤条件)按照 标签 过滤,如:"tag-test"。</li>
|
3898
3911
|
# @type Filters: Array
|
3899
3912
|
|
3900
3913
|
attr_accessor :LoadBalancerId, :ListenerIds, :Protocol, :Port, :Filters
|
@@ -4180,7 +4193,7 @@ module TencentCloud
|
|
4180
4193
|
class HealthCheck < TencentCloud::Common::AbstractModel
|
4181
4194
|
# @param HealthSwitch: 是否开启健康检查:1(开启)、0(关闭)。
|
4182
4195
|
# @type HealthSwitch: Integer
|
4183
|
-
# @param TimeOut:
|
4196
|
+
# @param TimeOut: 健康检查的响应超时时间,可选值:2~60,默认值:2,单位:秒。响应超时时间要小于检查间隔时间。
|
4184
4197
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4185
4198
|
# @type TimeOut: Integer
|
4186
4199
|
# @param IntervalTime: 健康检查探测间隔时间,默认值:5,IPv4 CLB实例的取值范围为:2-300,IPv6 CLB 实例的取值范围为:5-300。单位:秒。
|
@@ -4218,7 +4231,7 @@ module TencentCloud
|
|
4218
4231
|
# @param RecvContext: 自定义探测相关参数。健康检查协议CheckType的值取CUSTOM时,必填此字段,代表健康检查返回的结果,只允许ASCII可见字符,最大长度限制500。(仅适用于TCP/UDP监听器)。
|
4219
4232
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4220
4233
|
# @type RecvContext: String
|
4221
|
-
# @param CheckType: 健康检查使用的协议。取值 TCP | HTTP | HTTPS | GRPC | PING | CUSTOM,UDP监听器支持PING/CUSTOM,TCP监听器支持TCP/HTTP/CUSTOM,TCP_SSL/QUIC监听器支持TCP/HTTP,HTTP规则支持HTTP/GRPC,HTTPS规则支持HTTP/HTTPS/GRPC。
|
4234
|
+
# @param CheckType: 健康检查使用的协议。取值 TCP | HTTP | HTTPS | GRPC | PING | CUSTOM,UDP监听器支持PING/CUSTOM,TCP监听器支持TCP/HTTP/CUSTOM,TCP_SSL/QUIC监听器支持TCP/HTTP,HTTP规则支持HTTP/GRPC,HTTPS规则支持HTTP/HTTPS/GRPC。HTTP监听器默认值为HTTP;TCP、TCP_SSL、QUIC监听器默认值为TCP;UDP监听器默认为PING;HTTPS监听器的CheckType默认值与后端转发协议一致。
|
4222
4235
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4223
4236
|
# @type CheckType: String
|
4224
4237
|
# @param HttpVersion: HTTP版本。健康检查协议CheckType的值取HTTP时,必传此字段,代表后端服务的HTTP版本:HTTP/1.0、HTTP/1.1;(仅适用于TCP监听器)
|
@@ -4326,7 +4339,7 @@ module TencentCloud
|
|
4326
4339
|
# @type LoadBalancerType: String
|
4327
4340
|
# @param LoadBalancerChargeType: 询价的收费类型,POSTPAID为按量计费,"PREPAID"为预付费包年包月
|
4328
4341
|
# @type LoadBalancerChargeType: String
|
4329
|
-
# @param LoadBalancerChargePrepaid:
|
4342
|
+
# @param LoadBalancerChargePrepaid: 询价的收费周期。(仅包年包月支持该参数)
|
4330
4343
|
# @type LoadBalancerChargePrepaid: :class:`Tencentcloud::Clb.v20180317.models.LBChargePrepaid`
|
4331
4344
|
# @param InternetAccessible: 询价的网络计费方式
|
4332
4345
|
# @type InternetAccessible: :class:`Tencentcloud::Clb.v20180317.models.InternetAccessible`
|
@@ -4334,12 +4347,13 @@ module TencentCloud
|
|
4334
4347
|
# @type GoodsNum: Integer
|
4335
4348
|
# @param ZoneId: 指定可用区询价。如:ap-guangzhou-1
|
4336
4349
|
# @type ZoneId: String
|
4337
|
-
# @param SlaType:
|
4350
|
+
# @param SlaType: 包年包月询价时传性能容量型规格,如:<li>clb.c2.medium(标准型)</li><li>clb.c3.small(高阶型1)</li><li>clb.c3.medium(高阶型2)</li>
|
4351
|
+
# <li>clb.c4.small(超强型1)</li><li>clb.c4.medium(超强型2)</li><li>clb.c4.large(超强型3)</li><li>clb.c4.xlarge(超强型4)</li>
|
4352
|
+
# 按量付费询价时传SLA
|
4338
4353
|
# @type SlaType: String
|
4339
4354
|
# @param AddressIPVersion: IP版本,可取值:IPV4、IPV6、IPv6FullChain,不区分大小写,默认值 IPV4。说明:取值为IPV6表示为IPV6 NAT64版本;取值为IPv6FullChain,表示为IPv6版本。
|
4340
4355
|
# @type AddressIPVersion: String
|
4341
4356
|
# @param VipIsp: 仅适用于公网负载均衡。目前仅广州、上海、南京、济南、杭州、福州、北京、石家庄、武汉、长沙、成都、重庆地域支持静态单线 IP 线路类型,如需体验,请联系商务经理申请。申请通过后,即可选择中国移动(CMCC)、中国联通(CUCC)或中国电信(CTCC)的运营商类型,网络计费模式只能使用按带宽包计费(BANDWIDTH_PACKAGE)。 如果不指定本参数,则默认使用BGP。可通过 DescribeResources 接口查询一个地域所支持的Isp。
|
4342
|
-
# 示例值:CMCC
|
4343
4357
|
# @type VipIsp: String
|
4344
4358
|
|
4345
4359
|
attr_accessor :LoadBalancerType, :LoadBalancerChargeType, :LoadBalancerChargePrepaid, :InternetAccessible, :GoodsNum, :ZoneId, :SlaType, :AddressIPVersion, :VipIsp
|
@@ -4531,16 +4545,16 @@ module TencentCloud
|
|
4531
4545
|
|
4532
4546
|
# 网络计费模式,最大出带宽
|
4533
4547
|
class InternetAccessible < TencentCloud::Common::AbstractModel
|
4534
|
-
# @param InternetChargeType: TRAFFIC_POSTPAID_BY_HOUR 按流量按小时后计费 ; BANDWIDTH_POSTPAID_BY_HOUR 按带宽按小时后计费;
|
4535
|
-
# BANDWIDTH_PACKAGE 按带宽包计费;
|
4548
|
+
# @param InternetChargeType: TRAFFIC_POSTPAID_BY_HOUR 按流量按小时后计费 ; BANDWIDTH_POSTPAID_BY_HOUR 按带宽按小时后计费; BANDWIDTH_PACKAGE 按带宽包计费;BANDWIDTH_PREPAID按带宽预付费。
|
4536
4549
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4537
4550
|
# @type InternetChargeType: String
|
4538
4551
|
# @param InternetMaxBandwidthOut: 最大出带宽,单位Mbps,仅对公网属性的共享型、性能容量型和独占型 CLB 实例、以及内网属性的性能容量型 CLB 实例生效。
|
4539
4552
|
# - 对于公网属性的共享型和独占型 CLB 实例,最大出带宽的范围为1Mbps-2048Mbps。
|
4540
4553
|
# - 对于公网属性和内网属性的性能容量型 CLB实例,最大出带宽的范围为1Mbps-61440Mbps。
|
4554
|
+
# (调用CreateLoadBalancer创建LB时不指定此参数则设置为默认值10Mbps。此上限可调整)
|
4541
4555
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4542
4556
|
# @type InternetMaxBandwidthOut: Integer
|
4543
|
-
# @param BandwidthpkgSubType: 带宽包的类型,如SINGLEISP
|
4557
|
+
# @param BandwidthpkgSubType: 带宽包的类型,如SINGLEISP(单线)、BGP(多线)。
|
4544
4558
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4545
4559
|
# @type BandwidthpkgSubType: String
|
4546
4560
|
|
@@ -4728,7 +4742,7 @@ module TencentCloud
|
|
4728
4742
|
# @param HealthCheck: 监听器的健康检查信息
|
4729
4743
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4730
4744
|
# @type HealthCheck: :class:`Tencentcloud::Clb.v20180317.models.HealthCheck`
|
4731
|
-
# @param Scheduler:
|
4745
|
+
# @param Scheduler: 请求的调度方式。 WRR、LEAST_CONN、IP_HASH分别表示按权重轮询、最小连接数、IP Hash。
|
4732
4746
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4733
4747
|
# @type Scheduler: String
|
4734
4748
|
# @param SessionExpireTime: 会话保持时间
|
@@ -4782,10 +4796,13 @@ module TencentCloud
|
|
4782
4796
|
# @param IdleConnectTimeout: 空闲连接超时时间,仅支持TCP监听器。默认值:900;共享型实例和独占型实例取值范围:300~900,性能容量型实例取值范围:300~1980。
|
4783
4797
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4784
4798
|
# @type IdleConnectTimeout: Integer
|
4799
|
+
# @param RescheduleInterval: 调度时间。触发强制重新调度后,长连接将会在设置的调度时间内断开并完成重新分配
|
4800
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4801
|
+
# @type RescheduleInterval: Integer
|
4785
4802
|
|
4786
|
-
attr_accessor :ListenerId, :Protocol, :Port, :Certificate, :HealthCheck, :Scheduler, :SessionExpireTime, :SniSwitch, :Rules, :ListenerName, :CreateTime, :EndPort, :TargetType, :TargetGroup, :SessionType, :KeepaliveEnable, :Toa, :DeregisterTargetRst, :AttrFlags, :TargetGroupList, :MaxConn, :MaxCps, :IdleConnectTimeout
|
4803
|
+
attr_accessor :ListenerId, :Protocol, :Port, :Certificate, :HealthCheck, :Scheduler, :SessionExpireTime, :SniSwitch, :Rules, :ListenerName, :CreateTime, :EndPort, :TargetType, :TargetGroup, :SessionType, :KeepaliveEnable, :Toa, :DeregisterTargetRst, :AttrFlags, :TargetGroupList, :MaxConn, :MaxCps, :IdleConnectTimeout, :RescheduleInterval
|
4787
4804
|
|
4788
|
-
def initialize(listenerid=nil, protocol=nil, port=nil, certificate=nil, healthcheck=nil, scheduler=nil, sessionexpiretime=nil, sniswitch=nil, rules=nil, listenername=nil, createtime=nil, endport=nil, targettype=nil, targetgroup=nil, sessiontype=nil, keepaliveenable=nil, toa=nil, deregistertargetrst=nil, attrflags=nil, targetgrouplist=nil, maxconn=nil, maxcps=nil, idleconnecttimeout=nil)
|
4805
|
+
def initialize(listenerid=nil, protocol=nil, port=nil, certificate=nil, healthcheck=nil, scheduler=nil, sessionexpiretime=nil, sniswitch=nil, rules=nil, listenername=nil, createtime=nil, endport=nil, targettype=nil, targetgroup=nil, sessiontype=nil, keepaliveenable=nil, toa=nil, deregistertargetrst=nil, attrflags=nil, targetgrouplist=nil, maxconn=nil, maxcps=nil, idleconnecttimeout=nil, rescheduleinterval=nil)
|
4789
4806
|
@ListenerId = listenerid
|
4790
4807
|
@Protocol = protocol
|
4791
4808
|
@Port = port
|
@@ -4809,6 +4826,7 @@ module TencentCloud
|
|
4809
4826
|
@MaxConn = maxconn
|
4810
4827
|
@MaxCps = maxcps
|
4811
4828
|
@IdleConnectTimeout = idleconnecttimeout
|
4829
|
+
@RescheduleInterval = rescheduleinterval
|
4812
4830
|
end
|
4813
4831
|
|
4814
4832
|
def deserialize(params)
|
@@ -4858,6 +4876,7 @@ module TencentCloud
|
|
4858
4876
|
@MaxConn = params['MaxConn']
|
4859
4877
|
@MaxCps = params['MaxCps']
|
4860
4878
|
@IdleConnectTimeout = params['IdleConnectTimeout']
|
4879
|
+
@RescheduleInterval = params['RescheduleInterval']
|
4861
4880
|
end
|
4862
4881
|
end
|
4863
4882
|
|
@@ -5019,7 +5038,7 @@ module TencentCloud
|
|
5019
5038
|
# @type LoadBalancerType: String
|
5020
5039
|
# @param Forward: 负载均衡类型标识,1:负载均衡,0:传统型负载均衡。
|
5021
5040
|
# @type Forward: Integer
|
5022
|
-
# @param Domain:
|
5041
|
+
# @param Domain: 负载均衡实例的域名,仅公网传统型和域名型负载均衡实例才提供该字段。逐步下线中,建议用LoadBalancerDomain替代。
|
5023
5042
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5024
5043
|
# @type Domain: String
|
5025
5044
|
# @param LoadBalancerVips: 负载均衡实例的 VIP 列表。
|
@@ -5073,7 +5092,7 @@ module TencentCloud
|
|
5073
5092
|
# @param NumericalVpcId: 数值形式的私有网络 ID
|
5074
5093
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5075
5094
|
# @type NumericalVpcId: Integer
|
5076
|
-
# @param VipIsp: 负载均衡IP
|
5095
|
+
# @param VipIsp: 负载均衡IP地址所属的运营商。取值范围(BGP、CMCC、CTCC、CUCC)
|
5077
5096
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5078
5097
|
# @type VipIsp: String
|
5079
5098
|
# @param MasterZone: 主可用区
|
@@ -5174,6 +5193,9 @@ module TencentCloud
|
|
5174
5193
|
# @type Egress: String
|
5175
5194
|
|
5176
5195
|
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
|
5196
|
+
extend Gem::Deprecate
|
5197
|
+
deprecate :Log, :none, 2024, 3
|
5198
|
+
deprecate :Log=, :none, 2024, 3
|
5177
5199
|
|
5178
5200
|
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)
|
5179
5201
|
@LoadBalancerId = loadbalancerid
|
@@ -5360,7 +5382,7 @@ module TencentCloud
|
|
5360
5382
|
# @param Zone: 负载均衡实例所在可用区。
|
5361
5383
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5362
5384
|
# @type Zone: String
|
5363
|
-
# @param AddressIsp: 负载均衡实例IP地址所属的ISP
|
5385
|
+
# @param AddressIsp: 负载均衡实例IP地址所属的ISP。取值范围:BGP(多线)、CMCC(中国移动)、CUCC(中国联通)、CTCC(中国电信)、INTERNAL(内网)。
|
5364
5386
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5365
5387
|
# @type AddressIsp: String
|
5366
5388
|
# @param VpcId: 负载均衡实例所属私有网络的 ID。
|
@@ -5372,7 +5394,7 @@ module TencentCloud
|
|
5372
5394
|
# @param CreateTime: 负载均衡实例的创建时间。
|
5373
5395
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5374
5396
|
# @type CreateTime: String
|
5375
|
-
# @param ChargeType:
|
5397
|
+
# @param ChargeType: 负载均衡实例的计费类型。取值范围:PREPAID预付费、POSTPAID_BY_HOUR按量付费。
|
5376
5398
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5377
5399
|
# @type ChargeType: String
|
5378
5400
|
# @param NetworkAttributes: 负载均衡实例的网络属性。
|
@@ -5426,7 +5448,7 @@ module TencentCloud
|
|
5426
5448
|
# @param SecurityGroup: 负载均衡绑定的安全组列表。
|
5427
5449
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5428
5450
|
# @type SecurityGroup: Array
|
5429
|
-
# @param LoadBalancerPassToTarget:
|
5451
|
+
# @param LoadBalancerPassToTarget: 负载均衡安全组上移特性是否开启标识。取值范围:1表示开启、0表示未开启。
|
5430
5452
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5431
5453
|
# @type LoadBalancerPassToTarget: Integer
|
5432
5454
|
# @param TargetHealth: 后端目标健康状态。
|
@@ -5973,16 +5995,19 @@ module TencentCloud
|
|
5973
5995
|
# @type Certificate: :class:`Tencentcloud::Clb.v20180317.models.CertificateInput`
|
5974
5996
|
# @param Scheduler: 监听器转发的方式。可选值:WRR、LEAST_CONN
|
5975
5997
|
# 分别表示按权重轮询、最小连接数, 默认为 WRR。
|
5998
|
+
# 使用场景:适用于TCP/UDP/TCP_SSL/QUIC监听器。七层监听器的均衡方式应在转发规则中修改。
|
5976
5999
|
# @type Scheduler: String
|
5977
|
-
# @param SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS
|
6000
|
+
# @param SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS监听器。默认0,表示不开启,1表示开启。注意:未开启SNI的监听器可以开启SNI;已开启SNI的监听器不能关闭SNI。
|
5978
6001
|
# @type SniSwitch: Integer
|
5979
6002
|
# @param TargetType: 后端目标类型,NODE表示绑定普通节点,TARGETGROUP表示绑定目标组。
|
5980
6003
|
# @type TargetType: String
|
5981
6004
|
# @param KeepaliveEnable: 是否开启长连接,此参数仅适用于HTTP/HTTPS监听器。
|
6005
|
+
# 默认值0表示不开启,1表示开启。
|
5982
6006
|
# @type KeepaliveEnable: Integer
|
5983
6007
|
# @param DeregisterTargetRst: 解绑后端目标时,是否发RST给客户端,此参数仅适用于TCP监听器。
|
5984
6008
|
# @type DeregisterTargetRst: Boolean
|
5985
6009
|
# @param SessionType: 会话保持类型。NORMAL表示默认会话保持类型。QUIC_CID表示根据Quic Connection ID做会话保持。QUIC_CID只支持UDP协议。
|
6010
|
+
# 使用场景:适用于TCP/UDP/TCP_SSL/QUIC监听器。
|
5986
6011
|
# @type SessionType: String
|
5987
6012
|
# @param MultiCertInfo: 证书信息,支持同时传入不同算法类型的多本服务端证书;此参数仅适用于未开启SNI特性的HTTPS监听器。此参数和Certificate不能同时传入。
|
5988
6013
|
# @type MultiCertInfo: :class:`Tencentcloud::Clb.v20180317.models.MultiCertInfo`
|
@@ -6213,7 +6238,7 @@ module TencentCloud
|
|
6213
6238
|
class ModifyLoadBalancersProjectRequest < TencentCloud::Common::AbstractModel
|
6214
6239
|
# @param LoadBalancerIds: 一个或多个待操作的负载均衡实例ID。
|
6215
6240
|
# @type LoadBalancerIds: Array
|
6216
|
-
# @param ProjectId: 项目ID
|
6241
|
+
# @param ProjectId: 项目ID。可以通过 [DescribeProject](https://cloud.tencent.com/document/api/651/78725) 接口获取。
|
6217
6242
|
# @type ProjectId: Integer
|
6218
6243
|
|
6219
6244
|
attr_accessor :LoadBalancerIds, :ProjectId
|
@@ -6260,9 +6285,9 @@ module TencentCloud
|
|
6260
6285
|
# @param Scheduler: 规则的请求转发方式,可选值:WRR、LEAST_CONN、IP_HASH
|
6261
6286
|
# 分别表示按权重轮询、最小连接数、按IP哈希, 默认为 WRR。
|
6262
6287
|
# @type Scheduler: String
|
6263
|
-
# @param SessionExpireTime:
|
6288
|
+
# @param SessionExpireTime: 会话保持时间。取值范围0或30-86400(单位:秒)。
|
6264
6289
|
# @type SessionExpireTime: Integer
|
6265
|
-
# @param ForwardType: 负载均衡实例与后端服务之间的转发协议,默认HTTP,可取值:HTTP、HTTPS、
|
6290
|
+
# @param ForwardType: 负载均衡实例与后端服务之间的转发协议,默认HTTP,可取值:HTTP、HTTPS、GRPC。仅HTTPS监听器该参数有效。
|
6266
6291
|
# @type ForwardType: String
|
6267
6292
|
# @param TrpcCallee: TRPC被调服务器路由,ForwardType为TRPC时必填。目前暂未对外开放。
|
6268
6293
|
# @type TrpcCallee: String
|
@@ -7093,6 +7118,11 @@ module TencentCloud
|
|
7093
7118
|
# @type Weight: Integer
|
7094
7119
|
|
7095
7120
|
attr_accessor :ListenerId, :Targets, :LocationId, :Domain, :Url, :Weight
|
7121
|
+
extend Gem::Deprecate
|
7122
|
+
deprecate :Domain, :none, 2024, 3
|
7123
|
+
deprecate :Domain=, :none, 2024, 3
|
7124
|
+
deprecate :Url, :none, 2024, 3
|
7125
|
+
deprecate :Url=, :none, 2024, 3
|
7096
7126
|
|
7097
7127
|
def initialize(listenerid=nil, targets=nil, locationid=nil, domain=nil, url=nil, weight=nil)
|
7098
7128
|
@ListenerId = listenerid
|
@@ -7258,7 +7288,8 @@ module TencentCloud
|
|
7258
7288
|
# @param Certificate: 证书信息
|
7259
7289
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7260
7290
|
# @type Certificate: :class:`Tencentcloud::Clb.v20180317.models.CertificateOutput`
|
7261
|
-
# @param Scheduler:
|
7291
|
+
# @param Scheduler: 规则的请求转发方式。
|
7292
|
+
# WRR、LEAST_CONN、IP_HASH分别表示按权重轮询、最小连接数、IP Hash。
|
7262
7293
|
# @type Scheduler: String
|
7263
7294
|
# @param ListenerId: 转发规则所属的监听器 ID
|
7264
7295
|
# @type ListenerId: String
|
@@ -7277,7 +7308,7 @@ module TencentCloud
|
|
7277
7308
|
# @type ForwardType: String
|
7278
7309
|
# @param CreateTime: 转发规则的创建时间
|
7279
7310
|
# @type CreateTime: String
|
7280
|
-
# @param TargetType:
|
7311
|
+
# @param TargetType: 后端服务器类型。NODE表示绑定普通节点,TARGETGROUP表示绑定目标组。
|
7281
7312
|
# @type TargetType: String
|
7282
7313
|
# @param TargetGroup: 绑定的目标组基本信息;当规则绑定目标组时,会返回该字段
|
7283
7314
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -7291,7 +7322,7 @@ module TencentCloud
|
|
7291
7322
|
# @param TrpcFunc: TRPC调用服务接口,ForwardType为TRPC时有效。目前暂未对外开放。
|
7292
7323
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7293
7324
|
# @type TrpcFunc: String
|
7294
|
-
# @param QuicStatus: QUIC
|
7325
|
+
# @param QuicStatus: QUIC状态。QUIC_ACTIVE表示开启,QUIC_INACTIVE表示未开启。注意,只有HTTPS域名才能开启QUIC。
|
7295
7326
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7296
7327
|
# @type QuicStatus: String
|
7297
7328
|
# @param Domains: 转发规则的域名列表。
|
@@ -7515,11 +7546,11 @@ module TencentCloud
|
|
7515
7546
|
# @param LoadBalancerId: 负载均衡实例 ID。
|
7516
7547
|
# @type LoadBalancerId: String
|
7517
7548
|
# @param LogSetId: 日志服务(CLS)的日志集 ID。
|
7518
|
-
# <li>增加和更新日志主题时可调用 [DescribeLogsets](https://cloud.tencent.com/document/product/614/
|
7549
|
+
# <li>增加和更新日志主题时可调用 [DescribeLogsets](https://cloud.tencent.com/document/product/614/58624) 接口获取日志集 ID。</li>
|
7519
7550
|
# <li>删除日志主题时,此参数填写为null即可。</li>
|
7520
7551
|
# @type LogSetId: String
|
7521
7552
|
# @param LogTopicId: 日志服务(CLS)的日志主题 ID。
|
7522
|
-
# <li>增加和更新日志主题时可调用 [DescribeTopics](https://cloud.tencent.com/document/product/614/
|
7553
|
+
# <li>增加和更新日志主题时可调用 [DescribeTopics](https://cloud.tencent.com/document/product/614/56454) 接口获取日志主题 ID。</li>
|
7523
7554
|
# <li>删除日志主题时,此参数填写为null即可。</li>
|
7524
7555
|
# @type LogTopicId: String
|
7525
7556
|
# @param LogType: 日志类型:
|
@@ -7727,10 +7758,13 @@ module TencentCloud
|
|
7727
7758
|
|
7728
7759
|
# 规格可用性
|
7729
7760
|
class SpecAvailability < TencentCloud::Common::AbstractModel
|
7730
|
-
# @param SpecType:
|
7761
|
+
# @param SpecType: 规格类型。
|
7762
|
+
# <li>clb.c2.medium(标准型)</li><li>clb.c3.small(高阶型1)</li><li>clb.c3.medium(高阶型2)</li>
|
7763
|
+
# <li>clb.c4.small(超强型1)</li><li>clb.c4.medium(超强型2)</li><li>clb.c4.large(超强型3)</li><li>clb.c4.xlarge(超强型4)</li><li>shared(共享型)</li>
|
7764
|
+
|
7731
7765
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7732
7766
|
# @type SpecType: String
|
7733
|
-
# @param Availability:
|
7767
|
+
# @param Availability: 规格可用性。资源可用性,"Available":可用,"Unavailable":不可用
|
7734
7768
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7735
7769
|
# @type Availability: String
|
7736
7770
|
|
@@ -7817,7 +7851,7 @@ module TencentCloud
|
|
7817
7851
|
# @type LoadBalancerId: String
|
7818
7852
|
# @param TargetGroupId: 目标组ID
|
7819
7853
|
# @type TargetGroupId: String
|
7820
|
-
# @param ListenerId: 监听器ID
|
7854
|
+
# @param ListenerId: 监听器ID。访问AssociateTargetGroups和DisassociateTargetGroups接口时必传此参数。
|
7821
7855
|
# @type ListenerId: String
|
7822
7856
|
# @param LocationId: 转发规则ID
|
7823
7857
|
# @type LocationId: String
|
@@ -7916,7 +7950,7 @@ module TencentCloud
|
|
7916
7950
|
# @type CreatedTime: String
|
7917
7951
|
# @param UpdatedTime: 目标组的修改时间
|
7918
7952
|
# @type UpdatedTime: String
|
7919
|
-
# @param AssociatedRule:
|
7953
|
+
# @param AssociatedRule: 关联到的规则数组。在DescribeTargetGroupList接口调用时无法获取到该参数。
|
7920
7954
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7921
7955
|
# @type AssociatedRule: Array
|
7922
7956
|
|
@@ -7995,8 +8029,8 @@ module TencentCloud
|
|
7995
8029
|
|
7996
8030
|
attr_accessor :IP, :Port, :HealthStatus, :TargetId, :HealthStatusDetail, :HealthStatusDetial
|
7997
8031
|
extend Gem::Deprecate
|
7998
|
-
deprecate :HealthStatusDetial, :none, 2024,
|
7999
|
-
deprecate :HealthStatusDetial=, :none, 2024,
|
8032
|
+
deprecate :HealthStatusDetial, :none, 2024, 3
|
8033
|
+
deprecate :HealthStatusDetial=, :none, 2024, 3
|
8000
8034
|
|
8001
8035
|
def initialize(ip=nil, port=nil, healthstatus=nil, targetid=nil, healthstatusdetail=nil, healthstatusdetial=nil)
|
8002
8036
|
@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.776
|
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-03-
|
11
|
+
date: 2024-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|