tencentcloud-sdk-clb 3.0.499 → 3.0.501
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 +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: 8000fe21cabfad125a18885604cdd69654c24082
|
4
|
+
data.tar.gz: 459fa1122167b9b0bfe7de464aa886605eb3b8ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71d0d43e9d3f6068a8d489cc983209a74b8887c78fa3d3141ef9cb6628e7b2fe46659f5dd4044f75e9480c390771bfae72e65d4609798b838eaca8bb3055d7d6
|
7
|
+
data.tar.gz: 459bd3096d7cfc2b381dce65478ecfbe19d6bde6ae13ef9f3923e16c58ffa0a410575968171a945b2ee42b3e4bafb2e969d232636d37ab6861e0b3622fdd5209
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.501
|
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.501
|
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-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|