tencentcloud-sdk-advisor 3.0.658 → 3.0.660

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200721/models.rb +68 -68
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29fea968deecedf27731922f5be3c9247df3866a
4
- data.tar.gz: 7b3323daac1ab2c32a2adb1d4b322df42f3a7584
3
+ metadata.gz: 3ce980fd910312938aaefa614c31c7429074f108
4
+ data.tar.gz: 15ce97b925e1ab9855d86df104c1d6994890e7fe
5
5
  SHA512:
6
- metadata.gz: fa422c926bdb6e0486d00ffeecbd4de0839a7371a84b19274f4b0a1e1f48922b612055ad6f3fd788ff92d9ef762d8844c840eb6851b7b2f705deee40f492d9bb
7
- data.tar.gz: ebf1671557f57f9d9adde8b1e69a5b9c6c04539a58a970836fd3d30e396867287c671ddf362d611f85fd46c040521895898e813c4f14337028a2e5eb0f433823
6
+ metadata.gz: 9e26f2b4146646260332e1f44976b65ddbb0a4369717390a4bb73613ffaae18a55c5f2a25418cdbf2943907f3733ec43061776d86e25df8580daecdadb95e7be
7
+ data.tar.gz: 96b89a665df9993b890682c9b3f64aadd6bfbdb913c3139d8a358f32f8819c094ec917bbbf3e396cfa8297dda4f0d6ef3d16896d9f2da6dfbd3e7b80ea162f38
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.658
1
+ 3.0.660
@@ -17,72 +17,8 @@
17
17
  module TencentCloud
18
18
  module Advisor
19
19
  module V20200721
20
- # 评估项信息
21
- class DescribeStrategie < TencentCloud::Common::AbstractModel
22
- # @param StrategyId: 评估项ID
23
- # 注意:此字段可能返回 null,表示取不到有效值。
24
- # @type StrategyId: Integer
25
- # @param Name: 评估项名称
26
- # 注意:此字段可能返回 null,表示取不到有效值。
27
- # @type Name: String
28
- # @param Desc: 评估项描述
29
- # 注意:此字段可能返回 null,表示取不到有效值。
30
- # @type Desc: String
31
- # @param Product: 评估项对应产品ID
32
- # 注意:此字段可能返回 null,表示取不到有效值。
33
- # @type Product: String
34
- # @param ProductDesc: 评估项对应产品名称
35
- # 注意:此字段可能返回 null,表示取不到有效值。
36
- # @type ProductDesc: String
37
- # @param Repair: 评估项优化建议
38
- # 注意:此字段可能返回 null,表示取不到有效值。
39
- # @type Repair: String
40
- # @param GroupId: 评估项类别ID
41
- # 注意:此字段可能返回 null,表示取不到有效值。
42
- # @type GroupId: Integer
43
- # @param GroupName: 评估项类别名称
44
- # 注意:此字段可能返回 null,表示取不到有效值。
45
- # @type GroupName: String
46
- # @param Conditions: 评估项风险列表
47
- # 注意:此字段可能返回 null,表示取不到有效值。
48
- # @type Conditions: Array
49
-
50
- attr_accessor :StrategyId, :Name, :Desc, :Product, :ProductDesc, :Repair, :GroupId, :GroupName, :Conditions
51
-
52
- def initialize(strategyid=nil, name=nil, desc=nil, product=nil, productdesc=nil, repair=nil, groupid=nil, groupname=nil, conditions=nil)
53
- @StrategyId = strategyid
54
- @Name = name
55
- @Desc = desc
56
- @Product = product
57
- @ProductDesc = productdesc
58
- @Repair = repair
59
- @GroupId = groupid
60
- @GroupName = groupname
61
- @Conditions = conditions
62
- end
63
-
64
- def deserialize(params)
65
- @StrategyId = params['StrategyId']
66
- @Name = params['Name']
67
- @Desc = params['Desc']
68
- @Product = params['Product']
69
- @ProductDesc = params['ProductDesc']
70
- @Repair = params['Repair']
71
- @GroupId = params['GroupId']
72
- @GroupName = params['GroupName']
73
- unless params['Conditions'].nil?
74
- @Conditions = []
75
- params['Conditions'].each do |i|
76
- describestrategiescondition_tmp = DescribeStrategiesCondition.new
77
- describestrategiescondition_tmp.deserialize(i)
78
- @Conditions << describestrategiescondition_tmp
79
- end
80
- end
81
- end
82
- end
83
-
84
20
  # 评估项警告条件
