tencentcloud-sdk-clb 3.0.1022 → 3.0.1023
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 -7
- 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: 20bace40eec3d46f9854029c165368d2156d1c9c
|
4
|
+
data.tar.gz: 1286600f2c9284169b1e43cb36280d526fd5c0c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc4ec2330cdb6891dbaf7a8f2b0b0a78e73cfcc067237a120d3ef4b1aa9cd938d0352ad869042d02f29610edd75d03a8bc2a9198daada51b659aab640030ccf8
|
7
|
+
data.tar.gz: 940229bbb2e740e011a3da80bc542471ad4bcb00bf87551854cdb8177090037731c5ae0b97965b51ad0b3be2b6f2c1757362d86c38597fdd08f6a8913b411522
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1023
|
data/lib/v20180317/models.rb
CHANGED
@@ -1898,6 +1898,8 @@ module TencentCloud
|
|
1898
1898
|
# @type TargetGroupInstances: Array
|
1899
1899
|
# @param Type: 目标组类型,当前支持v1(旧版目标组), v2(新版目标组), 默认为v1(旧版目标组)。
|
1900
1900
|
# @type Type: String
|
1901
|
+
# @param Protocol: 目标组后端转发协议。v2新版目标组该项必填。目前支持tcp、udp。
|
1902
|
+
# @type Protocol: String
|
1901
1903
|
# @param Tags: 标签。
|
1902
1904
|
# @type Tags: Array
|
1903
1905
|
# @param Weight: 后端服务默认权重。
|
@@ -1907,14 +1909,15 @@ module TencentCloud
|
|
1907
1909
|
# </ul>
|
1908
1910
|
# @type Weight: Integer
|
1909
1911
|
|
1910
|
-
attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Type, :Tags, :Weight
|
1912
|
+
attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Type, :Protocol, :Tags, :Weight
|
1911
1913
|
|
1912
|
-
def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, type=nil, tags=nil, weight=nil)
|
1914
|
+
def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, type=nil, protocol=nil, tags=nil, weight=nil)
|
1913
1915
|
@TargetGroupName = targetgroupname
|
1914
1916
|
@VpcId = vpcid
|
1915
1917
|
@Port = port
|
1916
1918
|
@TargetGroupInstances = targetgroupinstances
|
1917
1919
|
@Type = type
|
1920
|
+
@Protocol = protocol
|
1918
1921
|
@Tags = tags
|
1919
1922
|
@Weight = weight
|
1920
1923
|
end
|
@@ -1932,6 +1935,7 @@ module TencentCloud
|
|
1932
1935
|
end
|
1933
1936
|
end
|
1934
1937
|
@Type = params['Type']
|
1938
|
+
@Protocol = params['Protocol']
|
1935
1939
|
unless params['Tags'].nil?
|
1936
1940
|
@Tags = []
|
1937
1941
|
params['Tags'].each do |i|
|
@@ -1972,7 +1976,9 @@ module TencentCloud
|
|
1972
1976
|
# @type PartitionCount: Integer
|
1973
1977
|
# @param TopicType: 日志类型,ACCESS:访问日志,HEALTH:健康检查日志,默认ACCESS。
|
1974
1978
|
# @type TopicType: String
|
1975
|
-
# @param Period:
|
1979
|
+
# @param Period: 存储时间,单位天
|
1980
|
+
# - 日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。
|
1981
|
+
# - 日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。
|
1976
1982
|
# @type Period: Integer
|
1977
1983
|
# @param StorageType: 日志主题的存储类型,可选值 HOT(标准存储),COLD(低频存储);默认为HOT。
|
1978
1984
|
# @type StorageType: String
|
@@ -5384,7 +5390,12 @@ module TencentCloud
|
|
5384
5390
|
# @param NumericalVpcId: 数值形式的私有网络 ID
|
5385
5391
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5386
5392
|
# @type NumericalVpcId: Integer
|
5387
|
-
# @param VipIsp: 负载均衡IP
|
5393
|
+
# @param VipIsp: 负载均衡IP地址所属的运营商。
|
5394
|
+
|
5395
|
+
# - BGP : BGP(多线)
|
5396
|
+
# - CMCC:中国移动单线
|
5397
|
+
# - CTCC:中国电信单线
|
5398
|
+
# - CUCC:中国联通单线
|
5388
5399
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5389
5400
|
# @type VipIsp: String
|
5390
5401
|
# @param MasterZone: 主可用区
|
@@ -5661,7 +5672,7 @@ module TencentCloud
|
|
5661
5672
|
# @param LoadBalancerName: 负载均衡实例的名称。
|
5662
5673
|
# @type LoadBalancerName: String
|
5663
5674
|
# @param LoadBalancerType: 负载均衡实例的网络类型:
|
5664
|
-
#
|
5675
|
+
# Public:公网属性,Private:内网属性;对于内网属性的负载均衡,可通过绑定EIP出公网,具体可参考EIP文档。
|
5665
5676
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5666
5677
|
# @type LoadBalancerType: String
|
5667
5678
|
# @param Status: 负载均衡实例的状态,包括
|
@@ -7965,11 +7976,11 @@ module TencentCloud
|
|
7965
7976
|
# @type LoadBalancerId: String
|
7966
7977
|
# @param LogSetId: 日志服务(CLS)的日志集 ID。
|
7967
7978
|
# <li>增加和更新日志主题时可调用 [DescribeLogsets](https://cloud.tencent.com/document/product/614/58624) 接口获取日志集 ID。</li>
|
7968
|
-
# <li
|
7979
|
+
# <li>删除日志主题时,此参数填写为**空字符串**即可。</li>
|
7969
7980
|
# @type LogSetId: String
|
7970
7981
|
# @param LogTopicId: 日志服务(CLS)的日志主题 ID。
|
7971
7982
|
# <li>增加和更新日志主题时可调用 [DescribeTopics](https://cloud.tencent.com/document/product/614/56454) 接口获取日志主题 ID。</li>
|
7972
|
-
# <li
|
7983
|
+
# <li>删除日志主题时,此参数填写为**空字符串**即可。</li>
|
7973
7984
|
# @type LogTopicId: String
|
7974
7985
|
# @param LogType: 日志类型:
|
7975
7986
|
# <li>ACCESS:访问日志</li>
|
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.1023
|
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-03-
|
11
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|