tencentcloud-sdk-mps 3.0.861 → 3.0.862
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190612/models.rb +14 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a533e3adb098f01ab8c30a7fc1d15480fec84543
|
4
|
+
data.tar.gz: a5e4574faa8962690dd82a2bf839e16698102809
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0e0cc671a149b6c6f808e0f5b1bec09b95d650f80303df2c64ddd1fc72fd8d87ab352690f17f6bf67edf026660bf6a3c2bb43fbb64fbceb9e3aefdb59271551
|
7
|
+
data.tar.gz: 6533f10620a0e1505a1ee0735783c57f25ed4a7ce8afec67f35382dae570699c537037bf5bb2d9da1f831ccc24a45e31690396c8f7776d68ac5e1f1f0888a7bb
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.862
|
data/lib/v20190612/models.rb
CHANGED
@@ -13499,15 +13499,19 @@ module TencentCloud
|
|
13499
13499
|
# @type Confidence: Float
|
13500
13500
|
# @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
|
13501
13501
|
# @type AreaCoordSet: Array
|
13502
|
+
# @param Url: 截图链接。
|
13503
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
13504
|
+
# @type Url: String
|
13502
13505
|
|
13503
|
-
attr_accessor :Name, :StartPtsOffset, :EndPtsOffset, :Confidence, :AreaCoordSet
|
13506
|
+
attr_accessor :Name, :StartPtsOffset, :EndPtsOffset, :Confidence, :AreaCoordSet, :Url
|
13504
13507
|
|
13505
|
-
def initialize(name=nil, startptsoffset=nil, endptsoffset=nil, confidence=nil, areacoordset=nil)
|
13508
|
+
def initialize(name=nil, startptsoffset=nil, endptsoffset=nil, confidence=nil, areacoordset=nil, url=nil)
|
13506
13509
|
@Name = name
|
13507
13510
|
@StartPtsOffset = startptsoffset
|
13508
13511
|
@EndPtsOffset = endptsoffset
|
13509
13512
|
@Confidence = confidence
|
13510
13513
|
@AreaCoordSet = areacoordset
|
13514
|
+
@Url = url
|
13511
13515
|
end
|
13512
13516
|
|
13513
13517
|
def deserialize(params)
|
@@ -13516,6 +13520,7 @@ module TencentCloud
|
|
13516
13520
|
@EndPtsOffset = params['EndPtsOffset']
|
13517
13521
|
@Confidence = params['Confidence']
|
13518
13522
|
@AreaCoordSet = params['AreaCoordSet']
|
13523
|
+
@Url = params['Url']
|
13519
13524
|
end
|
13520
13525
|
end
|
13521
13526
|
|
@@ -13714,16 +13719,20 @@ module TencentCloud
|
|
13714
13719
|
# @type TopicName: String
|
13715
13720
|
# @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
|
13716
13721
|
# @type NotifyUrl: String
|
13722
|
+
# @param NotifyKey: 用于生成回调签名的 Key。
|
13723
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
13724
|
+
# @type NotifyKey: String
|
13717
13725
|
|
13718
|
-
attr_accessor :NotifyType, :CmqModel, :CmqRegion, :QueueName, :TopicName, :NotifyUrl
|
13726
|
+
attr_accessor :NotifyType, :CmqModel, :CmqRegion, :QueueName, :TopicName, :NotifyUrl, :NotifyKey
|
13719
13727
|
|
13720
|
-
def initialize(notifytype=nil, cmqmodel=nil, cmqregion=nil, queuename=nil, topicname=nil, notifyurl=nil)
|
13728
|
+
def initialize(notifytype=nil, cmqmodel=nil, cmqregion=nil, queuename=nil, topicname=nil, notifyurl=nil, notifykey=nil)
|
13721
13729
|
@NotifyType = notifytype
|
13722
13730
|
@CmqModel = cmqmodel
|
13723
13731
|
@CmqRegion = cmqregion
|
13724
13732
|
@QueueName = queuename
|
13725
13733
|
@TopicName = topicname
|
13726
13734
|
@NotifyUrl = notifyurl
|
13735
|
+
@NotifyKey = notifykey
|
13727
13736
|
end
|
13728
13737
|
|
13729
13738
|
def deserialize(params)
|
@@ -13733,6 +13742,7 @@ module TencentCloud
|
|
13733
13742
|
@QueueName = params['QueueName']
|
13734
13743
|
@TopicName = params['TopicName']
|
13735
13744
|
@NotifyUrl = params['NotifyUrl']
|
13745
|
+
@NotifyKey = params['NotifyKey']
|
13736
13746
|
end
|
13737
13747
|
end
|
13738
13748
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.862
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|