85
- class DescribeStrategiesCondition < TencentCloud::Common::AbstractModel
21
+ class Conditions < TencentCloud::Common::AbstractModel
86
22
  # @param ConditionId: 警告条件ID
87
23
  # 注意:此字段可能返回 null,表示取不到有效值。
88
24
  # @type ConditionId: Integer
@@ -142,9 +78,9 @@ module TencentCloud
142
78
  unless params['Strategies'].nil?
143
79
  @Strategies = []
144
80
  params['Strategies'].each do |i|
145
- describestrategie_tmp = DescribeStrategie.new
146
- describestrategie_tmp.deserialize(i)
147
- @Strategies << describestrategie_tmp
81
+ strategies_tmp = Strategies.new
82
+ strategies_tmp.deserialize(i)
83
+ @Strategies << strategies_tmp
148
84
  end
149
85
  end
150
86
  @RequestId = params['RequestId']
@@ -292,6 +228,70 @@ module TencentCloud
292
228
  end
293
229
  end
294
230
 
231
+ # 评估项信息
232
+ class Strategies < TencentCloud::Common::AbstractModel
233
+ # @param StrategyId: 评估项ID
234
+ # 注意:此字段可能返回 null,表示取不到有效值。
235
+ # @type StrategyId: Integer
236
+ # @param Name: 评估项名称
237
+ # 注意:此字段可能返回 null,表示取不到有效值。
238
+ # @type Name: String
239
+ # @param Desc: 评估项描述
240
+ # 注意:此字段可能返回 null,表示取不到有效值。
241
+ # @type Desc: String
242
+ # @param Product: 评估项对应产品ID
243
+ # 注意:此字段可能返回 null,表示取不到有效值。
244
+ # @type Product: String
245
+ # @param ProductDesc: 评估项对应产品名称
246
+ # 注意:此字段可能返回 null,表示取不到有效值。
247
+ # @type ProductDesc: String
248
+ # @param Repair: 评估项优化建议
249
+ # 注意:此字段可能返回 null,表示取不到有效值。
250
+ # @type Repair: String
251
+ # @param GroupId: 评估项类别ID
252
+ # 注意:此字段可能返回 null,表示取不到有效值。
253
+ # @type GroupId: Integer
254
+ # @param GroupName: 评估项类别名称
255
+ # 注意:此字段可能返回 null,表示取不到有效值。
256
+ # @type GroupName: String
257
+ # @param Conditions: 评估项风险列表
258
+ # 注意:此字段可能返回 null,表示取不到有效值。
259
+ # @type Conditions: Array
260
+
261
+ attr_accessor :StrategyId, :Name, :Desc, :Product, :ProductDesc, :Repair, :GroupId, :GroupName, :Conditions
262
+
263
+ def initialize(strategyid=nil, name=nil, desc=nil, product=nil, productdesc=nil, repair=nil, groupid=nil, groupname=nil, conditions=nil)
264
+ @StrategyId = strategyid
265
+ @Name = name
266
+ @Desc = desc
267
+ @Product = product
268
+ @ProductDesc = productdesc
269
+ @Repair = repair
270
+ @GroupId = groupid
271
+ @GroupName = groupname
272
+ @Conditions = conditions
273
+ end
274
+
275
+ def deserialize(params)
276
+ @StrategyId = params['StrategyId']
277
+ @Name = params['Name']
278
+ @Desc = params['Desc']
279
+ @Product = params['Product']
280
+ @ProductDesc = params['ProductDesc']
281
+ @Repair = params['Repair']
282
+ @GroupId = params['GroupId']
283
+ @GroupName = params['GroupName']
284
+ unless params['Conditions'].nil?
285
+ @Conditions = []
286
+ params['Conditions'].each do |i|
287
+ conditions_tmp = Conditions.new
288
+ conditions_tmp.deserialize(i)
289
+ @Conditions << conditions_tmp
290
+ end
291
+ end
292
+ end
293
+ end
294
+
295
295
  end
296
296
  end
297
297
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-advisor
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.658
4
+ version: 3.0.660
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-09-13 00:00:00.000000000 Z
11
+ date: 2023-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common