tencentcloud-sdk-iotexplorer 3.0.874 → 3.0.876

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c33dc1c64f61de96a2877b4dcd01bef1bbb16a91
4
- data.tar.gz: e20f036692f874949ee4ee591d903504881dd5e0
3
+ metadata.gz: 0994a37fd76db37f9a73d025da79e84e3ba0991c
4
+ data.tar.gz: ab03d34f5c6cf1ecb6ec22a38a4a7bfc997477e1
5
5
  SHA512:
6
- metadata.gz: bf8ddaad6f1243a38cb608fd60c37da75107c60fcba75b52dd96f0e14ad8d68654397d4e6159569d7a555762fa7138bbd1f07ed8364efc0986369d65e530eb50
7
- data.tar.gz: 49de809e52af497a25f7913f554702b853e8499f41cee1577eaab535f4638b298e072af203d59308eb05dcc6d8e197a503f8ffa8ae2c882f07ba026a736b415c
6
+ metadata.gz: f9494e7369f801836e98ba8a42c3e447a25ad114826e50afaa197bc6c0cdd39ad24ae857004ddae57d7c615efdb0f73bd51fcec49b0c3a474a3b632cbc2a05bc
7
+ data.tar.gz: 155c1d81e7981129dc858caeb0661f74905a752d876e7317e32c480de6408bdda9b33ad449ec93e79b714b62398348222aa9939dadbaede630694018ef923865
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.874
1
+ 3.0.876
@@ -2645,7 +2645,7 @@ module TencentCloud
2645
2645
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2646
2646
  end
2647
2647
 
2648
- # 修改指定设备的云存 AI 服务开通状态与参数配置
2648
+ # 修改指定设备的云存 AI 服务参数配置
2649
2649
 
2650
2650
  # @param request: Request instance for ModifyCloudStorageAIService.
2651
2651
  # @type request: :class:`Tencentcloud::iotexplorer::V20190423::ModifyCloudStorageAIServiceRequest`
@@ -2202,7 +2202,7 @@ module TencentCloud
2202
2202
 
2203
2203
  # DescribeCloudStorageAIServiceCallback请求参数结构体
2204
2204
  class DescribeCloudStorageAIServiceCallbackRequest < TencentCloud::Common::AbstractModel
2205
- # @param ProductId: 产品ID
2205
+ # @param ProductId: 产品 ID
2206
2206
  # @type ProductId: String
2207
2207
 
2208
2208
  attr_accessor :ProductId
@@ -2248,13 +2248,12 @@ module TencentCloud
2248
2248
 
2249
2249
  # DescribeCloudStorageAIService请求参数结构体
2250
2250
  class DescribeCloudStorageAIServiceRequest < TencentCloud::Common::AbstractModel
2251
- # @param ProductId: 产品ID
2251
+ # @param ProductId: 产品 ID
2252
2252
  # @type ProductId: String
2253
2253
  # @param DeviceName: 设备名称
2254
2254
  # @type DeviceName: String
2255
2255
  # @param ServiceType: 云存 AI 服务类型。可选值:
2256
-
2257
- # - `PackageDetect`:包裹检测
2256
+ # - `RealtimeObjectDetect`:目标检测
2258
2257
  # - `Highlight`:视频浓缩
2259
2258
  # @type ServiceType: String
2260
2259
 
@@ -2275,28 +2274,28 @@ module TencentCloud
2275
2274
 
2276
2275
  # DescribeCloudStorageAIService返回参数结构体
2277
2276
  class DescribeCloudStorageAIServiceResponse < TencentCloud::Common::AbstractModel
2278
- # @param Enabled: 启用状态
2277
+ # @param Enabled: 视频分析启用状态
2279
2278
  # @type Enabled: Boolean
2280
- # @param ROI: 视频分析区域
2281
- # @type ROI: String
2282
- # @param Config: 云存 AI 服务的配置参数
2279
+ # @param Config: 视频分析配置参数
2283
2280
  # @type Config: String
2281
+ # @param ROI: 视频分析识别区域
2282
+ # @type ROI: String
2284
2283
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2285
2284
  # @type RequestId: String
2286
2285
 
2287
- attr_accessor :Enabled, :ROI, :Config, :RequestId
2286
+ attr_accessor :Enabled, :Config, :ROI, :RequestId
2288
2287
 
2289
- def initialize(enabled=nil, roi=nil, config=nil, requestid=nil)
2288
+ def initialize(enabled=nil, config=nil, roi=nil, requestid=nil)
2290
2289
  @Enabled = enabled
2291
- @ROI = roi
2292
2290
  @Config = config
2291
+ @ROI = roi
2293
2292
  @RequestId = requestid
