tencentcloud-sdk-iotexplorer 3.0.1099 → 3.0.1117
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190423/models.rb +105 -23
- 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: 2f4d60dbd6a2986bc59a1971a8e1326c439a7a8d
|
4
|
+
data.tar.gz: d39e539287a6be7e2a9f22deee74f2d49ace06d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06dc729d968185425a39ccdad0035fa3462b7e952bcee2d6eec6bdf3b3826b2979d544c2e39ab8f444a82a82f7f9611ae3381ad9225f28e501138a7d72339c50
|
7
|
+
data.tar.gz: 0c5e56d98168f545f9f8e8a8c17c30104c873d79342b81d4411a8eefa49a0b4166a7be712eab398f213283160994a750d8267a9e7261939e2e1f0e46d3659067
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1117
|
data/lib/v20190423/models.rb
CHANGED
@@ -100,8 +100,8 @@ module TencentCloud
|
|
100
100
|
|
101
101
|
attr_accessor :PkgType, :MiniProgramAppId, :DeviceList
|
102
102
|
extend Gem::Deprecate
|
103
|
-
deprecate :MiniProgramAppId, :none, 2025,
|
104
|
-
deprecate :MiniProgramAppId=, :none, 2025,
|
103
|
+
deprecate :MiniProgramAppId, :none, 2025, 8
|
104
|
+
deprecate :MiniProgramAppId=, :none, 2025, 8
|
105
105
|
|
106
106
|
def initialize(pkgtype=nil, miniprogramappid=nil, devicelist=nil)
|
107
107
|
@PkgType = pkgtype
|
@@ -136,8 +136,8 @@ module TencentCloud
|
|
136
136
|
|
137
137
|
attr_accessor :DeviceList, :FailureList, :SuccessList, :RequestId
|
138
138
|
extend Gem::Deprecate
|
139
|
-
deprecate :DeviceList, :none, 2025,
|
140
|
-
deprecate :DeviceList=, :none, 2025,
|
139
|
+
deprecate :DeviceList, :none, 2025, 8
|
140
|
+
deprecate :DeviceList=, :none, 2025, 8
|
141
141
|
|
142
142
|
def initialize(devicelist=nil, failurelist=nil, successlist=nil, requestid=nil)
|
143
143
|
@DeviceList = devicelist
|
@@ -2235,10 +2235,12 @@ module TencentCloud
|
|
2235
2235
|
# - `minutely`:分钟级(默认值)
|
2236
2236
|
# - `immediate`:立即
|
2237
2237
|
# @type SummaryQOS: String
|
2238
|
+
# @param SummaryConfig: 摘要输出配置
|
2239
|
+
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
2238
2240
|
|
2239
|
-
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS
|
2241
|
+
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig
|
2240
2242
|
|
2241
|
-
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil)
|
2243
|
+
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil)
|
2242
2244
|
@ProductId = productid
|
2243
2245
|
@DeviceName = devicename
|
2244
2246
|
@InputURL = inputurl
|
@@ -2250,6 +2252,7 @@ module TencentCloud
|
|
2250
2252
|
@IsCustomDevice = iscustomdevice
|
2251
2253
|
@InputType = inputtype
|
2252
2254
|
@SummaryQOS = summaryqos
|
2255
|
+
@SummaryConfig = summaryconfig
|
2253
2256
|
end
|
2254
2257
|
|
2255
2258
|
def deserialize(params)
|
@@ -2264,6 +2267,10 @@ module TencentCloud
|
|
2264
2267
|
@IsCustomDevice = params['IsCustomDevice']
|
2265
2268
|
@InputType = params['InputType']
|
2266
2269
|
@SummaryQOS = params['SummaryQOS']
|
2270
|
+
unless params['SummaryConfig'].nil?
|
2271
|
+
@SummaryConfig = VisionSummaryConfig.new
|
2272
|
+
@SummaryConfig.deserialize(params['SummaryConfig'])
|
2273
|
+
end
|
2267
2274
|
end
|
2268
2275
|
end
|
2269
2276
|
|
@@ -6051,8 +6058,8 @@ module TencentCloud
|
|
6051
6058
|
|
6052
6059
|
attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
|
6053
6060
|
extend Gem::Deprecate
|
6054
|
-
deprecate :ModelId, :none, 2025,
|
6055
|
-
deprecate :ModelId=, :none, 2025,
|
6061
|
+
deprecate :ModelId, :none, 2025, 8
|
6062
|
+
deprecate :ModelId=, :none, 2025, 8
|
6056
6063
|
|
6057
6064
|
def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
|
6058
6065
|
@ModelId = modelid
|
@@ -7650,8 +7657,8 @@ module TencentCloud
|
|
7650
7657
|
|
7651
7658
|
attr_accessor :MiniProgramAppId, :DeviceList
|
7652
7659
|
extend Gem::Deprecate
|
7653
|
-
deprecate :MiniProgramAppId, :none, 2025,
|
7654
|
-
deprecate :MiniProgramAppId=, :none, 2025,
|
7660
|
+
deprecate :MiniProgramAppId, :none, 2025, 8
|
7661
|
+
deprecate :MiniProgramAppId=, :none, 2025, 8
|
7655
7662
|
|
7656
7663
|
def initialize(miniprogramappid=nil, devicelist=nil)
|
7657
7664
|
@MiniProgramAppId = miniprogramappid
|
@@ -8235,10 +8242,12 @@ module TencentCloud
|
|
8235
8242
|
# - `minutely`:分钟级(默认值)
|
8236
8243
|
# - `immediate`:立即
|
8237
8244
|
# @type SummaryQOS: String
|
8245
|
+
# @param SummaryConfig: 摘要输出配置
|
8246
|
+
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
8238
8247
|
|
8239
|
-
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS
|
8248
|
+
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig
|
8240
8249
|
|
8241
|
-
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil)
|
8250
|
+
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil)
|
8242
8251
|
@ProductId = productid
|
8243
8252
|
@DeviceName = devicename
|
8244
8253
|
@InputURL = inputurl
|
@@ -8250,6 +8259,7 @@ module TencentCloud
|
|
8250
8259
|
@IsCustomDevice = iscustomdevice
|
8251
8260
|
@InputType = inputtype
|
8252
8261
|
@SummaryQOS = summaryqos
|
8262
|
+
@SummaryConfig = summaryconfig
|
8253
8263
|
end
|
8254
8264
|
|
8255
8265
|
def deserialize(params)
|
@@ -8264,6 +8274,10 @@ module TencentCloud
|
|
8264
8274
|
@IsCustomDevice = params['IsCustomDevice']
|
8265
8275
|
@InputType = params['InputType']
|
8266
8276
|
@SummaryQOS = params['SummaryQOS']
|
8277
|
+
unless params['SummaryConfig'].nil?
|
8278
|
+
@SummaryConfig = VisionSummaryConfig.new
|
8279
|
+
@SummaryConfig.deserialize(params['SummaryConfig'])
|
8280
|
+
end
|
8267
8281
|
end
|
8268
8282
|
end
|
8269
8283
|
|
@@ -9551,10 +9565,12 @@ module TencentCloud
|
|
9551
9565
|
# @type EnableSearch: Boolean
|
9552
9566
|
# @param Config: 配置参数,不传则不修改
|
9553
9567
|
# @type Config: String
|
9568
|
+
# @param SummaryConfig: 视频摘要配置参数,不传则不修改
|
9569
|
+
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
9554
9570
|
|
9555
|
-
attr_accessor :ProductId, :DeviceName, :UserId, :ChannelId, :EnableSummary, :EnableSearch, :Config
|
9571
|
+
attr_accessor :ProductId, :DeviceName, :UserId, :ChannelId, :EnableSummary, :EnableSearch, :Config, :SummaryConfig
|
9556
9572
|
|
9557
|
-
def initialize(productid=nil, devicename=nil, userid=nil, channelid=nil, enablesummary=nil, enablesearch=nil, config=nil)
|
9573
|
+
def initialize(productid=nil, devicename=nil, userid=nil, channelid=nil, enablesummary=nil, enablesearch=nil, config=nil, summaryconfig=nil)
|
9558
9574
|
@ProductId = productid
|
9559
9575
|
@DeviceName = devicename
|
9560
9576
|
@UserId = userid
|
@@ -9562,6 +9578,7 @@ module TencentCloud
|
|
9562
9578
|
@EnableSummary = enablesummary
|
9563
9579
|
@EnableSearch = enablesearch
|
9564
9580
|
@Config = config
|
9581
|
+
@SummaryConfig = summaryconfig
|
9565
9582
|
end
|
9566
9583
|
|
9567
9584
|
def deserialize(params)
|
@@ -9572,6 +9589,10 @@ module TencentCloud
|
|
9572
9589
|
@EnableSummary = params['EnableSummary']
|
9573
9590
|
@EnableSearch = params['EnableSearch']
|
9574
9591
|
@Config = params['Config']
|
9592
|
+
unless params['SummaryConfig'].nil?
|
9593
|
+
@SummaryConfig = VisionSummaryConfig.new
|
9594
|
+
@SummaryConfig.deserialize(params['SummaryConfig'])
|
9595
|
+
end
|
9575
9596
|
end
|
9576
9597
|
end
|
9577
9598
|
|
@@ -11001,8 +11022,8 @@ module TencentCloud
|
|
11001
11022
|
|
11002
11023
|
attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
|
11003
11024
|
extend Gem::Deprecate
|
11004
|
-
deprecate :ModelId, :none, 2025,
|
11005
|
-
deprecate :ModelId=, :none, 2025,
|
11025
|
+
deprecate :ModelId, :none, 2025, 8
|
11026
|
+
deprecate :ModelId=, :none, 2025, 8
|
11006
11027
|
|
11007
11028
|
def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
|
11008
11029
|
@ModelId = modelid
|
@@ -11032,10 +11053,10 @@ module TencentCloud
|
|
11032
11053
|
|
11033
11054
|
attr_accessor :Sn, :ModelId, :ActiveNum
|
11034
11055
|
extend Gem::Deprecate
|
11035
|
-
deprecate :ModelId, :none, 2025,
|
11036
|
-
deprecate :ModelId=, :none, 2025,
|
11037
|
-
deprecate :ActiveNum, :none, 2025,
|
11038
|
-
deprecate :ActiveNum=, :none, 2025,
|
11056
|
+
deprecate :ModelId, :none, 2025, 8
|
11057
|
+
deprecate :ModelId=, :none, 2025, 8
|
11058
|
+
deprecate :ActiveNum, :none, 2025, 8
|
11059
|
+
deprecate :ActiveNum=, :none, 2025, 8
|
11039
11060
|
|
11040
11061
|
def initialize(sn=nil, modelid=nil, activenum=nil)
|
11041
11062
|
@Sn = sn
|
@@ -11695,7 +11716,7 @@ module TencentCloud
|
|
11695
11716
|
|
11696
11717
|
# TWeSee 语义理解结果
|
11697
11718
|
class VisionRecognitionResult < TencentCloud::Common::AbstractModel
|
11698
|
-
# @param Status: 任务状态(1:分析失败;2:下载/读取视频/图片失败;3
|
11719
|
+
# @param Status: 任务状态(1:分析失败;2:下载/读取视频/图片失败;3:成功;4:执行中)
|
11699
11720
|
# @type Status: Integer
|
11700
11721
|
# @param DetectedClassifications: 识别到的目标类型。可能取值:
|
11701
11722
|
|
@@ -11712,14 +11733,20 @@ module TencentCloud
|
|
11712
11733
|
# @type Summary: String
|
11713
11734
|
# @param AlternativeSummary: 摘要文本(次选语言)
|
11714
11735
|
# @type AlternativeSummary: String
|
11736
|
+
# @param ErrorCode: 错误码,可能取值:
|
11715
11737
|
|
11716
|
-
|
11738
|
+
# - `DownloadFailed`:下载视频/图片文件失败
|
11739
|
+
# - `ReadFailed`:读取视频/图片文件失败
|
11740
|
+
# @type ErrorCode: String
|
11717
11741
|
|
11718
|
-
|
11742
|
+
attr_accessor :Status, :DetectedClassifications, :Summary, :AlternativeSummary, :ErrorCode
|
11743
|
+
|
11744
|
+
def initialize(status=nil, detectedclassifications=nil, summary=nil, alternativesummary=nil, errorcode=nil)
|
11719
11745
|
@Status = status
|
11720
11746
|
@DetectedClassifications = detectedclassifications
|
11721
11747
|
@Summary = summary
|
11722
11748
|
@AlternativeSummary = alternativesummary
|
11749
|
+
@ErrorCode = errorcode
|
11723
11750
|
end
|
11724
11751
|
|
11725
11752
|
def deserialize(params)
|
@@ -11727,6 +11754,61 @@ module TencentCloud
|
|
11727
11754
|
@DetectedClassifications = params['DetectedClassifications']
|
11728
11755
|
@Summary = params['Summary']
|
11729
11756
|
@AlternativeSummary = params['AlternativeSummary']
|
11757
|
+
@ErrorCode = params['ErrorCode']
|
11758
|
+
end
|
11759
|
+
end
|
11760
|
+
|
11761
|
+
# 视频摘要配置
|
11762
|
+
class VisionSummaryConfig < TencentCloud::Common::AbstractModel
|
11763
|
+
# @param OutputLang: 主输出语言
|
11764
|
+
|
11765
|
+
# 支持列表如下:
|
11766
|
+
# zh 中文
|
11767
|
+
# en 英语
|
11768
|
+
# ja 日语
|
11769
|
+
# ko 韩文
|
11770
|
+
# pt-BR 葡萄牙语(巴西)
|
11771
|
+
# th 泰语
|
11772
|
+
# @type OutputLang: String
|
11773
|
+
# @param AlternativeOutputLang: 可选输出语言
|
11774
|
+
|
11775
|
+
# 支持列表如下:
|
11776
|
+
# zh 中文
|
11777
|
+
# en 英语
|
11778
|
+
# ja 日语
|
11779
|
+
# ko 韩文
|
11780
|
+
# pt-BR 葡萄牙语(巴西)
|
11781
|
+
# th 泰语
|
11782
|
+
# @type AlternativeOutputLang: String
|
11783
|
+
# @param MultiCameraLayout: 多摄像头布局定义。可能取值:
|
11784
|
+
|
11785
|
+
# - 单摄(默认值):`Single`
|
11786
|
+
|
11787
|
+
# - 双摄(纵向排列)- 全部画面:`Vertical,Num=2,Index=0;1`
|
11788
|
+
# - 双摄(纵向排列)- 画面1:`Vertical,Num=2,Index=0`
|
11789
|
+
# - 双摄(纵向排列)- 画面2:`Vertical,Num=2,Index=1`
|
11790
|
+
|
11791
|
+
# - 三摄(纵向排列)- 全部画面:`Vertical,Num=3,Index=0;1;2`
|
11792
|
+
# - 三摄(纵向排列)- 画面1:`Vertical,Num=3,Index=0`
|
11793
|
+
# - 三摄(纵向排列)- 画面2:`Vertical,Num=3,Index=1`
|
11794
|
+
# - 三摄(纵向排列)- 画面3:`Vertical,Num=3,Index=2`
|
11795
|
+
# - 三摄(纵向排列)- 画面1+2:`Vertical,Num=3,Index=0;1`
|
11796
|
+
# - 三摄(纵向排列)- 画面1+3:`Vertical,Num=3,Index=0;2`
|
11797
|
+
# - 三摄(纵向排列)- 画面2+3:`Vertical,Num=3,Index=1;2`
|
11798
|
+
# @type MultiCameraLayout: String
|
11799
|
+
|
11800
|
+
attr_accessor :OutputLang, :AlternativeOutputLang, :MultiCameraLayout
|
11801
|
+
|
11802
|
+
def initialize(outputlang=nil, alternativeoutputlang=nil, multicameralayout=nil)
|
11803
|
+
@OutputLang = outputlang
|
11804
|
+
@AlternativeOutputLang = alternativeoutputlang
|
11805
|
+
@MultiCameraLayout = multicameralayout
|
11806
|
+
end
|
11807
|
+
|
11808
|
+
def deserialize(params)
|
11809
|
+
@OutputLang = params['OutputLang']
|
11810
|
+
@AlternativeOutputLang = params['AlternativeOutputLang']
|
11811
|
+
@MultiCameraLayout = params['MultiCameraLayout']
|
11730
11812
|
end
|
11731
11813
|
end
|
11732
11814
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotexplorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1117
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|