tencentcloud-sdk-gwlb 3.0.1036 → 3.0.1037

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/v20240906/models.rb +13 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 24ec7a03c42a013ee41f93e15fcc20365036b908
4
- data.tar.gz: d12d3b8276b20123096fbc07b7eb205ab328a682
3
+ metadata.gz: 767f8b8201c5dd23b01853128319203de90729fb
4
+ data.tar.gz: 32794594d521b457623552b70a0d1f1f959aefa3
5
5
  SHA512:
6
- metadata.gz: 4ee7a2abce792813844c780c7a9718beb72d1253256848a49aa7c7470b07ae53dbd3fe29b385736bd74018c9ab74d5b90ad6b3d1341dc7fbe239d7cb5340c350
7
- data.tar.gz: e7670d811ef9b1427c1dd10371b7ef6222b1bb354ec7b9e5d4dadfeeb9aa52d162ac9896cad279ff9c1b68501a6f8af2500f7a7b008f6f3a80040e17970b80a8
6
+ metadata.gz: 2cebd2a72a45bd948eda355cfe5acbdf3a01777e0cbbb738faa62c030135bb17b6a833dee1df28f7869af6be221a648d96842ae2bbbe3da555f28bd77ee02996
7
+ data.tar.gz: f36b440deee3f42ac14bfa029804722d73410c1b5ed4ce2d11e4eb233b4a5e075a3b8288abc441e2af6018f5c9399edc50fc5b74e9bb63ce07b26f0b10de9a8a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1036
1
+ 3.0.1037
@@ -167,10 +167,12 @@ module TencentCloud
167
167
  # @type ScheduleAlgorithm: String
168
168
  # @param AllDeadToAlive: 是否支持全死全活。默认支持。
169
169
  # @type AllDeadToAlive: Boolean
170
+ # @param Tags: 标签。
171
+ # @type Tags: Array
170
172
 
171
- attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Protocol, :HealthCheck, :ScheduleAlgorithm, :AllDeadToAlive
173
+ attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Protocol, :HealthCheck, :ScheduleAlgorithm, :AllDeadToAlive, :Tags
172
174
 
173
- def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, protocol=nil, healthcheck=nil, schedulealgorithm=nil, alldeadtoalive=nil)
175
+ def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, protocol=nil, healthcheck=nil, schedulealgorithm=nil, alldeadtoalive=nil, tags=nil)
174
176
  @TargetGroupName = targetgroupname
175
177
  @VpcId = vpcid
176
178
  @Port = port
@@ -179,6 +181,7 @@ module TencentCloud
179
181
  @HealthCheck = healthcheck
180
182
  @ScheduleAlgorithm = schedulealgorithm
181
183
  @AllDeadToAlive = alldeadtoalive
184
+ @Tags = tags
182
185
  end
183
186
 
184
187
  def deserialize(params)
@@ -200,6 +203,14 @@ module TencentCloud
200
203
  end
201
204
  @ScheduleAlgorithm = params['ScheduleAlgorithm']
202
205
  @AllDeadToAlive = params['AllDeadToAlive']
206
+ unless params['Tags'].nil?
207
+ @Tags = []
208
+ params['Tags'].each do |i|
209
+ taginfo_tmp = TagInfo.new
210
+ taginfo_tmp.deserialize(i)
211
+ @Tags << taginfo_tmp
212
+ end
213
+ end
203
214
  end
204
215
  end
205
216
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gwlb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1036
4
+ version: 3.0.1037
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-04-07 00:00:00.000000000 Z
11
+ date: 2025-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common