tencentcloud-sdk-advisor 3.0.658 → 3.0.659

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/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: 0ef053547d4034eb773949963fa06b653a504ca2
4
+ data.tar.gz: 2636938102d2e38dda264e2f0a9fd141b66b56bd
5
5
  SHA512:
6
- metadata.gz: fa422c926bdb6e0486d00ffeecbd4de0839a7371a84b19274f4b0a1e1f48922b612055ad6f3fd788ff92d9ef762d8844c840eb6851b7b2f705deee40f492d9bb
7
- data.tar.gz: ebf1671557f57f9d9adde8b1e69a5b9c6c04539a58a970836fd3d30e396867287c671ddf362d611f85fd46c040521895898e813c4f14337028a2e5eb0f433823
6
+ metadata.gz: f8084c66019680df3ffe921106074d360460a0e45dd07cb363c85e1a61b2a20873a34698851e3ef9ff47f8dd1ea0cd503758741328d3a7c875e0dd31d7f1310b
7
+ data.tar.gz: ec6dbbce908d8f517ad49a729dd01e0a223d60b59db54877469589b8b683515d4809af9c7c2e3270de58d3bba69dcc6634ccee18497f89a1b916c92a7169289c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.658
1
+ 3.0.659
@@ -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.659
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-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common