tencentcloud-sdk-cls 1.0.350 → 1.0.353

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/v20201016/models.rb +34 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d8b052728858d556046a10e1021bf08492c42df
4
- data.tar.gz: 27dfeac1eaa2fbee3f5ddaf656ea28e7066d2ab6
3
+ metadata.gz: c3a70272150f2bc91ea6b7474ea8e041dd09ef38
4
+ data.tar.gz: 2260df96621ea4b02e3e70dd6e1b89c452e2a171
5
5
  SHA512:
6
- metadata.gz: 516b60b28f98a537c9b1917eb45782ead5ec8dd9c5efe7a0d1db3f2d0b98fd63466b200c29192a6e7707d8957ddba65bd2a888ca25159376401258c138e53024
7
- data.tar.gz: 73a9b9d915c0e472e013321cac42162d29bd117193f5941149e464cb952efb083df6007dcda2c625f9f5da15666746155368e7ef68d003cd2a1d50bcbb0a2163
6
+ metadata.gz: 85db706c86fbde9195e8320a57a9b4fb12e0b2e95cdc0218fbe4a3715362c7efaf53aecb9f00cdd9dbe2402ab4d6597de8c2e47ed53220bddd42742d1c608f85
7
+ data.tar.gz: f4e6878e33f6ae82a2751c32896042aac12db73f56b87392abae3aba847ff34bec45c511c74f50d7639fa0f8a88a2e1d96cdfef718fd54bfc9e87fb13fc71ca1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.350
1
+ 1.0.353
@@ -17,6 +17,26 @@
17
17
  module TencentCloud
18
18
  module Cls
19
19
  module V20201016
20
+ # 告警多维分析一些配置信息
21
+ class AlarmAnalysisConfig < TencentCloud::Common::AbstractModel
22
+ # @param Key: 键
23
+ # @type Key: String
24
+ # @param Value: 值
25
+ # @type Value: String
26
+
27
+ attr_accessor :Key, :Value
28
+
29
+ def initialize(key=nil, value=nil)
30
+ @Key = key
31
+ @Value = value
32
+ end
33
+
34
+ def deserialize(params)
35
+ @Key = params['Key']
36
+ @Value = params['Value']
37
+ end
38
+ end
39
+
20
40
  # 告警策略描述
21
41
  class AlarmInfo < TencentCloud::Common::AbstractModel
22
42
  # @param Name: 告警策略名称。
@@ -254,23 +274,34 @@ module TencentCloud
254
274
  class AnalysisDimensional < TencentCloud::Common::AbstractModel
255
275
  # @param Name: 分析名称
256
276
  # @type Name: String
257
- # @param Type: 分析类型:query,field
277
+ # @param Type: 分析类型:query,field ,original
258
278
  # @type Type: String
259
279
  # @param Content: 分析内容
260
280
  # @type Content: String
281
+ # @param ConfigInfo: 配置
282
+ # @type ConfigInfo: Array
261
283
 
262
- attr_accessor :Name, :Type, :Content
284
+ attr_accessor :Name, :Type, :Content, :ConfigInfo
263
285
 
264
- def initialize(name=nil, type=nil, content=nil)
286
+ def initialize(name=nil, type=nil, content=nil, configinfo=nil)
265
287
  @Name = name
266
288
  @Type = type
267
289
  @Content = content
290
+ @ConfigInfo = configinfo
268
291
  end
269
292
 
270
293
  def deserialize(params)
271
294
  @Name = params['Name']
272
295
  @Type = params['Type']
273
296
  @Content = params['Content']
297
+ unless params['ConfigInfo'].nil?
298
+ @ConfigInfo = []
299
+ params['ConfigInfo'].each do |i|
300
+ alarmanalysisconfig_tmp = AlarmAnalysisConfig.new
301
+ alarmanalysisconfig_tmp.deserialize(i)
302
+ @ConfigInfo << alarmanalysisconfig_tmp
303
+ end
304
+ end
274
305
  end
275
306
  end
276
307
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.350
4
+ version: 1.0.353
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-06 00:00:00.000000000 Z
11
+ date: 2022-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common