tencentcloud-sdk-clb 3.0.1141 → 3.0.1143

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 +13 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99a7d54ca3054171e97818b913d330a4915a3102
4
- data.tar.gz: 545a74d484f7fee9da8c77409980095256060773
3
+ metadata.gz: 53aca27d7d5e177c80e445ee23dd1edb10ab782b
4
+ data.tar.gz: 877f9f8a7e5f49fa9f1b088178f3a46617b3b46a
5
5
  SHA512:
6
- metadata.gz: ee45cc03ca3b6d3610f361cf5285e196adaf51688b2cd7f4a9779dbd9bdedb68a28b780b1be632e2103dbb0931d224d4b73f8b2f76eb9a9648c7a34889aad562
7
- data.tar.gz: 59e5f2363a7ef47bb9073bab9d7a7245295852b8685d21b334907fd5a172169a68438be029b5ce66632c1a98c7a0688381937736bc75a803f0a959022648dbc4
6
+ metadata.gz: abdf876a6be65243b6423882c4757ce06946cb13400f78b4054fa402794b222d911d00f20abab5ff404a82ed3e3fa3e0a4e1eec6414c3d3476b73fd2da586e74
7
+ data.tar.gz: 10550811bba3897687b114cf5abe8ae5891d5c60808e3331c4f280bcf7c09bc95359eab632340926d4783d0e7a1f81b9dfdaa84afe57cb885c366fb88caeda51
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1141
1
+ 3.0.1143
@@ -25,19 +25,30 @@ module TencentCloud
25
25
  # @type ConfigType: String
26
26
  # @param ConfigContent: 配置内容
27
27
  # @type ConfigContent: String
28
+ # @param Tags: 标签
29
+ # @type Tags: Array
28
30
 
29
- attr_accessor :ConfigName, :ConfigType, :ConfigContent
31
+ attr_accessor :ConfigName, :ConfigType, :ConfigContent, :Tags
30
32
 
31
- def initialize(configname=nil, configtype=nil, configcontent=nil)
33
+ def initialize(configname=nil, configtype=nil, configcontent=nil, tags=nil)
32
34
  @ConfigName = configname
33
35
  @ConfigType = configtype
34
36
  @ConfigContent = configcontent
37
+ @Tags = tags
35
38
  end
36
39
 
37
40
  def deserialize(params)
38
41
  @ConfigName = params['ConfigName']
39
42
  @ConfigType = params['ConfigType']
40
43
  @ConfigContent = params['ConfigContent']
44
+ unless params['Tags'].nil?
45
+ @Tags = []
46
+ params['Tags'].each do |i|
47
+ taginfo_tmp = TagInfo.new
48
+ taginfo_tmp.deserialize(i)
49
+ @Tags << taginfo_tmp
50
+ end
51
+ end
41
52
  end
42
53
  end
43
54
 
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.1141
4
+ version: 3.0.1143
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-09-16 00:00:00.000000000 Z
11
+ date: 2025-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common