tencentcloud-sdk-clb 3.0.680 → 3.0.681
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/client.rb +1 -1
- data/lib/v20180317/models.rb +8 -3
- 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: 28f4557ba4715f6d7d044cd5a82b75d98c193037
|
|
4
|
+
data.tar.gz: 919f606dcc501e223838baeffae9cc6b8835df10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bae197c840225c8e6f1209d667c43664a20e62f91da9c2a42076e89e2f63e9580f79d0634ef2e9d5917009e6008748886c4324d340c0056299373e586b55082e
|
|
7
|
+
data.tar.gz: 66f8143fe37239eb874c82214f5bf82a98a0428894421d8d43d42caf9cc237c27208a0cdc295e70f386828717c69e4718e075d252632ebf21151c5e30c08c0fc
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.681
|
data/lib/v20180317/client.rb
CHANGED
|
@@ -197,7 +197,7 @@ module TencentCloud
|
|
|
197
197
|
# 通过接口调用:
|
|
198
198
|
# BGP带宽包必须传带宽包id
|
|
199
199
|
# 独占集群克隆必须传对应的参数,否则按共享型创建
|
|
200
|
-
#
|
|
200
|
+
# 功能内测中,请提交 [内测申请](https://cloud.tencent.com/apply/p/1akuvsmyn0g)。
|
|
201
201
|
|
|
202
202
|
# @param request: Request instance for CloneLoadBalancer.
|
|
203
203
|
# @type request: :class:`Tencentcloud::clb::V20180317::CloneLoadBalancerRequest`
|
data/lib/v20180317/models.rb
CHANGED
|
@@ -157,7 +157,7 @@ module TencentCloud
|
|
|
157
157
|
|
|
158
158
|
# 监听器绑定的后端服务的详细信息
|
|
159
159
|
class Backend < TencentCloud::Common::AbstractModel
|
|
160
|
-
# @param Type: 后端服务的类型,可取:CVM、ENI
|
|
160
|
+
# @param Type: 后端服务的类型,可取:CVM、ENI、CCN
|
|
161
161
|
# @type Type: String
|
|
162
162
|
# @param InstanceId: 后端服务的唯一 ID,如 ins-abcd1234
|
|
163
163
|
# @type InstanceId: String
|
|
@@ -180,10 +180,13 @@ module TencentCloud
|
|
|
180
180
|
# @param EniId: 弹性网卡唯一ID,如 eni-1234abcd
|
|
181
181
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
182
182
|
# @type EniId: String
|
|
183
|
+
# @param Tag: 标签。
|
|
184
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
185
|
+
# @type Tag: String
|
|
183
186
|
|
|
184
|
-
attr_accessor :Type, :InstanceId, :Port, :Weight, :PublicIpAddresses, :PrivateIpAddresses, :InstanceName, :RegisteredTime, :EniId
|
|
187
|
+
attr_accessor :Type, :InstanceId, :Port, :Weight, :PublicIpAddresses, :PrivateIpAddresses, :InstanceName, :RegisteredTime, :EniId, :Tag
|
|
185
188
|
|
|
186
|
-
def initialize(type=nil, instanceid=nil, port=nil, weight=nil, publicipaddresses=nil, privateipaddresses=nil, instancename=nil, registeredtime=nil, eniid=nil)
|
|
189
|
+
def initialize(type=nil, instanceid=nil, port=nil, weight=nil, publicipaddresses=nil, privateipaddresses=nil, instancename=nil, registeredtime=nil, eniid=nil, tag=nil)
|
|
187
190
|
@Type = type
|
|
188
191
|
@InstanceId = instanceid
|
|
189
192
|
@Port = port
|
|
@@ -193,6 +196,7 @@ module TencentCloud
|
|
|
193
196
|
@InstanceName = instancename
|
|
194
197
|
@RegisteredTime = registeredtime
|
|
195
198
|
@EniId = eniid
|
|
199
|
+
@Tag = tag
|
|
196
200
|
end
|
|
197
201
|
|
|
198
202
|
def deserialize(params)
|
|
@@ -205,6 +209,7 @@ module TencentCloud
|
|
|
205
209
|
@InstanceName = params['InstanceName']
|
|
206
210
|
@RegisteredTime = params['RegisteredTime']
|
|
207
211
|
@EniId = params['EniId']
|
|
212
|
+
@Tag = params['Tag']
|
|
208
213
|
end
|
|
209
214
|
end
|
|
210
215
|
|
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.681
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-10-
|
|
11
|
+
date: 2023-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|