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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20240906/models.rb +13 -2
- 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: 767f8b8201c5dd23b01853128319203de90729fb
|
4
|
+
data.tar.gz: 32794594d521b457623552b70a0d1f1f959aefa3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cebd2a72a45bd948eda355cfe5acbdf3a01777e0cbbb738faa62c030135bb17b6a833dee1df28f7869af6be221a648d96842ae2bbbe3da555f28bd77ee02996
|
7
|
+
data.tar.gz: f36b440deee3f42ac14bfa029804722d73410c1b5ed4ce2d11e4eb233b4a5e075a3b8288abc441e2af6018f5c9399edc50fc5b74e9bb63ce07b26f0b10de9a8a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1037
|
data/lib/v20240906/models.rb
CHANGED
@@ -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.
|
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-
|
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
|