tencentcloud-sdk-faceid 3.0.731 → 3.0.733

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/v20180301/models.rb +60 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 20bb4532fb6a19ace2aee2e3677c84cbad0bd601
4
- data.tar.gz: e3c4eaebc47774c137d471988ed7c9b50329a2f8
3
+ metadata.gz: c40b46a4a9548d0266345d5df25092e393e8ce1a
4
+ data.tar.gz: ee6d21437352049a2051fb8009747a9b7e42add9
5
5
  SHA512:
6
- metadata.gz: d55c8596197ad8c31d9b6182f349d76dc43271eb32603bfc5e5c37a85b158adf4ca845aa9f2d4a83459404b1e0b7cc16467daeb13bedb3a638c63aee0778e4bd
7
- data.tar.gz: 8c69c8d0ecb3d349264319a4a09fb2f2ee358efe3337543faa2df716bb0d99b8625359c2bc2a26c05d937ddafd306ee99c18ef0346cd55d0bc853dea07a5a500
6
+ metadata.gz: 97cecbfb284ed7a8ff4cf668821c5c94acb5990cd4f193883257626848e2b2c5c4f4f6d62085fa4c199c86328cbde6c6a871a8598c7c14fb2bdda082b220b846
7
+ data.tar.gz: d292f56fb2cc63280989d89895ab5deafbdd149b67552b8f816842654418698b6860f629c60f0b79e751cf35552829b605f1e779ca646e3fd6d0bfaa3c0d5f81
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.731
1
+ 3.0.733
@@ -733,14 +733,17 @@ module TencentCloud
733
733
  # 说明:未检测到攻击痕迹时,返回空数组
734
734
  # 此出参仅作为结果判断的参考,实际应用仍建议使用AttackRiskLevel的结果。
735
735
  # @type AttackRiskDetailList: Array
736
+ # @param ExtraInfo: 额外信息
737
+ # @type ExtraInfo: :class:`Tencentcloud::Faceid.v20180301.models.ExtraInfo`
736
738
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
737
739
  # @type RequestId: String
738
740
 
739
- attr_accessor :AttackRiskLevel, :AttackRiskDetailList, :RequestId
741
+ attr_accessor :AttackRiskLevel, :AttackRiskDetailList, :ExtraInfo, :RequestId
740
742
 
741
- def initialize(attackrisklevel=nil, attackriskdetaillist=nil, requestid=nil)
743
+ def initialize(attackrisklevel=nil, attackriskdetaillist=nil, extrainfo=nil, requestid=nil)
742
744
  @AttackRiskLevel = attackrisklevel
743
745
  @AttackRiskDetailList = attackriskdetaillist
746
+ @ExtraInfo = extrainfo
744
747
  @RequestId = requestid
745
748
  end
746
749
 
@@ -754,6 +757,10 @@ module TencentCloud
754
757
  @AttackRiskDetailList << attackriskdetail_tmp
755
758
  end
756
759
  end
760
+ unless params['ExtraInfo'].nil?
761
+ @ExtraInfo = ExtraInfo.new
762
+ @ExtraInfo.deserialize(params['ExtraInfo'])
763
+ end
757
764
  @RequestId = params['RequestId']
758
765
  end
759
766
  end
@@ -1370,6 +1377,30 @@ module TencentCloud
1370
1377
  end
1371
1378
  end
1372
1379
 
1380
+ # 额外的详细信息
1381
+ class ExtraInfo < TencentCloud::Common::AbstractModel
1382
+ # @param RetrievalLivenessExtraInfo: 命中模板的详细信息,仅返回命中的相似度最高的模板信息
1383
+ # 注意:此字段可能返回 null,表示取不到有效值。
1384
+ # @type RetrievalLivenessExtraInfo: Array
1385
+
1386
+ attr_accessor :RetrievalLivenessExtraInfo
1387
+
1388
+ def initialize(retrievallivenessextrainfo=nil)
1389
+ @RetrievalLivenessExtraInfo = retrievallivenessextrainfo
1390
+ end
1391
+
1392
+ def deserialize(params)
1393
+ unless params['RetrievalLivenessExtraInfo'].nil?
1394
+ @RetrievalLivenessExtraInfo = []
1395
+ params['RetrievalLivenessExtraInfo'].each do |i|
1396
+ retrievallivenessextrainfo_tmp = RetrievalLivenessExtraInfo.new
1397
+ retrievallivenessextrainfo_tmp.deserialize(i)
1398
+ @RetrievalLivenessExtraInfo << retrievallivenessextrainfo_tmp
1399
+ end
1400
+ end
1401
+ end
1402
+ end
1403
+
1373
1404
  # GetActionSequence请求参数结构体
1374
1405
  class GetActionSequenceRequest < TencentCloud::Common::AbstractModel
1375
1406
  # @param ActionType: 默认不需要使用
@@ -3532,6 +3563,33 @@ module TencentCloud
3532
3563
  end
3533
3564
  end
3534
3565
 
3566
+ # 模版检索详细信息
3567
+ class RetrievalLivenessExtraInfo < TencentCloud::Common::AbstractModel
3568
+ # @param HitGroup: 命中的模版类型,其中Common-公共库;Auto-自动聚类库;Owner-自建模版库
3569
+ # 注意:此字段可能返回 null,表示取不到有效值。
3570
+ # @type HitGroup: String
3571
+ # @param SimilarityScore: 命中的相似度
3572
+ # 注意:此字段可能返回 null,表示取不到有效值。
3573
+ # @type SimilarityScore: Float
3574
+ # @param HitTemplate: 命中的模板id
3575
+ # 注意:此字段可能返回 null,表示取不到有效值。
3576
+ # @type HitTemplate: String
3577
+
3578
+ attr_accessor :HitGroup, :SimilarityScore, :HitTemplate
3579
+
3580
+ def initialize(hitgroup=nil, similarityscore=nil, hittemplate=nil)
3581
+ @HitGroup = hitgroup
3582
+ @SimilarityScore = similarityscore
3583
+ @HitTemplate = hittemplate
3584
+ end
3585
+
3586
+ def deserialize(params)
3587
+ @HitGroup = params['HitGroup']
3588
+ @SimilarityScore = params['SimilarityScore']
3589
+ @HitTemplate = params['HitTemplate']
3590
+ end
3591
+ end
3592
+
3535
3593
  # RuleId相关配置
3536
3594
  class RuleIdConfig < TencentCloud::Common::AbstractModel
3537
3595
  # @param IntentionRecognition: 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-faceid
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.731
4
+ version: 3.0.733
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-12-20 00:00:00.000000000 Z
11
+ date: 2023-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common