2294
2293
  end
2295
2294
 
2296
2295
  def deserialize(params)
2297
2296
  @Enabled = params['Enabled']
2298
- @ROI = params['ROI']
2299
2297
  @Config = params['Config']
2298
+ @ROI = params['ROI']
2300
2299
  @RequestId = params['RequestId']
2301
2300
  end
2302
2301
  end
@@ -2347,7 +2346,7 @@ module TencentCloud
2347
2346
  # @param DeviceName: 设备名称
2348
2347
  # @type DeviceName: String
2349
2348
  # @param ServiceType: 云存 AI 服务类型。可选值:
2350
- # - `PackageDetect`:包裹检测
2349
+ # - `RealtimeObjectDetect`:目标检测
2351
2350
  # - `Highlight`:视频浓缩
2352
2351
  # @type ServiceType: String
2353
2352
  # @param Limit: 分页拉取数量
@@ -2361,9 +2360,9 @@ module TencentCloud
2361
2360
  # - `3`:成功且结果非空
2362
2361
  # - `4`:执行中
2363
2362
  # @type Status: Integer
2364
- # @param UserId: 用户ID
2363
+ # @param UserId: 用户 ID
2365
2364
  # @type UserId: String
2366
- # @param ChannelId: 通道ID 非NVR设备则不填 NVR设备则必填 默认为无
2365
+ # @param ChannelId: 通道 ID
2367
2366
  # @type ChannelId: Integer
2368
2367
 
2369
2368
  attr_accessor :ProductId, :DeviceName, :ServiceType, :Limit, :Offset, :Status, :UserId, :ChannelId
@@ -4426,7 +4425,7 @@ module TencentCloud
4426
4425
 
4427
4426
  # DescribeProductCloudStorageAIService请求参数结构体
4428
4427
  class DescribeProductCloudStorageAIServiceRequest < TencentCloud::Common::AbstractModel
4429
- # @param ProductId: 产品ID
4428
+ # @param ProductId: 产品 ID
4430
4429
  # @type ProductId: String
4431
4430
 
4432
4431
  attr_accessor :ProductId
@@ -7062,7 +7061,7 @@ module TencentCloud
7062
7061
 
7063
7062
  # ModifyCloudStorageAIServiceCallback请求参数结构体
7064
7063
  class ModifyCloudStorageAIServiceCallbackRequest < TencentCloud::Common::AbstractModel
7065
- # @param ProductId: 产品ID
7064
+ # @param ProductId: 产品 ID
7066
7065
  # @type ProductId: String
7067
7066
  # @param Type: 推送类型。可选值:
7068
7067
  # - `http`:HTTP 回调
@@ -7107,19 +7106,19 @@ module TencentCloud
7107
7106
 
7108
7107
  # ModifyCloudStorageAIService请求参数结构体
7109
7108
  class ModifyCloudStorageAIServiceRequest < TencentCloud::Common::AbstractModel
7110
- # @param ProductId: 产品ID
7109
+ # @param ProductId: 产品 ID
7111
7110
  # @type ProductId: String
7112
7111
  # @param DeviceName: 设备名称
7113
7112
  # @type DeviceName: String
7114
7113
  # @param ServiceType: 云存 AI 服务类型。可选值:
7115
- # - `PackageDetect`:包裹检测
7114
+ # - `RealtimeObjectDetect`:目标检测
7116
7115
  # - `Highlight`:视频浓缩
7117
7116
  # @type ServiceType: String
7118
- # @param Enabled: 启用状态
7117
+ # @param Enabled: 视频分析启用状态
7119
7118
  # @type Enabled: Boolean
7120
- # @param ROI: 视频分析区域
7119
+ # @param ROI: 视频分析识别区域
7121
7120
  # @type ROI: String
7122
- # @param Config: 云存 AI 服务的配置参数
7121
+ # @param Config: 视频分析配置参数
7123
7122
  # @type Config: String
7124
7123
 
7125
7124
  attr_accessor :ProductId, :DeviceName, :ServiceType, :Enabled, :ROI, :Config
@@ -7460,7 +7459,7 @@ module TencentCloud
7460
7459
 
7461
7460
  # ModifyProductCloudStorageAIService请求参数结构体
7462
7461
  class ModifyProductCloudStorageAIServiceRequest < TencentCloud::Common::AbstractModel
7463
- # @param ProductId: 产品ID
7462
+ # @param ProductId: 产品 ID
7464
7463
  # @type ProductId: String
7465
7464
  # @param Enabled: 开通状态
7466
7465
  # @type Enabled: Boolean
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.874
4
+ version: 3.0.876
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-28 00:00:00.000000000 Z
11
+ date: 2024-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common