tencentcloud-sdk-vm 1.0.226 → 1.0.227

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/v20201229/models.rb +40 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5c72701dc812a49ebfedfbd899c15e24f384875e
4
- data.tar.gz: 3766651ffbb67992ddc5325eacc10e427228754f
3
+ metadata.gz: 89542f771a066d4436362f8a5b4ae516a40c19b1
4
+ data.tar.gz: 94c58dcff063eefd0acdce7ca13711755c7853ec
5
5
  SHA512:
6
- metadata.gz: 0d265bba1b86517775c3ff51bd85d34839952eab96d4794b24280aeaac154514588b1ced82c8c8fd7c19077519b5e7b3ba18c8a1c57964c5544493ccae64b19c
7
- data.tar.gz: e2a2675a95ab606d2a2c66e0cb637b735e2c492f07568d462f3910c6d67dd4df4dd89e3bfb9d6151eb9dc44aec0b0f83701d379f6e87ece86110c6a6b6cabb17
6
+ metadata.gz: 15b70a3883a69db947187aaf7272a66dc7d43435db8e9a91206261f573a66f09c383d03119d2f816ac1735fc56b87b57a4921aa56eb7d89c0ee156f03cab7697
7
+ data.tar.gz: f4df4dd4c05b6bb16e934105b64c38e8d2d56c84085117cd5bd929b4ccbe4eb9c407180e08362105b9e64a89cca8c72340b5999964c2425469dee52c6917795f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.226
1
+ 1.0.227
@@ -53,10 +53,14 @@ module TencentCloud
53
53
  # @param LanguageResults: 该字段用于返回音频小语种检测的详细审核结果。具体结果内容请参见AudioResultDetailLanguageResult数据结构的细节描述。
54
54
  # 注意:此字段可能返回 null,表示取不到有效值。
55
55
  # @type LanguageResults: Array
56
+ # @param SubLabel: 该字段用于返回当前标签(Lable)下的二级标签。
57
+ # 注意:此字段可能返回null,表示取不到有效值。
58
+ # 注意:此字段可能返回 null,表示取不到有效值。
59
+ # @type SubLabel: String
56
60
 
57
- attr_accessor :HitFlag, :Label, :Suggestion, :Score, :Text, :Url, :Duration, :Extra, :TextResults, :MoanResults, :LanguageResults
61
+ attr_accessor :HitFlag, :Label, :Suggestion, :Score, :Text, :Url, :Duration, :Extra, :TextResults, :MoanResults, :LanguageResults, :SubLabel
58
62
 
59
- def initialize(hitflag=nil, label=nil, suggestion=nil, score=nil, text=nil, url=nil, duration=nil, extra=nil, textresults=nil, moanresults=nil, languageresults=nil)
63
+ def initialize(hitflag=nil, label=nil, suggestion=nil, score=nil, text=nil, url=nil, duration=nil, extra=nil, textresults=nil, moanresults=nil, languageresults=nil, sublabel=nil)
60
64
  @HitFlag = hitflag
61
65
  @Label = label
62
66
  @Suggestion = suggestion
@@ -68,6 +72,7 @@ module TencentCloud
68
72
  @TextResults = textresults
69
73
  @MoanResults = moanresults
70
74
  @LanguageResults = languageresults
75
+ @SubLabel = sublabel
71
76
  end
72
77
 
73
78
  def deserialize(params)
@@ -103,6 +108,7 @@ module TencentCloud
103
108
  @LanguageResults << audioresultdetaillanguageresult_tmp
104
109
  end
105
110
  end
111
+ @SubLabel = params['SubLabel']
106
112
  end
107
113
  end
108
114
 
@@ -156,15 +162,20 @@ module TencentCloud
156
162
  # @type EndTime: Float
157
163
  # @param SubLabelCode: *内测中,敬请期待*
158
164
  # @type SubLabelCode: String
165
+ # @param SubLabel: 该字段用于返回当前标签(Lable)下的二级标签。
166
+ # 注意:此字段可能返回null,表示取不到有效值。
167
+ # 注意:此字段可能返回 null,表示取不到有效值。
168
+ # @type SubLabel: String
159
169
 
160
- attr_accessor :Label, :Score, :StartTime, :EndTime, :SubLabelCode
170
+ attr_accessor :Label, :Score, :StartTime, :EndTime, :SubLabelCode, :SubLabel
161
171
 
162
- def initialize(label=nil, score=nil, starttime=nil, endtime=nil, sublabelcode=nil)
172
+ def initialize(label=nil, score=nil, starttime=nil, endtime=nil, sublabelcode=nil, sublabel=nil)
163
173
  @Label = label
164
174
  @Score = score
165
175
  @StartTime = starttime
166
176
  @EndTime = endtime
167
177
  @SubLabelCode = sublabelcode
178
+ @SubLabel = sublabel
168
179
  end
169
180
 
170
181
  def deserialize(params)
@@ -173,6 +184,7 @@ module TencentCloud
173
184
  @StartTime = params['StartTime']
174
185
  @EndTime = params['EndTime']
175
186
  @SubLabelCode = params['SubLabelCode']
187
+ @SubLabel = params['SubLabel']
176
188
  end
177
189
  end
178
190
 
@@ -200,10 +212,14 @@ module TencentCloud
200
212
  # @param LibType: 该字段用于返回自定义关键词对应的词库类型,取值为**1**(黑白库)和**2**(自定义关键词库),若未配置自定义关键词库,则默认值为1(黑白库匹配)。
