tencentcloud-sdk-clb 3.0.499 → 3.0.500
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/models.rb +33 -1
- 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: 1085b0706a234038262bfcfdddab4b0e36568e97
|
4
|
+
data.tar.gz: 2148c99b31c88e50f1cad3730ec132317aa8aaf1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 346c6cae0b93d57d2e75b184e4716753ae63cde4f20979850c53e0713a6fe871dcd562eef66eb4384a272486c372f85b3029d9f65876e3c0ba143edb92d100be
|
7
|
+
data.tar.gz: bde257924a74aa25b3b54e89d4dc42b9dbc2a42ae463acea16efea2e5f258bb5a923337233b18e0f3df81118d22ea8be2da99d3751a81906fcc6c9051d6c5288
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.500
|
data/lib/v20180317/models.rb
CHANGED
@@ -6143,12 +6143,44 @@ module TencentCloud
|
|
6143
6143
|
|
6144
6144
|
# RegisterFunctionTargets请求参数结构体
|
6145
6145
|
class RegisterFunctionTargetsRequest < TencentCloud::Common::AbstractModel
|
6146
|
+
# @param LoadBalancerId: 负载均衡实例 ID。
|
6147
|
+
# @type LoadBalancerId: String
|
6148
|
+
# @param ListenerId: 负载均衡监听器 ID。
|
6149
|
+
# @type ListenerId: String
|
6150
|
+
# @param FunctionTargets: 待绑定的云函数列表。
|
6151
|
+
# @type FunctionTargets: Array
|
6152
|
+
# @param LocationId: 目标转发规则的 ID,当将云函数绑定到七层转发规则时,必须输入此参数或 Domain+Url 参数。
|
6153
|
+
# @type LocationId: String
|
6154
|
+
# @param Domain: 目标转发规则的域名,若已经输入 LocationId 参数,则本参数不生效。
|
6155
|
+
# @type Domain: String
|
6156
|
+
# @param Url: 目标转发规则的 URL,若已经输入 LocationId 参数,则本参数不生效。
|
6157
|
+
# @type Url: String
|
6146
6158
|
|
6159
|
+
attr_accessor :LoadBalancerId, :ListenerId, :FunctionTargets, :LocationId, :Domain, :Url
|
6147
6160
|
|
6148
|
-
def initialize()
|
6161
|
+
def initialize(loadbalancerid=nil, listenerid=nil, functiontargets=nil, locationid=nil, domain=nil, url=nil)
|
6162
|
+
@LoadBalancerId = loadbalancerid
|
6163
|
+
@ListenerId = listenerid
|
6164
|
+
@FunctionTargets = functiontargets
|
6165
|
+
@LocationId = locationid
|
6166
|
+
@Domain = domain
|
6167
|
+
@Url = url
|
6149
6168
|
end
|
6150
6169
|
|
6151
6170
|
def deserialize(params)
|
6171
|
+
@LoadBalancerId = params['LoadBalancerId']
|
6172
|
+
@ListenerId = params['ListenerId']
|
6173
|
+
unless params['FunctionTargets'].nil?
|
6174
|
+
@FunctionTargets = []
|
6175
|
+
params['FunctionTargets'].each do |i|
|
6176
|
+
functiontarget_tmp = FunctionTarget.new
|
6177
|
+
functiontarget_tmp.deserialize(i)
|
6178
|
+
@FunctionTargets << functiontarget_tmp
|
6179
|
+
end
|
6180
|
+
end
|
6181
|
+
@LocationId = params['LocationId']
|
6182
|
+
@Domain = params['Domain']
|
6183
|
+
@Url = params['Url']
|
6152
6184
|
end
|
6153
6185
|
end
|
6154
6186
|
|
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.500
|
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-02-
|
11
|
+
date: 2023-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|