tencentcloud-sdk-iotexplorer 3.0.1099 → 3.0.1127

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/v20190423/models.rb +149 -23
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 431e2f0816e6462b6370ae1c85e37168763886f3
4
- data.tar.gz: 8faaa48c4998181a5b888556fd89ca244d5df708
3
+ metadata.gz: 0217b58a9117e173730f22d284752e977dae3e93
4
+ data.tar.gz: 927a5ad616be21ef2bcc1bd5039970d39acc0de6
5
5
  SHA512:
6
- metadata.gz: 23eed101408e16537812367c4c5807aea95c60b9b98f376ccbb7067e6cae25558b046658e6c4876d4e488c224b56d7d3fb2797cb8ce39d04f7090d5823b49768
7
- data.tar.gz: 93d51d5aa1a30c084d7cbb7edd6e983074cfacb3832acc93db8c3ed166f4dbca61ff0652ff0ca53c8cb144b69bc249f54383febed7512b6424dfe9e97e9b1c76
6
+ metadata.gz: a39e0d948283792308a1c8a039fe0bee2588af0ba28d7f7bc72301dc9fda4f7615e98100dc397d80e08c281a19267767d2188cfa0351c44c3b876df8d6bbd360
7
+ data.tar.gz: 355756e1e97a5687962c4c069624ac26f710dc7a7e026739ac481bfbe7fb465cdfa2ac8df3cf5a6abad524e295371eb6cc0618554244cdecca3a748ec1f71578
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1099
1
+ 3.0.1127
@@ -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, 7
104
- deprecate :MiniProgramAppId=, :none, 2025, 7
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, 7
140
- deprecate :DeviceList=, :none, 2025, 7
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,18 @@ 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`
2240
+ # @param ServiceType: 算法类型,可能取值:
2241
+ # - `Summary`:视频/图片摘要
2242
+ # - `ObjectDetect`:目标检测
2243
+ # @type ServiceType: String
2244
+ # @param ObjectDetectConfig: 目标检测配置
2245
+ # @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
2238
2246
 
2239
- attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS
2247
+ attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
2240
2248
 
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)
2249
+ 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, servicetype=nil, objectdetectconfig=nil)
2242
2250
  @ProductId = productid
2243
2251
  @DeviceName = devicename
2244
2252
  @InputURL = inputurl
@@ -2250,6 +2258,9 @@ module TencentCloud
2250
2258
  @IsCustomDevice = iscustomdevice
2251
2259
  @InputType = inputtype
2252
2260
  @SummaryQOS = summaryqos
2261
+ @SummaryConfig = summaryconfig
2262
+ @ServiceType = servicetype
2263
+ @ObjectDetectConfig = objectdetectconfig
2253
2264
  end
2254
2265
 
2255
2266
  def deserialize(params)
@@ -2264,6 +2275,15 @@ module TencentCloud
2264
2275
  @IsCustomDevice = params['IsCustomDevice']
2265
2276
  @InputType = params['InputType']
2266
2277
  @SummaryQOS = params['SummaryQOS']
2278
+ unless params['SummaryConfig'].nil?
2279
+ @SummaryConfig = VisionSummaryConfig.new
2280
+ @SummaryConfig.deserialize(params['SummaryConfig'])
2281
+ end
2282
+ @ServiceType = params['ServiceType']
2283
+ unless params['ObjectDetectConfig'].nil?
2284
+ @ObjectDetectConfig = VisionObjectDetectConfig.new
2285
+ @ObjectDetectConfig.deserialize(params['ObjectDetectConfig'])
2286
+ end
2267
2287
  end
2268
2288
  end
2269
2289
 
@@ -6051,8 +6071,8 @@ module TencentCloud
6051
6071
 
6052
6072
  attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
6053
6073
  extend Gem::Deprecate
6054
- deprecate :ModelId, :none, 2025, 7
6055
- deprecate :ModelId=, :none, 2025, 7
6074
+ deprecate :ModelId, :none, 2025, 8
6075
+ deprecate :ModelId=, :none, 2025, 8
6056
6076
 
6057
6077
  def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
6058
6078
  @ModelId = modelid
@@ -7650,8 +7670,8 @@ module TencentCloud
7650
7670
 
7651
7671
  attr_accessor :MiniProgramAppId, :DeviceList
7652
7672
  extend Gem::Deprecate
7653
- deprecate :MiniProgramAppId, :none, 2025, 7
7654
- deprecate :MiniProgramAppId=, :none, 2025, 7
7673
+ deprecate :MiniProgramAppId, :none, 2025, 8
7674
+ deprecate :MiniProgramAppId=, :none, 2025, 8
7655
7675
 
7656
7676
  def initialize(miniprogramappid=nil, devicelist=nil)
7657
7677
  @MiniProgramAppId = miniprogramappid
@@ -8235,10 +8255,18 @@ module TencentCloud
8235
8255
  # - `minutely`:分钟级(默认值)
8236
8256
  # - `immediate`:立即
8237
8257
  # @type SummaryQOS: String
8258
+ # @param SummaryConfig: 摘要输出配置
8259
+ # @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
8260
+ # @param ServiceType: 算法类型,可能取值:
8261
+ # - `Summary`:视频/图片摘要
8262
+ # - `ObjectDetect`:目标检测
8263
+ # @type ServiceType: String
8264
+ # @param ObjectDetectConfig: 目标检测配置
8265
+ # @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
8238
8266
 
8239
- attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS
8267
+ attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
8240
8268
 
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)
8269
+ 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, servicetype=nil, objectdetectconfig=nil)
8242
8270
  @ProductId = productid
8243
8271
  @DeviceName = devicename
8244
8272
  @InputURL = inputurl
@@ -8250,6 +8278,9 @@ module TencentCloud
8250
8278
  @IsCustomDevice = iscustomdevice
8251
8279
  @InputType = inputtype
8252
8280
  @SummaryQOS = summaryqos
8281
+ @SummaryConfig = summaryconfig
8282
+ @ServiceType = servicetype
8283
+ @ObjectDetectConfig = objectdetectconfig
8253
8284
  end
8254
8285
 
8255
8286
  def deserialize(params)
@@ -8264,6 +8295,15 @@ module TencentCloud
8264
8295
  @IsCustomDevice = params['IsCustomDevice']
8265
8296
  @InputType = params['InputType']
8266
8297
  @SummaryQOS = params['SummaryQOS']
8298
+ unless params['SummaryConfig'].nil?
8299
+ @SummaryConfig = VisionSummaryConfig.new
8300
+ @SummaryConfig.deserialize(params['SummaryConfig'])
8301
+ end
8302
+ @ServiceType = params['ServiceType']
8303
+ unless params['ObjectDetectConfig'].nil?
8304
+ @ObjectDetectConfig = VisionObjectDetectConfig.new
8305
+ @ObjectDetectConfig.deserialize(params['ObjectDetectConfig'])
8306
+ end
8267
8307
  end
8268
8308
  end
8269
8309
 
@@ -9551,10 +9591,12 @@ module TencentCloud
9551
9591
  # @type EnableSearch: Boolean
9552
9592
  # @param Config: 配置参数,不传则不修改
9553
9593
  # @type Config: String
9594
+ # @param SummaryConfig: 视频摘要配置参数,不传则不修改
9595
+ # @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
9554
9596
 
9555
- attr_accessor :ProductId, :DeviceName, :UserId, :ChannelId, :EnableSummary, :EnableSearch, :Config
9597
+ attr_accessor :ProductId, :DeviceName, :UserId, :ChannelId, :EnableSummary, :EnableSearch, :Config, :SummaryConfig
9556
9598
 
9557
- def initialize(productid=nil, devicename=nil, userid=nil, channelid=nil, enablesummary=nil, enablesearch=nil, config=nil)
9599
+ def initialize(productid=nil, devicename=nil, userid=nil, channelid=nil, enablesummary=nil, enablesearch=nil, config=nil, summaryconfig=nil)
9558
9600
  @ProductId = productid
9559
9601
  @DeviceName = devicename
9560
9602
  @UserId = userid
@@ -9562,6 +9604,7 @@ module TencentCloud
9562
9604
  @EnableSummary = enablesummary
9563
9605
  @EnableSearch = enablesearch
9564
9606
  @Config = config
9607
+ @SummaryConfig = summaryconfig
9565
9608
  end
9566
9609
 
9567
9610
  def deserialize(params)
@@ -9572,6 +9615,10 @@ module TencentCloud
9572
9615
  @EnableSummary = params['EnableSummary']
9573
9616
  @EnableSearch = params['EnableSearch']
9574
9617
  @Config = params['Config']
9618
+ unless params['SummaryConfig'].nil?
9619
+ @SummaryConfig = VisionSummaryConfig.new
9620
+ @SummaryConfig.deserialize(params['SummaryConfig'])
9621
+ end
9575
9622
  end
9576
9623
  end
9577
9624
 
@@ -11001,8 +11048,8 @@ module TencentCloud
11001
11048
 
11002
11049
  attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
11003
11050
  extend Gem::Deprecate
11004
- deprecate :ModelId, :none, 2025, 7
11005
- deprecate :ModelId=, :none, 2025, 7
11051
+ deprecate :ModelId, :none, 2025, 8
11052
+ deprecate :ModelId=, :none, 2025, 8
11006
11053
 
11007
11054
  def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
11008
11055
  @ModelId = modelid
@@ -11032,10 +11079,10 @@ module TencentCloud
11032
11079
 
11033
11080
  attr_accessor :Sn, :ModelId, :ActiveNum
11034
11081
  extend Gem::Deprecate
11035
- deprecate :ModelId, :none, 2025, 7
11036
- deprecate :ModelId=, :none, 2025, 7
11037
- deprecate :ActiveNum, :none, 2025, 7
11038
- deprecate :ActiveNum=, :none, 2025, 7
11082
+ deprecate :ModelId, :none, 2025, 8
11083
+ deprecate :ModelId=, :none, 2025, 8
11084
+ deprecate :ActiveNum, :none, 2025, 8
11085
+ deprecate :ActiveNum=, :none, 2025, 8
11039
11086
 
11040
11087
  def initialize(sn=nil, modelid=nil, activenum=nil)
11041
11088
  @Sn = sn
@@ -11693,9 +11740,27 @@ module TencentCloud
11693
11740
  end
11694
11741
  end
11695
11742
 
11743
+ # 目标检测配置
11744
+ class VisionObjectDetectConfig < TencentCloud::Common::AbstractModel
11745
+ # @param DetectTypes: 检测类别,可选值:
11746
+ # - `adult`:成年人
11747
+ # - `child`:儿童
11748
+ # @type DetectTypes: Array
11749
+
11750
+ attr_accessor :DetectTypes
11751
+
11752
+ def initialize(detecttypes=nil)
11753
+ @DetectTypes = detecttypes
11754
+ end
11755
+
11756
+ def deserialize(params)
11757
+ @DetectTypes = params['DetectTypes']
11758
+ end
11759
+ end
11760
+
11696
11761
  # TWeSee 语义理解结果
11697
11762
  class VisionRecognitionResult < TencentCloud::Common::AbstractModel
11698
- # @param Status: 任务状态(1:分析失败;2:下载/读取视频/图片失败;3:成功)
11763
+ # @param Status: 任务状态(1:分析失败;2:下载/读取视频/图片失败;3:成功;4:执行中)
11699
11764
  # @type Status: Integer
11700
11765
  # @param DetectedClassifications: 识别到的目标类型。可能取值:
11701
11766
 
@@ -11712,14 +11777,20 @@ module TencentCloud
11712
11777
  # @type Summary: String
11713
11778
  # @param AlternativeSummary: 摘要文本(次选语言)
11714
11779
  # @type AlternativeSummary: String
11780
+ # @param ErrorCode: 错误码,可能取值:
11715
11781
 
11716
- attr_accessor :Status, :DetectedClassifications, :Summary, :AlternativeSummary
11782
+ # - `DownloadFailed`:下载视频/图片文件失败
11783
+ # - `ReadFailed`:读取视频/图片文件失败
11784
+ # @type ErrorCode: String
11717
11785
 
11718
- def initialize(status=nil, detectedclassifications=nil, summary=nil, alternativesummary=nil)
11786
+ attr_accessor :Status, :DetectedClassifications, :Summary, :AlternativeSummary, :ErrorCode
11787
+
11788
+ def initialize(status=nil, detectedclassifications=nil, summary=nil, alternativesummary=nil, errorcode=nil)
11719
11789
  @Status = status
11720
11790
  @DetectedClassifications = detectedclassifications
11721
11791
  @Summary = summary
11722
11792
  @AlternativeSummary = alternativesummary
11793
+ @ErrorCode = errorcode
11723
11794
  end
11724
11795
 
11725
11796
  def deserialize(params)
@@ -11727,6 +11798,61 @@ module TencentCloud
11727
11798
  @DetectedClassifications = params['DetectedClassifications']
11728
11799
  @Summary = params['Summary']
11729
11800
  @AlternativeSummary = params['AlternativeSummary']
11801
+ @ErrorCode = params['ErrorCode']
11802
+ end
11803
+ end
11804
+
11805
+ # 视频摘要配置
11806
+ class VisionSummaryConfig < TencentCloud::Common::AbstractModel
11807
+ # @param OutputLang: 主输出语言
11808
+
11809
+ # 支持列表如下:
11810
+ # zh 中文
11811
+ # en 英语
11812
+ # ja 日语
11813
+ # ko 韩文
11814
+ # pt-BR 葡萄牙语(巴西)
11815
+ # th 泰语
11816
+ # @type OutputLang: String
11817
+ # @param AlternativeOutputLang: 可选输出语言
11818
+
11819
+ # 支持列表如下:
11820
+ # zh 中文
11821
+ # en 英语
11822
+ # ja 日语
11823
+ # ko 韩文
11824
+ # pt-BR 葡萄牙语(巴西)
11825
+ # th 泰语
11826
+ # @type AlternativeOutputLang: String
11827
+ # @param MultiCameraLayout: 多摄像头布局定义。可能取值:
11828
+
11829
+ # - 单摄(默认值):`Single`
11830
+
11831
+ # - 双摄(纵向排列)- 全部画面:`Vertical,Num=2,Index=0;1`
11832
+ # - 双摄(纵向排列)- 画面1:`Vertical,Num=2,Index=0`
11833
+ # - 双摄(纵向排列)- 画面2:`Vertical,Num=2,Index=1`
11834
+
11835
+ # - 三摄(纵向排列)- 全部画面:`Vertical,Num=3,Index=0;1;2`
11836
+ # - 三摄(纵向排列)- 画面1:`Vertical,Num=3,Index=0`
11837
+ # - 三摄(纵向排列)- 画面2:`Vertical,Num=3,Index=1`
11838
+ # - 三摄(纵向排列)- 画面3:`Vertical,Num=3,Index=2`
11839
+ # - 三摄(纵向排列)- 画面1+2:`Vertical,Num=3,Index=0;1`
11840
+ # - 三摄(纵向排列)- 画面1+3:`Vertical,Num=3,Index=0;2`
11841
+ # - 三摄(纵向排列)- 画面2+3:`Vertical,Num=3,Index=1;2`
11842
+ # @type MultiCameraLayout: String
11843
+
11844
+ attr_accessor :OutputLang, :AlternativeOutputLang, :MultiCameraLayout
11845
+
11846
+ def initialize(outputlang=nil, alternativeoutputlang=nil, multicameralayout=nil)
11847
+ @OutputLang = outputlang
11848
+ @AlternativeOutputLang = alternativeoutputlang
11849
+ @MultiCameraLayout = multicameralayout
11850
+ end
11851
+
11852
+ def deserialize(params)
11853
+ @OutputLang = params['OutputLang']
11854
+ @AlternativeOutputLang = params['AlternativeOutputLang']
11855
+ @MultiCameraLayout = params['MultiCameraLayout']
11730
11856
  end
11731
11857
  end
11732
11858
 
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.1099
4
+ version: 3.0.1127
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-07-11 00:00:00.000000000 Z
11
+ date: 2025-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common