201
213
  # 注意:此字段可能返回 null,表示取不到有效值。
202
214
  # @type LibType: Integer
215
+ # @param SubLabel: 该字段用于返回当前标签(Lable)下的二级标签。
216
+ # 注意:此字段可能返回null,表示取不到有效值。
217
+ # 注意:此字段可能返回 null,表示取不到有效值。
218
+ # @type SubLabel: String
203
219
 
204
- attr_accessor :Label, :Keywords, :LibId, :LibName, :Score, :Suggestion, :LibType
220
+ attr_accessor :Label, :Keywords, :LibId, :LibName, :Score, :Suggestion, :LibType, :SubLabel
205
221
 
206
- def initialize(label=nil, keywords=nil, libid=nil, libname=nil, score=nil, suggestion=nil, libtype=nil)
222
+ def initialize(label=nil, keywords=nil, libid=nil, libname=nil, score=nil, suggestion=nil, libtype=nil, sublabel=nil)
207
223
  @Label = label
208
224
  @Keywords = keywords
209
225
  @LibId = libid
@@ -211,6 +227,7 @@ module TencentCloud
211
227
  @Score = score
212
228
  @Suggestion = suggestion
213
229
  @LibType = libtype
230
+ @SubLabel = sublabel
214
231
  end
215
232
 
216
233
  def deserialize(params)
@@ -221,6 +238,7 @@ module TencentCloud
221
238
  @Score = params['Score']
222
239
  @Suggestion = params['Suggestion']
223
240
  @LibType = params['LibType']
241
+ @SubLabel = params['SubLabel']
224
242
  end
225
243
  end
226
244
 
@@ -621,10 +639,14 @@ module TencentCloud
621
639
  # @param Extra: 该字段用于返回输入参数中的额外附加信息(Extra),如未配置则默认返回值为空。<br>备注:不同客户或Biztype下返回信息不同,如需配置该字段请提交工单咨询或联系售后专员处理。
622
640
  # 注意:此字段可能返回 null,表示取不到有效值。
623
641
  # @type Extra: String
642
+ # @param SubLabel: 该字段用于返回当前标签(Lable)下的二级标签。
643
+ # 注意:此字段可能返回null,表示取不到有效值。
644
+ # 注意:此字段可能返回 null,表示取不到有效值。
645
+ # @type SubLabel: String
624
646
 
625
- attr_accessor :HitFlag, :Label, :Suggestion, :Score, :Results, :Url, :Extra
647
+ attr_accessor :HitFlag, :Label, :Suggestion, :Score, :Results, :Url, :Extra, :SubLabel
626
648
 
627
- def initialize(hitflag=nil, label=nil, suggestion=nil, score=nil, results=nil, url=nil, extra=nil)
649
+ def initialize(hitflag=nil, label=nil, suggestion=nil, score=nil, results=nil, url=nil, extra=nil, sublabel=nil)
628
650
  @HitFlag = hitflag
629
651
  @Label = label
630
652
  @Suggestion = suggestion
@@ -632,6 +654,7 @@ module TencentCloud
632
654
  @Results = results
633
655
  @Url = url
634
656
  @Extra = extra
657
+ @SubLabel = sublabel
635
658
  end
636
659
 
637
660
  def deserialize(params)
@@ -649,6 +672,7 @@ module TencentCloud
649
672
  end
650
673
  @Url = params['Url']
651
674
  @Extra = params['Extra']
675
+ @SubLabel = params['SubLabel']
652
676
  end
653
677
  end
654
678
 
@@ -1055,19 +1079,25 @@ module TencentCloud
1055
1079
  # @param Score: 该字段用于返回当前标签(Label)下的置信度,取值范围:0(**置信度最低**)-100(**置信度最高** ),越高代表文本越有可能属于当前返回的标签;如:*色情 99*,则表明该文本非常有可能属于色情内容;*色情 0*,则表明该文本不属于色情内容。
1056
1080
  # 注意:此字段可能返回 null,表示取不到有效值。
1057
1081
  # @type Score: Integer
1082
+ # @param SubLabel: 该字段用于返回当前标签(Lable)下的二级标签。
1083
+ # 注意:此字段可能返回null,表示取不到有效值。
1084
+ # 注意:此字段可能返回 null,表示取不到有效值。
1085
+ # @type SubLabel: String
1058
1086
 
1059
- attr_accessor :Label, :Suggestion, :Score
1087
+ attr_accessor :Label, :Suggestion, :Score, :SubLabel
1060
1088
 
1061
- def initialize(label=nil, suggestion=nil, score=nil)
1089
+ def initialize(label=nil, suggestion=nil, score=nil, sublabel=nil)
1062
1090
  @Label = label
1063
1091
  @Suggestion = suggestion
1064
1092
  @Score = score
1093
+ @SubLabel = sublabel
1065
1094
  end
1066
1095
 
1067
1096
  def deserialize(params)
1068
1097
  @Label = params['Label']
1069
1098
  @Suggestion = params['Suggestion']
1070
1099
  @Score = params['Score']
1100
+ @SubLabel = params['SubLabel']
1071
1101
  end
1072
1102
  end
1073
1103
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-vm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.226
4
+ version: 1.0.227
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-17 00:00:00.000000000 Z
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common