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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180317/models.rb +33 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de6a9aaf3898590ef387da96bf6f2b1832b0afc7
4
- data.tar.gz: 37f5a0b92de6d726cda14f795278cc8d66fbfd1a
3
+ metadata.gz: 8000fe21cabfad125a18885604cdd69654c24082
4
+ data.tar.gz: 459fa1122167b9b0bfe7de464aa886605eb3b8ea
5
5
  SHA512:
6
- metadata.gz: 8c158cd3e87a1d0f706190c08a9664107a839c6fc9a0990825deb35d65e25f19fb34f292a06974ff7256435bb230a89c5761e549f4acec37e73b557f39f67782
7
- data.tar.gz: 1284e5136ade63129a58773aa521f031a54132c69f2ab0323050f66151eaab4e75730700a30d9253cc10d4c9a1e8d5a28de6fb1cacaa739e17bfda88e63cea1f
6
+ metadata.gz: 71d0d43e9d3f6068a8d489cc983209a74b8887c78fa3d3141ef9cb6628e7b2fe46659f5dd4044f75e9480c390771bfae72e65d4609798b838eaca8bb3055d7d6
7
+ data.tar.gz: 459bd3096d7cfc2b381dce65478ecfbe19d6bde6ae13ef9f3923e16c58ffa0a410575968171a945b2ee42b3e4bafb2e969d232636d37ab6861e0b3622fdd5209
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.499
1
+ 3.0.501
@@ -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.499
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-01 00:00:00.000000000 Z
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