tencentcloud-sdk-iotexplorer 3.0.1074 → 3.0.1077

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b3ceb4270587ffe58dfbcaaf8bd8dd153c4d348
4
- data.tar.gz: 7a4beaa0457eedb9275c1280e8cd15f8b7731ee9
3
+ metadata.gz: cf8b9b4f612a37c92208542b95d4bdd5ed26122d
4
+ data.tar.gz: 155fcc6e06607fb1cbc2ce64f8c98e657f21d10c
5
5
  SHA512:
6
- metadata.gz: 39ffac258a595fc04b7e2f87446790468fe796c680bedeb95e8f06e61944408adc6b2847fd9ac9842b167268c7c550d72bdf3d550fde938c149108bc89a1c707
7
- data.tar.gz: 2f6e6db3fb1b9d41af12b929c542ebee769602354385fa88d1b697c0611f573a16c672dca13f14eac9964964708e30e41b5353b152cea25d59c50f94c9875b13
6
+ metadata.gz: 6af95e5a3151ce319d2b5c86280d6a9938183950e27642fd659b5d1835e39ea1824f55c5b7e14f3f49e5f3e0516a8aaf7d5a9c45a4bd1f11d305956fc9fbf26d
7
+ data.tar.gz: 06af43e940c650fb23c79a3805177c8de4ac023e0f73a86feac0f844b61a13d9d00b8ed437ed09f08ae1bffd66157178dc74848daaae6085bad965958e6cd0d5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1074
1
+ 3.0.1077
@@ -917,7 +917,7 @@ module TencentCloud
917
917
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
918
918
  end
919
919
 
920
- # 提供删除某个项目的能力
920
+ # 提供删除某个项目的能力。
921
921
 
922
922
  # @param request: Request instance for DeleteProject.
923
923
  # @type request: :class:`Tencentcloud::iotexplorer::V20190423::DeleteProjectRequest`
@@ -3319,7 +3319,7 @@ module TencentCloud
3319
3319
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3320
3320
  end
3321
3321
 
3322
- # 修改项目
3322
+ # 修改项目。
3323
3323
 
3324
3324
  # @param request: Request instance for ModifyProject.
3325
3325
  # @type request: :class:`Tencentcloud::iotexplorer::V20190423::ModifyProjectRequest`
@@ -6204,6 +6204,35 @@ module TencentCloud
6204
6204
  end
6205
6205
  end
6206
6206
 
6207
+ # Diary Simple Highlight 配置
6208
+ class DiarySHLConfig < TencentCloud::Common::AbstractModel
6209
+ # @param StartOffset: 每个视频偏移时长,单位秒
6210
+ # @type StartOffset: Integer
6211
+ # @param PlaySpeed: 视频浓缩倍数,支持1,2,4之间
6212
+ # @type PlaySpeed: Integer
6213
+ # @param MiniExtract: 单个视频最小提取时长,单位秒
6214
+ # @type MiniExtract: Integer
6215
+ # @param OutDuration: 每天最终输出视频时长,单位秒
6216
+ # 注:免费版固定10s
6217
+ # @type OutDuration: Integer
6218
+
6219
+ attr_accessor :StartOffset, :PlaySpeed, :MiniExtract, :OutDuration
6220
+
6221
+ def initialize(startoffset=nil, playspeed=nil, miniextract=nil, outduration=nil)
6222
+ @StartOffset = startoffset
6223
+ @PlaySpeed = playspeed
6224
+ @MiniExtract = miniextract
6225
+ @OutDuration = outduration
6226
+ end
6227
+
6228
+ def deserialize(params)
6229
+ @StartOffset = params['StartOffset']
6230
+ @PlaySpeed = params['PlaySpeed']
6231
+ @MiniExtract = params['MiniExtract']
6232
+ @OutDuration = params['OutDuration']
6233
+ end
6234
+ end
6235
+
6207
6236
  # DirectBindDeviceInFamily请求参数结构体
6208
6237
  class DirectBindDeviceInFamilyRequest < TencentCloud::Common::AbstractModel
6209
6238
  # @param IotAppID: 小程序appid
@@ -8753,6 +8782,7 @@ module TencentCloud
8753
8782
  # @param ServiceType: 云存 AI 服务类型。可选值:
8754
8783
  # - `RealtimeObjectDetect`:目标检测
8755
8784
  # - `Highlight`:视频浓缩
8785
+ # - `SimpleHighlight`:TrueX SimpleHighlight
8756
8786
  # @type ServiceType: String
8757
8787
  # @param Enabled: 视频分析启用状态
8758
8788
  # @type Enabled: Boolean
@@ -8760,16 +8790,19 @@ module TencentCloud
8760
8790
  # @type ROI: String
8761
8791
  # @param Config: 视频分析配置参数
8762
8792
  # @type Config: String
8793
+ # @param SHLConfig: SimpleHighlight 算法配置参数
8794
+ # @type SHLConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.DiarySHLConfig`
8763
8795
 
8764
- attr_accessor :ProductId, :DeviceName, :ServiceType, :Enabled, :ROI, :Config
8796
+ attr_accessor :ProductId, :DeviceName, :ServiceType, :Enabled, :ROI, :Config, :SHLConfig
8765
8797
 
8766
- def initialize(productid=nil, devicename=nil, servicetype=nil, enabled=nil, roi=nil, config=nil)
8798
+ def initialize(productid=nil, devicename=nil, servicetype=nil, enabled=nil, roi=nil, config=nil, shlconfig=nil)
8767
8799
  @ProductId = productid
8768
8800
  @DeviceName = devicename
8769
8801
  @ServiceType = servicetype
8770
8802
  @Enabled = enabled
8771
8803
  @ROI = roi
8772
8804
  @Config = config
8805
+ @SHLConfig = shlconfig
8773
8806
  end
8774
8807
 
8775
8808
  def deserialize(params)
@@ -8779,6 +8812,10 @@ module TencentCloud
8779
8812
  @Enabled = params['Enabled']
8780
8813
  @ROI = params['ROI']
8781
8814
  @Config = params['Config']
8815
+ unless params['SHLConfig'].nil?
8816
+ @SHLConfig = DiarySHLConfig.new
8817
+ @SHLConfig.deserialize(params['SHLConfig'])
8818
+ end
8782
8819
  end
8783
8820
  end
8784
8821
 
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.1074
4
+ version: 3.0.1077
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-06-04 00:00:00.000000000 Z
11
+ date: 2025-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common