tencentcloud-sdk-iotexplorer 3.0.1160 → 3.0.1170
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/client.rb +120 -26
- data/lib/v20190423/models.rb +697 -128
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9abdf3b4b9e79f6ec2f5272e5f6771889e1476b
|
|
4
|
+
data.tar.gz: 75de6c36f036500c19c9bf5808c12b9f98ac7391
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eac2a44d3cfe88cce51212840bc06fe568148d4d52205342a1f1035f44a802c15482b71c784b61c5516f180e89b1bbb7a3bde5b1aadf47973417813c464d3d35
|
|
7
|
+
data.tar.gz: a2ab38f2c3d827e49396e9e3bad72a6c89a6847ab09beb3a681004d8282d7ae17a34d25d568bf3a0ed9887c9195417e09a98d3a132b30d318020dbb21715cae6
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1170
|
data/lib/v20190423/client.rb
CHANGED
|
@@ -53,6 +53,54 @@ module TencentCloud
|
|
|
53
53
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
54
54
|
end
|
|
55
55
|
|
|
56
|
+
# 批量同步执行 TWeSee 语义理解任务
|
|
57
|
+
|
|
58
|
+
# @param request: Request instance for BatchCreateTWeSeeRecognitionTask.
|
|
59
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::BatchCreateTWeSeeRecognitionTaskRequest`
|
|
60
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::BatchCreateTWeSeeRecognitionTaskResponse`
|
|
61
|
+
def BatchCreateTWeSeeRecognitionTask(request)
|
|
62
|
+
body = send_request('BatchCreateTWeSeeRecognitionTask', request.serialize)
|
|
63
|
+
response = JSON.parse(body)
|
|
64
|
+
if response['Response'].key?('Error') == false
|
|
65
|
+
model = BatchCreateTWeSeeRecognitionTaskResponse.new
|
|
66
|
+
model.deserialize(response['Response'])
|
|
67
|
+
model
|
|
68
|
+
else
|
|
69
|
+
code = response['Response']['Error']['Code']
|
|
70
|
+
message = response['Response']['Error']['Message']
|
|
71
|
+
reqid = response['Response']['RequestId']
|
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
73
|
+
end
|
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
75
|
+
raise e
|
|
76
|
+
rescue StandardError => e
|
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
# 批量同步执行 TWeSee 语义理解任务
|
|
81
|
+
|
|
82
|
+
# @param request: Request instance for BatchInvokeTWeSeeRecognitionTask.
|
|
83
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::BatchInvokeTWeSeeRecognitionTaskRequest`
|
|
84
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::BatchInvokeTWeSeeRecognitionTaskResponse`
|
|
85
|
+
def BatchInvokeTWeSeeRecognitionTask(request)
|
|
86
|
+
body = send_request('BatchInvokeTWeSeeRecognitionTask', request.serialize)
|
|
87
|
+
response = JSON.parse(body)
|
|
88
|
+
if response['Response'].key?('Error') == false
|
|
89
|
+
model = BatchInvokeTWeSeeRecognitionTaskResponse.new
|
|
90
|
+
model.deserialize(response['Response'])
|
|
91
|
+
model
|
|
92
|
+
else
|
|
93
|
+
code = response['Response']['Error']['Code']
|
|
94
|
+
message = response['Response']['Error']['Message']
|
|
95
|
+
reqid = response['Response']['RequestId']
|
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
97
|
+
end
|
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
99
|
+
raise e
|
|
100
|
+
rescue StandardError => e
|
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
102
|
+
end
|
|
103
|
+
|
|
56
104
|
# 本接口(BatchUpdateFirmware)用于批量更新设备固件
|
|
57
105
|
|
|
58
106
|
# @param request: Request instance for BatchUpdateFirmware.
|
|
@@ -751,6 +799,30 @@ module TencentCloud
|
|
|
751
799
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
752
800
|
end
|
|
753
801
|
|
|
802
|
+
# 同步执行 TWeSee 语义理解任务
|
|
803
|
+
|
|
804
|
+
# @param request: Request instance for CreateTWeSeeRecognitionTaskWithFile.
|
|
805
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::CreateTWeSeeRecognitionTaskWithFileRequest`
|
|
806
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::CreateTWeSeeRecognitionTaskWithFileResponse`
|
|
807
|
+
def CreateTWeSeeRecognitionTaskWithFile(request)
|
|
808
|
+
body = send_request('CreateTWeSeeRecognitionTaskWithFile', request.serialize)
|
|
809
|
+
response = JSON.parse(body)
|
|
810
|
+
if response['Response'].key?('Error') == false
|
|
811
|
+
model = CreateTWeSeeRecognitionTaskWithFileResponse.new
|
|
812
|
+
model.deserialize(response['Response'])
|
|
813
|
+
model
|
|
814
|
+
else
|
|
815
|
+
code = response['Response']['Error']['Code']
|
|
816
|
+
message = response['Response']['Error']['Message']
|
|
817
|
+
reqid = response['Response']['RequestId']
|
|
818
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
819
|
+
end
|
|
820
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
821
|
+
raise e
|
|
822
|
+
rescue StandardError => e
|
|
823
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
824
|
+
end
|
|
825
|
+
|
|
754
826
|
# 开通 TWeSee 后付费服务
|
|
755
827
|
|
|
756
828
|
# @param request: Request instance for CreateTWeSeeService.
|
|
@@ -1135,6 +1207,30 @@ module TencentCloud
|
|
|
1135
1207
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1136
1208
|
end
|
|
1137
1209
|
|
|
1210
|
+
# 用于删除配置TWeTalk服务连接产品配置信息。
|
|
1211
|
+
|
|
1212
|
+
# @param request: Request instance for DeleteTWeTalkProductConfigV2.
|
|
1213
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::DeleteTWeTalkProductConfigV2Request`
|
|
1214
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DeleteTWeTalkProductConfigV2Response`
|
|
1215
|
+
def DeleteTWeTalkProductConfigV2(request)
|
|
1216
|
+
body = send_request('DeleteTWeTalkProductConfigV2', request.serialize)
|
|
1217
|
+
response = JSON.parse(body)
|
|
1218
|
+
if response['Response'].key?('Error') == false
|
|
1219
|
+
model = DeleteTWeTalkProductConfigV2Response.new
|
|
1220
|
+
model.deserialize(response['Response'])
|
|
1221
|
+
model
|
|
1222
|
+
else
|
|
1223
|
+
code = response['Response']['Error']['Code']
|
|
1224
|
+
message = response['Response']['Error']['Message']
|
|
1225
|
+
reqid = response['Response']['RequestId']
|
|
1226
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1227
|
+
end
|
|
1228
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1229
|
+
raise e
|
|
1230
|
+
rescue StandardError => e
|
|
1231
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1232
|
+
end
|
|
1233
|
+
|
|
1138
1234
|
# 本接口(DeleteTopicPolicy)用于删除Topic
|
|
1139
1235
|
|
|
1140
1236
|
# @param request: Request instance for DeleteTopicPolicy.
|
|
@@ -1879,32 +1975,6 @@ module TencentCloud
|
|
|
1879
1975
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1880
1976
|
end
|
|
1881
1977
|
|
|
1882
|
-
# 获取实时位置解析依赖于teg位置服务,近30天调用只有2个个人账号调用,产品推下线
|
|
1883
|
-
|
|
1884
|
-
# 获取实时位置解析
|
|
1885
|
-
|
|
1886
|
-
# @param request: Request instance for DescribeDeviceLocationSolve.
|
|
1887
|
-
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeDeviceLocationSolveRequest`
|
|
1888
|
-
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeDeviceLocationSolveResponse`
|
|
1889
|
-
def DescribeDeviceLocationSolve(request)
|
|
1890
|
-
body = send_request('DescribeDeviceLocationSolve', request.serialize)
|
|
1891
|
-
response = JSON.parse(body)
|
|
1892
|
-
if response['Response'].key?('Error') == false
|
|
1893
|
-
model = DescribeDeviceLocationSolveResponse.new
|
|
1894
|
-
model.deserialize(response['Response'])
|
|
1895
|
-
model
|
|
1896
|
-
else
|
|
1897
|
-
code = response['Response']['Error']['Code']
|
|
1898
|
-
message = response['Response']['Error']['Message']
|
|
1899
|
-
reqid = response['Response']['RequestId']
|
|
1900
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1901
|
-
end
|
|
1902
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1903
|
-
raise e
|
|
1904
|
-
rescue StandardError => e
|
|
1905
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1906
|
-
end
|
|
1907
|
-
|
|
1908
1978
|
# 根据设备信息拉取有效套餐列表
|
|
1909
1979
|
|
|
1910
1980
|
# @param request: Request instance for DescribeDevicePackages.
|
|
@@ -3393,6 +3463,30 @@ module TencentCloud
|
|
|
3393
3463
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
3394
3464
|
end
|
|
3395
3465
|
|
|
3466
|
+
# 同步执行 TWeSee 语义理解任务
|
|
3467
|
+
|
|
3468
|
+
# @param request: Request instance for InvokeTWeSeeRecognitionTaskWithFile.
|
|
3469
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::InvokeTWeSeeRecognitionTaskWithFileRequest`
|
|
3470
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::InvokeTWeSeeRecognitionTaskWithFileResponse`
|
|
3471
|
+
def InvokeTWeSeeRecognitionTaskWithFile(request)
|
|
3472
|
+
body = send_request('InvokeTWeSeeRecognitionTaskWithFile', request.serialize)
|
|
3473
|
+
response = JSON.parse(body)
|
|
3474
|
+
if response['Response'].key?('Error') == false
|
|
3475
|
+
model = InvokeTWeSeeRecognitionTaskWithFileResponse.new
|
|
3476
|
+
model.deserialize(response['Response'])
|
|
3477
|
+
model
|
|
3478
|
+
else
|
|
3479
|
+
code = response['Response']['Error']['Code']
|
|
3480
|
+
message = response['Response']['Error']['Message']
|
|
3481
|
+
reqid = response['Response']['RequestId']
|
|
3482
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
3483
|
+
end
|
|
3484
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
3485
|
+
raise e
|
|
3486
|
+
rescue StandardError => e
|
|
3487
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
3488
|
+
end
|
|
3489
|
+
|
|
3396
3490
|
# 获取某个时间段的视频内容关键字
|
|
3397
3491
|
|
|
3398
3492
|
# @param request: Request instance for InvokeVideosKeywordsAnalyzer.
|
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, 11
|
|
104
|
+
deprecate :MiniProgramAppId=, :none, 2025, 11
|
|
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, 11
|
|
140
|
+
deprecate :DeviceList=, :none, 2025, 11
|
|
141
141
|
|
|
142
142
|
def initialize(devicelist=nil, failurelist=nil, successlist=nil, requestid=nil)
|
|
143
143
|
@DeviceList = devicelist
|
|
@@ -263,6 +263,106 @@ module TencentCloud
|
|
|
263
263
|
end
|
|
264
264
|
end
|
|
265
265
|
|
|
266
|
+
# BatchCreateTWeSeeRecognitionTask请求参数结构体
|
|
267
|
+
class BatchCreateTWeSeeRecognitionTaskRequest < TencentCloud::Common::AbstractModel
|
|
268
|
+
# @param Inputs: 待创建的 TWeSee 语义理解任务列表
|
|
269
|
+
# @type Inputs: Array
|
|
270
|
+
|
|
271
|
+
attr_accessor :Inputs
|
|
272
|
+
|
|
273
|
+
def initialize(inputs=nil)
|
|
274
|
+
@Inputs = inputs
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
def deserialize(params)
|
|
278
|
+
unless params['Inputs'].nil?
|
|
279
|
+
@Inputs = []
|
|
280
|
+
params['Inputs'].each do |i|
|
|
281
|
+
createvisionrecognitiontaskinput_tmp = CreateVisionRecognitionTaskInput.new
|
|
282
|
+
createvisionrecognitiontaskinput_tmp.deserialize(i)
|
|
283
|
+
@Inputs << createvisionrecognitiontaskinput_tmp
|
|
284
|
+
end
|
|
285
|
+
end
|
|
286
|
+
end
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
# BatchCreateTWeSeeRecognitionTask返回参数结构体
|
|
290
|
+
class BatchCreateTWeSeeRecognitionTaskResponse < TencentCloud::Common::AbstractModel
|
|
291
|
+
# @param Outputs: TWeSee 语义理解任务的创建结果。与入参 Inputs 一一对应。
|
|
292
|
+
# @type Outputs: Array
|
|
293
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
294
|
+
# @type RequestId: String
|
|
295
|
+
|
|
296
|
+
attr_accessor :Outputs, :RequestId
|
|
297
|
+
|
|
298
|
+
def initialize(outputs=nil, requestid=nil)
|
|
299
|
+
@Outputs = outputs
|
|
300
|
+
@RequestId = requestid
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
def deserialize(params)
|
|
304
|
+
unless params['Outputs'].nil?
|
|
305
|
+
@Outputs = []
|
|
306
|
+
params['Outputs'].each do |i|
|
|
307
|
+
createvisionrecognitiontaskoutput_tmp = CreateVisionRecognitionTaskOutput.new
|
|
308
|
+
createvisionrecognitiontaskoutput_tmp.deserialize(i)
|
|
309
|
+
@Outputs << createvisionrecognitiontaskoutput_tmp
|
|
310
|
+
end
|
|
311
|
+
end
|
|
312
|
+
@RequestId = params['RequestId']
|
|
313
|
+
end
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
# BatchInvokeTWeSeeRecognitionTask请求参数结构体
|
|
317
|
+
class BatchInvokeTWeSeeRecognitionTaskRequest < TencentCloud::Common::AbstractModel
|
|
318
|
+
# @param Inputs: 待执行的 TWeSee 语义理解任务列表
|
|
319
|
+
# @type Inputs: Array
|
|
320
|
+
|
|
321
|
+
attr_accessor :Inputs
|
|
322
|
+
|
|
323
|
+
def initialize(inputs=nil)
|
|
324
|
+
@Inputs = inputs
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
def deserialize(params)
|
|
328
|
+
unless params['Inputs'].nil?
|
|
329
|
+
@Inputs = []
|
|
330
|
+
params['Inputs'].each do |i|
|
|
331
|
+
createvisionrecognitiontaskinput_tmp = CreateVisionRecognitionTaskInput.new
|
|
332
|
+
createvisionrecognitiontaskinput_tmp.deserialize(i)
|
|
333
|
+
@Inputs << createvisionrecognitiontaskinput_tmp
|
|
334
|
+
end
|
|
335
|
+
end
|
|
336
|
+
end
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
# BatchInvokeTWeSeeRecognitionTask返回参数结构体
|
|
340
|
+
class BatchInvokeTWeSeeRecognitionTaskResponse < TencentCloud::Common::AbstractModel
|
|
341
|
+
# @param Outputs: TWeSee 语义理解任务的执行结果。与入参 Inputs 一一对应。
|
|
342
|
+
# @type Outputs: Array
|
|
343
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
344
|
+
# @type RequestId: String
|
|
345
|
+
|
|
346
|
+
attr_accessor :Outputs, :RequestId
|
|
347
|
+
|
|
348
|
+
def initialize(outputs=nil, requestid=nil)
|
|
349
|
+
@Outputs = outputs
|
|
350
|
+
@RequestId = requestid
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
def deserialize(params)
|
|
354
|
+
unless params['Outputs'].nil?
|
|
355
|
+
@Outputs = []
|
|
356
|
+
params['Outputs'].each do |i|
|
|
357
|
+
invokevisionrecognitiontaskoutput_tmp = InvokeVisionRecognitionTaskOutput.new
|
|
358
|
+
invokevisionrecognitiontaskoutput_tmp.deserialize(i)
|
|
359
|
+
@Outputs << invokevisionrecognitiontaskoutput_tmp
|
|
360
|
+
end
|
|
361
|
+
end
|
|
362
|
+
@RequestId = params['RequestId']
|
|
363
|
+
end
|
|
364
|
+
end
|
|
365
|
+
|
|
266
366
|
# 获取返回列表的详情。
|
|
267
367
|
class BatchProductionInfo < TencentCloud::Common::AbstractModel
|
|
268
368
|
# @param BatchProductionId: 量产ID
|
|
@@ -2447,6 +2547,112 @@ module TencentCloud
|
|
|
2447
2547
|
end
|
|
2448
2548
|
end
|
|
2449
2549
|
|
|
2550
|
+
# CreateTWeSeeRecognitionTaskWithFile请求参数结构体
|
|
2551
|
+
class CreateTWeSeeRecognitionTaskWithFileRequest < TencentCloud::Common::AbstractModel
|
|
2552
|
+
# @param ProductId: 产品ID
|
|
2553
|
+
# @type ProductId: String
|
|
2554
|
+
# @param DeviceName: 设备名称
|
|
2555
|
+
# @type DeviceName: String
|
|
2556
|
+
# @param InputBase64: 视频 / 图片文件的 Base64 编码字符串
|
|
2557
|
+
# @type InputBase64: String
|
|
2558
|
+
# @param ChannelId: 通道 ID
|
|
2559
|
+
# @type ChannelId: Integer
|
|
2560
|
+
# @param CustomId: 自定义事件 ID
|
|
2561
|
+
# @type CustomId: String
|
|
2562
|
+
# @param EnableSearch: 是否保存该事件使其可被搜索
|
|
2563
|
+
# @type EnableSearch: Boolean
|
|
2564
|
+
# @param StartTimeMs: 事件起始时间事件起始时间(毫秒级 UNIX 时间戳,若不传则默认为接口调用时间)
|
|
2565
|
+
# @type StartTimeMs: Integer
|
|
2566
|
+
# @param EndTimeMs: 事件结束时间事件起始时间(毫秒级 UNIX 时间戳,若不传则默认为接口调用时间)
|
|
2567
|
+
# @type EndTimeMs: Integer
|
|
2568
|
+
# @param Config: 算法配置
|
|
2569
|
+
# @type Config: String
|
|
2570
|
+
# @param IsCustomDevice: 是否自定义设备,为 true 时不检查设备存在性,默认为 false
|
|
2571
|
+
# @type IsCustomDevice: Boolean
|
|
2572
|
+
# @param InputType: 输入类型。可选值:
|
|
2573
|
+
|
|
2574
|
+
# - `video`:视频(默认值)
|
|
2575
|
+
# - `image`:图片
|
|
2576
|
+
# @type InputType: String
|
|
2577
|
+
# @param SummaryQOS: 摘要服务质量。可选值:
|
|
2578
|
+
|
|
2579
|
+
# - `minutely`:分钟级(默认值)
|
|
2580
|
+
# - `immediate`:立即
|
|
2581
|
+
# @type SummaryQOS: String
|
|
2582
|
+
# @param SummaryConfig: 摘要输出配置
|
|
2583
|
+
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
|
2584
|
+
# @param ServiceType: 算法类型,可能取值:
|
|
2585
|
+
# - `Summary`:视频/图片摘要
|
|
2586
|
+
# - `ObjectDetect`:目标检测
|
|
2587
|
+
# @type ServiceType: String
|
|
2588
|
+
# @param ObjectDetectConfig: 目标检测配置
|
|
2589
|
+
# @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
|
|
2590
|
+
|
|
2591
|
+
attr_accessor :ProductId, :DeviceName, :InputBase64, :ChannelId, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
|
|
2592
|
+
|
|
2593
|
+
def initialize(productid=nil, devicename=nil, inputbase64=nil, channelid=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil, servicetype=nil, objectdetectconfig=nil)
|
|
2594
|
+
@ProductId = productid
|
|
2595
|
+
@DeviceName = devicename
|
|
2596
|
+
@InputBase64 = inputbase64
|
|
2597
|
+
@ChannelId = channelid
|
|
2598
|
+
@CustomId = customid
|
|
2599
|
+
@EnableSearch = enablesearch
|
|
2600
|
+
@StartTimeMs = starttimems
|
|
2601
|
+
@EndTimeMs = endtimems
|
|
2602
|
+
@Config = config
|
|
2603
|
+
@IsCustomDevice = iscustomdevice
|
|
2604
|
+
@InputType = inputtype
|
|
2605
|
+
@SummaryQOS = summaryqos
|
|
2606
|
+
@SummaryConfig = summaryconfig
|
|
2607
|
+
@ServiceType = servicetype
|
|
2608
|
+
@ObjectDetectConfig = objectdetectconfig
|
|
2609
|
+
end
|
|
2610
|
+
|
|
2611
|
+
def deserialize(params)
|
|
2612
|
+
@ProductId = params['ProductId']
|
|
2613
|
+
@DeviceName = params['DeviceName']
|
|
2614
|
+
@InputBase64 = params['InputBase64']
|
|
2615
|
+
@ChannelId = params['ChannelId']
|
|
2616
|
+
@CustomId = params['CustomId']
|
|
2617
|
+
@EnableSearch = params['EnableSearch']
|
|
2618
|
+
@StartTimeMs = params['StartTimeMs']
|
|
2619
|
+
@EndTimeMs = params['EndTimeMs']
|
|
2620
|
+
@Config = params['Config']
|
|
2621
|
+
@IsCustomDevice = params['IsCustomDevice']
|
|
2622
|
+
@InputType = params['InputType']
|
|
2623
|
+
@SummaryQOS = params['SummaryQOS']
|
|
2624
|
+
unless params['SummaryConfig'].nil?
|
|
2625
|
+
@SummaryConfig = VisionSummaryConfig.new
|
|
2626
|
+
@SummaryConfig.deserialize(params['SummaryConfig'])
|
|
2627
|
+
end
|
|
2628
|
+
@ServiceType = params['ServiceType']
|
|
2629
|
+
unless params['ObjectDetectConfig'].nil?
|
|
2630
|
+
@ObjectDetectConfig = VisionObjectDetectConfig.new
|
|
2631
|
+
@ObjectDetectConfig.deserialize(params['ObjectDetectConfig'])
|
|
2632
|
+
end
|
|
2633
|
+
end
|
|
2634
|
+
end
|
|
2635
|
+
|
|
2636
|
+
# CreateTWeSeeRecognitionTaskWithFile返回参数结构体
|
|
2637
|
+
class CreateTWeSeeRecognitionTaskWithFileResponse < TencentCloud::Common::AbstractModel
|
|
2638
|
+
# @param TaskId: 任务 ID
|
|
2639
|
+
# @type TaskId: String
|
|
2640
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2641
|
+
# @type RequestId: String
|
|
2642
|
+
|
|
2643
|
+
attr_accessor :TaskId, :RequestId
|
|
2644
|
+
|
|
2645
|
+
def initialize(taskid=nil, requestid=nil)
|
|
2646
|
+
@TaskId = taskid
|
|
2647
|
+
@RequestId = requestid
|
|
2648
|
+
end
|
|
2649
|
+
|
|
2650
|
+
def deserialize(params)
|
|
2651
|
+
@TaskId = params['TaskId']
|
|
2652
|
+
@RequestId = params['RequestId']
|
|
2653
|
+
end
|
|
2654
|
+
end
|
|
2655
|
+
|
|
2450
2656
|
# CreateTWeSeeService请求参数结构体
|
|
2451
2657
|
class CreateTWeSeeServiceRequest < TencentCloud::Common::AbstractModel
|
|
2452
2658
|
# @param Service: 服务类型
|
|
@@ -2691,6 +2897,124 @@ module TencentCloud
|
|
|
2691
2897
|
end
|
|
2692
2898
|
end
|
|
2693
2899
|
|
|
2900
|
+
# 批量创建的 TWeSee 语义理解任务
|
|
2901
|
+
class CreateVisionRecognitionTaskInput < TencentCloud::Common::AbstractModel
|
|
2902
|
+
# @param ProductId: 产品ID
|
|
2903
|
+
# @type ProductId: String
|
|
2904
|
+
# @param DeviceName: 设备名称
|
|
2905
|
+
# @type DeviceName: String
|
|
2906
|
+
# @param InputURL: 输入视频 / 图片的 URL
|
|
2907
|
+
# @type InputURL: String
|
|
2908
|
+
# @param InputBase64: 视频 / 图片文件的 Base64 编码字符串
|
|
2909
|
+
# @type InputBase64: String
|
|
2910
|
+
# @param ChannelId: 通道 ID
|
|
2911
|
+
# @type ChannelId: Integer
|
|
2912
|
+
# @param CustomId: 自定义事件 ID
|
|
2913
|
+
# @type CustomId: String
|
|
2914
|
+
# @param EnableSearch: 是否保存该事件使其可被搜索
|
|
2915
|
+
# @type EnableSearch: Boolean
|
|
2916
|
+
# @param StartTimeMs: 事件起始时间事件起始时间(毫秒级 UNIX 时间戳,若不传则默认为接口调用时间)
|
|
2917
|
+
# @type StartTimeMs: Integer
|
|
2918
|
+
# @param EndTimeMs: 事件结束时间事件起始时间(毫秒级 UNIX 时间戳,若不传则默认为接口调用时间)
|
|
2919
|
+
# @type EndTimeMs: Integer
|
|
2920
|
+
# @param Config: 算法配置
|
|
2921
|
+
# @type Config: String
|
|
2922
|
+
# @param IsCustomDevice: 是否自定义设备,为 true 时不检查设备存在性,默认为 false
|
|
2923
|
+
# @type IsCustomDevice: Boolean
|
|
2924
|
+
# @param InputType: 输入类型。可选值:
|
|
2925
|
+
|
|
2926
|
+
# - `video`:视频(默认值)
|
|
2927
|
+
# - `image`:图片
|
|
2928
|
+
# @type InputType: String
|
|
2929
|
+
# @param SummaryQOS: 摘要服务质量。可选值:
|
|
2930
|
+
|
|
2931
|
+
# - `minutely`:分钟级(默认值)
|
|
2932
|
+
# - `immediate`:立即
|
|
2933
|
+
# @type SummaryQOS: String
|
|
2934
|
+
# @param SummaryConfig: 摘要输出配置
|
|
2935
|
+
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
|
2936
|
+
# @param ServiceType: 算法类型,可能取值:
|
|
2937
|
+
# - `Summary`:视频/图片摘要
|
|
2938
|
+
# - `ObjectDetect`:目标检测
|
|
2939
|
+
# @type ServiceType: String
|
|
2940
|
+
# @param ObjectDetectConfig: 目标检测配置
|
|
2941
|
+
# @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
|
|
2942
|
+
|
|
2943
|
+
attr_accessor :ProductId, :DeviceName, :InputURL, :InputBase64, :ChannelId, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
|
|
2944
|
+
|
|
2945
|
+
def initialize(productid=nil, devicename=nil, inputurl=nil, inputbase64=nil, channelid=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil, servicetype=nil, objectdetectconfig=nil)
|
|
2946
|
+
@ProductId = productid
|
|
2947
|
+
@DeviceName = devicename
|
|
2948
|
+
@InputURL = inputurl
|
|
2949
|
+
@InputBase64 = inputbase64
|
|
2950
|
+
@ChannelId = channelid
|
|
2951
|
+
@CustomId = customid
|
|
2952
|
+
@EnableSearch = enablesearch
|
|
2953
|
+
@StartTimeMs = starttimems
|
|
2954
|
+
@EndTimeMs = endtimems
|
|
2955
|
+
@Config = config
|
|
2956
|
+
@IsCustomDevice = iscustomdevice
|
|
2957
|
+
@InputType = inputtype
|
|
2958
|
+
@SummaryQOS = summaryqos
|
|
2959
|
+
@SummaryConfig = summaryconfig
|
|
2960
|
+
@ServiceType = servicetype
|
|
2961
|
+
@ObjectDetectConfig = objectdetectconfig
|
|
2962
|
+
end
|
|
2963
|
+
|
|
2964
|
+
def deserialize(params)
|
|
2965
|
+
@ProductId = params['ProductId']
|
|
2966
|
+
@DeviceName = params['DeviceName']
|
|
2967
|
+
@InputURL = params['InputURL']
|
|
2968
|
+
@InputBase64 = params['InputBase64']
|
|
2969
|
+
@ChannelId = params['ChannelId']
|
|
2970
|
+
@CustomId = params['CustomId']
|
|
2971
|
+
@EnableSearch = params['EnableSearch']
|
|
2972
|
+
@StartTimeMs = params['StartTimeMs']
|
|
2973
|
+
@EndTimeMs = params['EndTimeMs']
|
|
2974
|
+
@Config = params['Config']
|
|
2975
|
+
@IsCustomDevice = params['IsCustomDevice']
|
|
2976
|
+
@InputType = params['InputType']
|
|
2977
|
+
@SummaryQOS = params['SummaryQOS']
|
|
2978
|
+
unless params['SummaryConfig'].nil?
|
|
2979
|
+
@SummaryConfig = VisionSummaryConfig.new
|
|
2980
|
+
@SummaryConfig.deserialize(params['SummaryConfig'])
|
|
2981
|
+
end
|
|
2982
|
+
@ServiceType = params['ServiceType']
|
|
2983
|
+
unless params['ObjectDetectConfig'].nil?
|
|
2984
|
+
@ObjectDetectConfig = VisionObjectDetectConfig.new
|
|
2985
|
+
@ObjectDetectConfig.deserialize(params['ObjectDetectConfig'])
|
|
2986
|
+
end
|
|
2987
|
+
end
|
|
2988
|
+
end
|
|
2989
|
+
|
|
2990
|
+
# 批量创建 TWeSee 语义理解任务的响应
|
|
2991
|
+
class CreateVisionRecognitionTaskOutput < TencentCloud::Common::AbstractModel
|
|
2992
|
+
# @param Created: 创建任务成功
|
|
2993
|
+
# @type Created: Boolean
|
|
2994
|
+
# @param TaskId: 任务 ID
|
|
2995
|
+
# @type TaskId: String
|
|
2996
|
+
# @param ErrorCode: 错误码
|
|
2997
|
+
# @type ErrorCode: String
|
|
2998
|
+
# @param ErrorMessage: 错误消息
|
|
2999
|
+
# @type ErrorMessage: String
|
|
3000
|
+
|
|
3001
|
+
attr_accessor :Created, :TaskId, :ErrorCode, :ErrorMessage
|
|
3002
|
+
|
|
3003
|
+
def initialize(created=nil, taskid=nil, errorcode=nil, errormessage=nil)
|
|
3004
|
+
@Created = created
|
|
3005
|
+
@TaskId = taskid
|
|
3006
|
+
@ErrorCode = errorcode
|
|
3007
|
+
@ErrorMessage = errormessage
|
|
3008
|
+
end
|
|
3009
|
+
|
|
3010
|
+
def deserialize(params)
|
|
3011
|
+
@Created = params['Created']
|
|
3012
|
+
@TaskId = params['TaskId']
|
|
3013
|
+
@ErrorCode = params['ErrorCode']
|
|
3014
|
+
@ErrorMessage = params['ErrorMessage']
|
|
3015
|
+
end
|
|
3016
|
+
end
|
|
3017
|
+
|
|
2694
3018
|
# DeleteCloudStorageEvent请求参数结构体
|
|
2695
3019
|
class DeleteCloudStorageEventRequest < TencentCloud::Common::AbstractModel
|
|
2696
3020
|
# @param ProductId: 产品ID
|
|
@@ -3117,6 +3441,46 @@ module TencentCloud
|
|
|
3117
3441
|
end
|
|
3118
3442
|
end
|
|
3119
3443
|
|
|
3444
|
+
# DeleteTWeTalkProductConfigV2请求参数结构体
|
|
3445
|
+
class DeleteTWeTalkProductConfigV2Request < TencentCloud::Common::AbstractModel
|
|
3446
|
+
# @param ProductId: 产品ID
|
|
3447
|
+
# @type ProductId: String
|
|
3448
|
+
# @param DeviceName: 设备名称
|
|
3449
|
+
# @type DeviceName: String
|
|
3450
|
+
# @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
|
|
3451
|
+
# @type TargetLanguage: String
|
|
3452
|
+
|
|
3453
|
+
attr_accessor :ProductId, :DeviceName, :TargetLanguage
|
|
3454
|
+
|
|
3455
|
+
def initialize(productid=nil, devicename=nil, targetlanguage=nil)
|
|
3456
|
+
@ProductId = productid
|
|
3457
|
+
@DeviceName = devicename
|
|
3458
|
+
@TargetLanguage = targetlanguage
|
|
3459
|
+
end
|
|
3460
|
+
|
|
3461
|
+
def deserialize(params)
|
|
3462
|
+
@ProductId = params['ProductId']
|
|
3463
|
+
@DeviceName = params['DeviceName']
|
|
3464
|
+
@TargetLanguage = params['TargetLanguage']
|
|
3465
|
+
end
|
|
3466
|
+
end
|
|
3467
|
+
|
|
3468
|
+
# DeleteTWeTalkProductConfigV2返回参数结构体
|
|
3469
|
+
class DeleteTWeTalkProductConfigV2Response < TencentCloud::Common::AbstractModel
|
|
3470
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3471
|
+
# @type RequestId: String
|
|
3472
|
+
|
|
3473
|
+
attr_accessor :RequestId
|
|
3474
|
+
|
|
3475
|
+
def initialize(requestid=nil)
|
|
3476
|
+
@RequestId = requestid
|
|
3477
|
+
end
|
|
3478
|
+
|
|
3479
|
+
def deserialize(params)
|
|
3480
|
+
@RequestId = params['RequestId']
|
|
3481
|
+
end
|
|
3482
|
+
end
|
|
3483
|
+
|
|
3120
3484
|
# DeleteTopicPolicy请求参数结构体
|
|
3121
3485
|
class DeleteTopicPolicyRequest < TencentCloud::Common::AbstractModel
|
|
3122
3486
|
# @param ProductId: 产品ID
|
|
@@ -4814,77 +5178,6 @@ module TencentCloud
|
|
|
4814
5178
|
end
|
|
4815
5179
|
end
|
|
4816
5180
|
|
|
4817
|
-
# DescribeDeviceLocationSolve请求参数结构体
|
|
4818
|
-
class DescribeDeviceLocationSolveRequest < TencentCloud::Common::AbstractModel
|
|
4819
|
-
# @param ProductId: 产品ID
|
|
4820
|
-
# @type ProductId: String
|
|
4821
|
-
# @param DeviceName: 设备名称
|
|
4822
|
-
# @type DeviceName: String
|
|
4823
|
-
# @param LocationType: 定位解析类型,wifi或GNSSNavigation
|
|
4824
|
-
# @type LocationType: String
|
|
4825
|
-
# @param GNSSNavigation: LoRaEdge卫星导航电文
|
|
4826
|
-
# @type GNSSNavigation: String
|
|
4827
|
-
# @param WiFiInfo: wifi信息
|
|
4828
|
-
# @type WiFiInfo: Array
|
|
4829
|
-
|
|
4830
|
-
attr_accessor :ProductId, :DeviceName, :LocationType, :GNSSNavigation, :WiFiInfo
|
|
4831
|
-
|
|
4832
|
-
def initialize(productid=nil, devicename=nil, locationtype=nil, gnssnavigation=nil, wifiinfo=nil)
|
|
4833
|
-
@ProductId = productid
|
|
4834
|
-
@DeviceName = devicename
|
|
4835
|
-
@LocationType = locationtype
|
|
4836
|
-
@GNSSNavigation = gnssnavigation
|
|
4837
|
-
@WiFiInfo = wifiinfo
|
|
4838
|
-
end
|
|
4839
|
-
|
|
4840
|
-
def deserialize(params)
|
|
4841
|
-
@ProductId = params['ProductId']
|
|
4842
|
-
@DeviceName = params['DeviceName']
|
|
4843
|
-
@LocationType = params['LocationType']
|
|
4844
|
-
@GNSSNavigation = params['GNSSNavigation']
|
|
4845
|
-
unless params['WiFiInfo'].nil?
|
|
4846
|
-
@WiFiInfo = []
|
|
4847
|
-
params['WiFiInfo'].each do |i|
|
|
4848
|
-
wifiinfo_tmp = WifiInfo.new
|
|
4849
|
-
wifiinfo_tmp.deserialize(i)
|
|
4850
|
-
@WiFiInfo << wifiinfo_tmp
|
|
4851
|
-
end
|
|
4852
|
-
end
|
|
4853
|
-
end
|
|
4854
|
-
end
|
|
4855
|
-
|
|
4856
|
-
# DescribeDeviceLocationSolve返回参数结构体
|
|
4857
|
-
class DescribeDeviceLocationSolveResponse < TencentCloud::Common::AbstractModel
|
|
4858
|
-
# @param Longitude: 经度
|
|
4859
|
-
# @type Longitude: Float
|
|
4860
|
-
# @param Latitude: 纬度
|
|
4861
|
-
# @type Latitude: Float
|
|
4862
|
-
# @param LocationType: 类型
|
|
4863
|
-
# @type LocationType: String
|
|
4864
|
-
# @param Accuracy: 误差精度预估,单位为米
|
|
4865
|
-
# @type Accuracy: Float
|
|
4866
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4867
|
-
# @type RequestId: String
|
|
4868
|
-
|
|
4869
|
-
attr_accessor :Longitude, :Latitude, :LocationType, :Accuracy, :RequestId
|
|
4870
|
-
|
|
4871
|
-
def initialize(longitude=nil, latitude=nil, locationtype=nil, accuracy=nil, requestid=nil)
|
|
4872
|
-
@Longitude = longitude
|
|
4873
|
-
@Latitude = latitude
|
|
4874
|
-
@LocationType = locationtype
|
|
4875
|
-
@Accuracy = accuracy
|
|
4876
|
-
@RequestId = requestid
|
|
4877
|
-
end
|
|
4878
|
-
|
|
4879
|
-
def deserialize(params)
|
|
4880
|
-
@Longitude = params['Longitude']
|
|
4881
|
-
@Latitude = params['Latitude']
|
|
4882
|
-
@LocationType = params['LocationType']
|
|
4883
|
-
@Accuracy = params['Accuracy']
|
|
4884
|
-
@RequestId = params['RequestId']
|
|
4885
|
-
end
|
|
4886
|
-
end
|
|
4887
|
-
|
|
4888
5181
|
# DescribeDevicePackages请求参数结构体
|
|
4889
5182
|
class DescribeDevicePackagesRequest < TencentCloud::Common::AbstractModel
|
|
4890
5183
|
# @param ProductId: 产品ID
|
|
@@ -6793,8 +7086,8 @@ module TencentCloud
|
|
|
6793
7086
|
|
|
6794
7087
|
attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
|
|
6795
7088
|
extend Gem::Deprecate
|
|
6796
|
-
deprecate :ModelId, :none, 2025,
|
|
6797
|
-
deprecate :ModelId=, :none, 2025,
|
|
7089
|
+
deprecate :ModelId, :none, 2025, 11
|
|
7090
|
+
deprecate :ModelId=, :none, 2025, 11
|
|
6798
7091
|
|
|
6799
7092
|
def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
|
|
6800
7093
|
@ModelId = modelid
|
|
@@ -8510,8 +8803,8 @@ module TencentCloud
|
|
|
8510
8803
|
|
|
8511
8804
|
attr_accessor :MiniProgramAppId, :DeviceList
|
|
8512
8805
|
extend Gem::Deprecate
|
|
8513
|
-
deprecate :MiniProgramAppId, :none, 2025,
|
|
8514
|
-
deprecate :MiniProgramAppId=, :none, 2025,
|
|
8806
|
+
deprecate :MiniProgramAppId, :none, 2025, 11
|
|
8807
|
+
deprecate :MiniProgramAppId=, :none, 2025, 11
|
|
8515
8808
|
|
|
8516
8809
|
def initialize(miniprogramappid=nil, devicelist=nil)
|
|
8517
8810
|
@MiniProgramAppId = miniprogramappid
|
|
@@ -9340,6 +9633,123 @@ module TencentCloud
|
|
|
9340
9633
|
end
|
|
9341
9634
|
end
|
|
9342
9635
|
|
|
9636
|
+
# InvokeTWeSeeRecognitionTaskWithFile请求参数结构体
|
|
9637
|
+
class InvokeTWeSeeRecognitionTaskWithFileRequest < TencentCloud::Common::AbstractModel
|
|
9638
|
+
# @param ProductId: 产品ID
|
|
9639
|
+
# @type ProductId: String
|
|
9640
|
+
# @param DeviceName: 设备名称
|
|
9641
|
+
# @type DeviceName: String
|
|
9642
|
+
# @param InputBase64: 视频 / 图片文件的 Base64 编码字符串
|
|
9643
|
+
# @type InputBase64: String
|
|
9644
|
+
# @param ChannelId: 通道 ID
|
|
9645
|
+
# @type ChannelId: Integer
|
|
9646
|
+
# @param CustomId: 自定义事件 ID
|
|
9647
|
+
# @type CustomId: String
|
|
9648
|
+
# @param EnableSearch: 是否保存该事件使其可被搜索
|
|
9649
|
+
# @type EnableSearch: Boolean
|
|
9650
|
+
# @param StartTimeMs: 事件起始时间事件起始时间(毫秒级 UNIX 时间戳,若不传则默认为接口调用时间)
|
|
9651
|
+
# @type StartTimeMs: Integer
|
|
9652
|
+
# @param EndTimeMs: 事件结束时间事件起始时间(毫秒级 UNIX 时间戳,若不传则默认为接口调用时间)
|
|
9653
|
+
# @type EndTimeMs: Integer
|
|
9654
|
+
# @param Config: 算法配置
|
|
9655
|
+
# @type Config: String
|
|
9656
|
+
# @param IsCustomDevice: 是否自定义设备,为 true 时不检查设备存在性,默认为 false
|
|
9657
|
+
# @type IsCustomDevice: Boolean
|
|
9658
|
+
# @param InputType: 输入类型。可选值:
|
|
9659
|
+
|
|
9660
|
+
# - `video`:视频(默认值)
|
|
9661
|
+
# - `image`:图片
|
|
9662
|
+
# @type InputType: String
|
|
9663
|
+
# @param SummaryQOS: 摘要服务质量。可选值:
|
|
9664
|
+
|
|
9665
|
+
# - `minutely`:分钟级(默认值)
|
|
9666
|
+
# - `immediate`:立即
|
|
9667
|
+
# @type SummaryQOS: String
|
|
9668
|
+
# @param SummaryConfig: 摘要输出配置
|
|
9669
|
+
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
|
9670
|
+
# @param ServiceType: 算法类型,可能取值:
|
|
9671
|
+
# - `Summary`:视频/图片摘要
|
|
9672
|
+
# - `ObjectDetect`:目标检测
|
|
9673
|
+
# @type ServiceType: String
|
|
9674
|
+
# @param ObjectDetectConfig: 目标检测配置
|
|
9675
|
+
# @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
|
|
9676
|
+
|
|
9677
|
+
attr_accessor :ProductId, :DeviceName, :InputBase64, :ChannelId, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
|
|
9678
|
+
|
|
9679
|
+
def initialize(productid=nil, devicename=nil, inputbase64=nil, channelid=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil, servicetype=nil, objectdetectconfig=nil)
|
|
9680
|
+
@ProductId = productid
|
|
9681
|
+
@DeviceName = devicename
|
|
9682
|
+
@InputBase64 = inputbase64
|
|
9683
|
+
@ChannelId = channelid
|
|
9684
|
+
@CustomId = customid
|
|
9685
|
+
@EnableSearch = enablesearch
|
|
9686
|
+
@StartTimeMs = starttimems
|
|
9687
|
+
@EndTimeMs = endtimems
|
|
9688
|
+
@Config = config
|
|
9689
|
+
@IsCustomDevice = iscustomdevice
|
|
9690
|
+
@InputType = inputtype
|
|
9691
|
+
@SummaryQOS = summaryqos
|
|
9692
|
+
@SummaryConfig = summaryconfig
|
|
9693
|
+
@ServiceType = servicetype
|
|
9694
|
+
@ObjectDetectConfig = objectdetectconfig
|
|
9695
|
+
end
|
|
9696
|
+
|
|
9697
|
+
def deserialize(params)
|
|
9698
|
+
@ProductId = params['ProductId']
|
|
9699
|
+
@DeviceName = params['DeviceName']
|
|
9700
|
+
@InputBase64 = params['InputBase64']
|
|
9701
|
+
@ChannelId = params['ChannelId']
|
|
9702
|
+
@CustomId = params['CustomId']
|
|
9703
|
+
@EnableSearch = params['EnableSearch']
|
|
9704
|
+
@StartTimeMs = params['StartTimeMs']
|
|
9705
|
+
@EndTimeMs = params['EndTimeMs']
|
|
9706
|
+
@Config = params['Config']
|
|
9707
|
+
@IsCustomDevice = params['IsCustomDevice']
|
|
9708
|
+
@InputType = params['InputType']
|
|
9709
|
+
@SummaryQOS = params['SummaryQOS']
|
|
9710
|
+
unless params['SummaryConfig'].nil?
|
|
9711
|
+
@SummaryConfig = VisionSummaryConfig.new
|
|
9712
|
+
@SummaryConfig.deserialize(params['SummaryConfig'])
|
|
9713
|
+
end
|
|
9714
|
+
@ServiceType = params['ServiceType']
|
|
9715
|
+
unless params['ObjectDetectConfig'].nil?
|
|
9716
|
+
@ObjectDetectConfig = VisionObjectDetectConfig.new
|
|
9717
|
+
@ObjectDetectConfig.deserialize(params['ObjectDetectConfig'])
|
|
9718
|
+
end
|
|
9719
|
+
end
|
|
9720
|
+
end
|
|
9721
|
+
|
|
9722
|
+
# InvokeTWeSeeRecognitionTaskWithFile返回参数结构体
|
|
9723
|
+
class InvokeTWeSeeRecognitionTaskWithFileResponse < TencentCloud::Common::AbstractModel
|
|
9724
|
+
# @param TaskId: 任务 ID
|
|
9725
|
+
# @type TaskId: String
|
|
9726
|
+
# @param Completed: 任务是否执行完成
|
|
9727
|
+
# @type Completed: Boolean
|
|
9728
|
+
# @param Result: 语义理解任务结果(仅当 Completed 为 true 时包含该出参)
|
|
9729
|
+
# @type Result: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionRecognitionResult`
|
|
9730
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9731
|
+
# @type RequestId: String
|
|
9732
|
+
|
|
9733
|
+
attr_accessor :TaskId, :Completed, :Result, :RequestId
|
|
9734
|
+
|
|
9735
|
+
def initialize(taskid=nil, completed=nil, result=nil, requestid=nil)
|
|
9736
|
+
@TaskId = taskid
|
|
9737
|
+
@Completed = completed
|
|
9738
|
+
@Result = result
|
|
9739
|
+
@RequestId = requestid
|
|
9740
|
+
end
|
|
9741
|
+
|
|
9742
|
+
def deserialize(params)
|
|
9743
|
+
@TaskId = params['TaskId']
|
|
9744
|
+
@Completed = params['Completed']
|
|
9745
|
+
unless params['Result'].nil?
|
|
9746
|
+
@Result = VisionRecognitionResult.new
|
|
9747
|
+
@Result.deserialize(params['Result'])
|
|
9748
|
+
end
|
|
9749
|
+
@RequestId = params['RequestId']
|
|
9750
|
+
end
|
|
9751
|
+
end
|
|
9752
|
+
|
|
9343
9753
|
# InvokeVideosKeywordsAnalyzer请求参数结构体
|
|
9344
9754
|
class InvokeVideosKeywordsAnalyzerRequest < TencentCloud::Common::AbstractModel
|
|
9345
9755
|
# @param ProductId: 产品ID
|
|
@@ -9400,6 +9810,41 @@ module TencentCloud
|
|
|
9400
9810
|
end
|
|
9401
9811
|
end
|
|
9402
9812
|
|
|
9813
|
+
# 批量同步执行 TWeSee 语义理解任务的响应
|
|
9814
|
+
class InvokeVisionRecognitionTaskOutput < TencentCloud::Common::AbstractModel
|
|
9815
|
+
# @param Completed: 任务是否已完成
|
|
9816
|
+
# @type Completed: Boolean
|
|
9817
|
+
# @param TaskId: 任务 ID
|
|
9818
|
+
# @type TaskId: String
|
|
9819
|
+
# @param ErrorCode: 错误码
|
|
9820
|
+
# @type ErrorCode: String
|
|
9821
|
+
# @param ErrorMessage: 错误消息
|
|
9822
|
+
# @type ErrorMessage: String
|
|
9823
|
+
# @param Result: 任务结果
|
|
9824
|
+
# @type Result: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionRecognitionResult`
|
|
9825
|
+
|
|
9826
|
+
attr_accessor :Completed, :TaskId, :ErrorCode, :ErrorMessage, :Result
|
|
9827
|
+
|
|
9828
|
+
def initialize(completed=nil, taskid=nil, errorcode=nil, errormessage=nil, result=nil)
|
|
9829
|
+
@Completed = completed
|
|
9830
|
+
@TaskId = taskid
|
|
9831
|
+
@ErrorCode = errorcode
|
|
9832
|
+
@ErrorMessage = errormessage
|
|
9833
|
+
@Result = result
|
|
9834
|
+
end
|
|
9835
|
+
|
|
9836
|
+
def deserialize(params)
|
|
9837
|
+
@Completed = params['Completed']
|
|
9838
|
+
@TaskId = params['TaskId']
|
|
9839
|
+
@ErrorCode = params['ErrorCode']
|
|
9840
|
+
@ErrorMessage = params['ErrorMessage']
|
|
9841
|
+
unless params['Result'].nil?
|
|
9842
|
+
@Result = VisionRecognitionResult.new
|
|
9843
|
+
@Result.deserialize(params['Result'])
|
|
9844
|
+
end
|
|
9845
|
+
end
|
|
9846
|
+
end
|
|
9847
|
+
|
|
9403
9848
|
# 应用信息
|
|
9404
9849
|
class IotApplication < TencentCloud::Common::AbstractModel
|
|
9405
9850
|
# @param IotAppID: 应用 ID
|
|
@@ -12346,8 +12791,8 @@ module TencentCloud
|
|
|
12346
12791
|
|
|
12347
12792
|
attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
|
|
12348
12793
|
extend Gem::Deprecate
|
|
12349
|
-
deprecate :ModelId, :none, 2025,
|
|
12350
|
-
deprecate :ModelId=, :none, 2025,
|
|
12794
|
+
deprecate :ModelId, :none, 2025, 11
|
|
12795
|
+
deprecate :ModelId=, :none, 2025, 11
|
|
12351
12796
|
|
|
12352
12797
|
def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
|
|
12353
12798
|
@ModelId = modelid
|
|
@@ -12377,10 +12822,10 @@ module TencentCloud
|
|
|
12377
12822
|
|
|
12378
12823
|
attr_accessor :Sn, :ModelId, :ActiveNum
|
|
12379
12824
|
extend Gem::Deprecate
|
|
12380
|
-
deprecate :ModelId, :none, 2025,
|
|
12381
|
-
deprecate :ModelId=, :none, 2025,
|
|
12382
|
-
deprecate :ActiveNum, :none, 2025,
|
|
12383
|
-
deprecate :ActiveNum=, :none, 2025,
|
|
12825
|
+
deprecate :ModelId, :none, 2025, 11
|
|
12826
|
+
deprecate :ModelId=, :none, 2025, 11
|
|
12827
|
+
deprecate :ActiveNum, :none, 2025, 11
|
|
12828
|
+
deprecate :ActiveNum=, :none, 2025, 11
|
|
12384
12829
|
|
|
12385
12830
|
def initialize(sn=nil, modelid=nil, activenum=nil)
|
|
12386
12831
|
@Sn = sn
|
|
@@ -13612,6 +14057,54 @@ module TencentCloud
|
|
|
13612
14057
|
end
|
|
13613
14058
|
end
|
|
13614
14059
|
|
|
14060
|
+
# TWeSee 语义理解自定义标签请求
|
|
14061
|
+
class VisionCustomDetectQuery < TencentCloud::Common::AbstractModel
|
|
14062
|
+
# @param Key: 自定义标签的标识符
|
|
14063
|
+
# @type Key: String
|
|
14064
|
+
# @param Query: 自定义标签的描述文本
|
|
14065
|
+
# @type Query: String
|
|
14066
|
+
|
|
14067
|
+
attr_accessor :Key, :Query
|
|
14068
|
+
|
|
14069
|
+
def initialize(key=nil, query=nil)
|
|
14070
|
+
@Key = key
|
|
14071
|
+
@Query = query
|
|
14072
|
+
end
|
|
14073
|
+
|
|
14074
|
+
def deserialize(params)
|
|
14075
|
+
@Key = params['Key']
|
|
14076
|
+
@Query = params['Query']
|
|
14077
|
+
end
|
|
14078
|
+
end
|
|
14079
|
+
|
|
14080
|
+
# 目标检测算法检测到的目标详情
|
|
14081
|
+
class VisionDetectedObject < TencentCloud::Common::AbstractModel
|
|
14082
|
+
# @param Time: 目标出现的媒体时间戳(以图片为输入时始终取值 0)
|
|
14083
|
+
# @type Time: Float
|
|
14084
|
+
# @param ClassName: 目标类别名
|
|
14085
|
+
# @type ClassName: String
|
|
14086
|
+
# @param BoundingBox: 目标边界框(坐标顺序为 x1, y1, x2, y2)
|
|
14087
|
+
# @type BoundingBox: Array
|
|
14088
|
+
# @param Confidence: 置信度(取值范围 0.0 至 1.0)
|
|
14089
|
+
# @type Confidence: Float
|
|
14090
|
+
|
|
14091
|
+
attr_accessor :Time, :ClassName, :BoundingBox, :Confidence
|
|
14092
|
+
|
|
14093
|
+
def initialize(time=nil, classname=nil, boundingbox=nil, confidence=nil)
|
|
14094
|
+
@Time = time
|
|
14095
|
+
@ClassName = classname
|
|
14096
|
+
@BoundingBox = boundingbox
|
|
14097
|
+
@Confidence = confidence
|
|
14098
|
+
end
|
|
14099
|
+
|
|
14100
|
+
def deserialize(params)
|
|
14101
|
+
@Time = params['Time']
|
|
14102
|
+
@ClassName = params['ClassName']
|
|
14103
|
+
@BoundingBox = params['BoundingBox']
|
|
14104
|
+
@Confidence = params['Confidence']
|
|
14105
|
+
end
|
|
14106
|
+
end
|
|
14107
|
+
|
|
13615
14108
|
# 目标检测配置
|
|
13616
14109
|
class VisionObjectDetectConfig < TencentCloud::Common::AbstractModel
|
|
13617
14110
|
# @param DetectTypes: 检测类别,可选值:
|
|
@@ -13654,15 +14147,18 @@ module TencentCloud
|
|
|
13654
14147
|
# - `DownloadFailed`:下载视频/图片文件失败
|
|
13655
14148
|
# - `ReadFailed`:读取视频/图片文件失败
|
|
13656
14149
|
# @type ErrorCode: String
|
|
14150
|
+
# @param DetectedObjects: 目标检测算法检测到的目标列表
|
|
14151
|
+
# @type DetectedObjects: Array
|
|
13657
14152
|
|
|
13658
|
-
attr_accessor :Status, :DetectedClassifications, :Summary, :AlternativeSummary, :ErrorCode
|
|
14153
|
+
attr_accessor :Status, :DetectedClassifications, :Summary, :AlternativeSummary, :ErrorCode, :DetectedObjects
|
|
13659
14154
|
|
|
13660
|
-
def initialize(status=nil, detectedclassifications=nil, summary=nil, alternativesummary=nil, errorcode=nil)
|
|
14155
|
+
def initialize(status=nil, detectedclassifications=nil, summary=nil, alternativesummary=nil, errorcode=nil, detectedobjects=nil)
|
|
13661
14156
|
@Status = status
|
|
13662
14157
|
@DetectedClassifications = detectedclassifications
|
|
13663
14158
|
@Summary = summary
|
|
13664
14159
|
@AlternativeSummary = alternativesummary
|
|
13665
14160
|
@ErrorCode = errorcode
|
|
14161
|
+
@DetectedObjects = detectedobjects
|
|
13666
14162
|
end
|
|
13667
14163
|
|
|
13668
14164
|
def deserialize(params)
|
|
@@ -13671,6 +14167,14 @@ module TencentCloud
|
|
|
13671
14167
|
@Summary = params['Summary']
|
|
13672
14168
|
@AlternativeSummary = params['AlternativeSummary']
|
|
13673
14169
|
@ErrorCode = params['ErrorCode']
|
|
14170
|
+
unless params['DetectedObjects'].nil?
|
|
14171
|
+
@DetectedObjects = []
|
|
14172
|
+
params['DetectedObjects'].each do |i|
|
|
14173
|
+
visiondetectedobject_tmp = VisionDetectedObject.new
|
|
14174
|
+
visiondetectedobject_tmp.deserialize(i)
|
|
14175
|
+
@DetectedObjects << visiondetectedobject_tmp
|
|
14176
|
+
end
|
|
14177
|
+
end
|
|
13674
14178
|
end
|
|
13675
14179
|
end
|
|
13676
14180
|
|
|
@@ -13758,27 +14262,25 @@ module TencentCloud
|
|
|
13758
14262
|
|
|
13759
14263
|
# 视频摘要配置
|
|
13760
14264
|
class VisionSummaryConfig < TencentCloud::Common::AbstractModel
|
|
13761
|
-
# @param OutputLang:
|
|
13762
|
-
|
|
13763
|
-
#
|
|
13764
|
-
#
|
|
13765
|
-
#
|
|
13766
|
-
#
|
|
13767
|
-
#
|
|
13768
|
-
#
|
|
13769
|
-
# th 泰语
|
|
14265
|
+
# @param OutputLang: 主输出语言,可选值包括:
|
|
14266
|
+
# - `zh` 中文(默认值)
|
|
14267
|
+
# - `en` 英语
|
|
14268
|
+
# - `ja` 日语
|
|
14269
|
+
# - `ko` 韩文
|
|
14270
|
+
# - `pt-BR` 葡萄牙语(巴西)
|
|
14271
|
+
# - `th` 泰语
|
|
14272
|
+
# - `ms` 马来语
|
|
13770
14273
|
# @type OutputLang: String
|
|
13771
|
-
# @param AlternativeOutputLang:
|
|
13772
|
-
|
|
13773
|
-
#
|
|
13774
|
-
#
|
|
13775
|
-
#
|
|
13776
|
-
#
|
|
13777
|
-
#
|
|
13778
|
-
#
|
|
13779
|
-
# th 泰语
|
|
14274
|
+
# @param AlternativeOutputLang: 次选输出语言,可选值包括:
|
|
14275
|
+
# - `zh` 中文
|
|
14276
|
+
# - `en` 英语
|
|
14277
|
+
# - `ja` 日语
|
|
14278
|
+
# - `ko` 韩文
|
|
14279
|
+
# - `pt-BR` 葡萄牙语(巴西)
|
|
14280
|
+
# - `th` 泰语
|
|
14281
|
+
# - `ms` 马来语
|
|
13780
14282
|
# @type AlternativeOutputLang: String
|
|
13781
|
-
# @param MultiCameraLayout:
|
|
14283
|
+
# @param MultiCameraLayout: 多摄像头布局定义。可选值包括:
|
|
13782
14284
|
|
|
13783
14285
|
# - 单摄(默认值):`Single`
|
|
13784
14286
|
|
|
@@ -13794,19 +14296,106 @@ module TencentCloud
|
|
|
13794
14296
|
# - 三摄(纵向排列)- 画面1+3:`Vertical,Num=3,Index=0;2`
|
|
13795
14297
|
# - 三摄(纵向排列)- 画面2+3:`Vertical,Num=3,Index=1;2`
|
|
13796
14298
|
# @type MultiCameraLayout: String
|
|
14299
|
+
# @param DetectTypes: 拓展的目标及事件检测类别。可选值包括:
|
|
14300
|
+
|
|
14301
|
+
# **通用事件标签**
|
|
14302
|
+
# - `person_enter` 有人进入
|
|
14303
|
+
# - `vehicle_entering` 车辆进入
|
|
14304
|
+
# - `vehicle_parking` 车辆停靠
|
|
14305
|
+
# - `pet` 有宠物
|
|
14306
|
+
# - `no_signal` 视频画面异常(无信号等)
|
|
14307
|
+
|
|
14308
|
+
# **看家护院**
|
|
14309
|
+
# - `person_climbing_fence` 有人翻围墙
|
|
14310
|
+
# - `door_window_open` 门窗被开启
|
|
14311
|
+
# - `person_carrying_object` 有人搬运物品
|
|
14312
|
+
|
|
14313
|
+
# **商铺看管**
|
|
14314
|
+
# - `person_at_cashier` 有人在收银台
|
|
14315
|
+
# - `person_taking_goods` 有人拿商品
|
|
14316
|
+
# - `person_night_moving` 夜间有人移动
|
|
14317
|
+
|
|
14318
|
+
# **公共及防火安全**
|
|
14319
|
+
# - `person_stealing` 有人偷盗
|
|
14320
|
+
# - `crowd` 多人聚集
|
|
14321
|
+
# - `smoking` 有人吸烟
|
|
14322
|
+
# - `safety_fire` 明火
|
|
14323
|
+
# - `safety_smoke` 浓烟
|
|
14324
|
+
# - `fireworks` 有人燃放烟花爆竹
|
|
14325
|
+
# - `knife` 有人持刀
|
|
14326
|
+
# - `gun` 有人持枪
|
|
14327
|
+
# - `fight` 有人打架
|
|
14328
|
+
# - `hurt` 有人受伤流血
|
|
14329
|
+
|
|
14330
|
+
# **养殖看护**
|
|
14331
|
+
# - `person_feeding_animal` 有人投喂牲畜
|
|
14332
|
+
# - `animal_lying` 有动物躺地上
|
|
14333
|
+
# - `animal_wild_intrusion` 野生动物入侵
|
|
14334
|
+
|
|
14335
|
+
# **果园农田**
|
|
14336
|
+
# - `person_picking_fruit` 有人采摘果实
|
|
14337
|
+
# - `person_carrying_bag` 有人携带包裹
|
|
14338
|
+
|
|
14339
|
+
# **鱼塘看管**
|
|
14340
|
+
# - `fishing` 有人钓鱼
|
|
14341
|
+
# - `net_fishing` 有人撒网
|
|
14342
|
+
# - `person_carrying_fishing_gear` 有人携带渔具
|
|
14343
|
+
# - `loitering_near_water` 有人岸边逗留
|
|
14344
|
+
# - `throwing_into_water` 有人投掷物品
|
|
14345
|
+
|
|
14346
|
+
# **婴儿看护**
|
|
14347
|
+
# - `baby` 有婴儿
|
|
14348
|
+
# - `baby_dropping` 婴儿跌落床铺
|
|
14349
|
+
# - `person_holding_baby` 有人抱起婴儿
|
|
14350
|
+
# - `baby_rolling` 婴儿翻滚
|
|
14351
|
+
# - `baby_crying` 婴儿哭闹
|
|
14352
|
+
|
|
14353
|
+
# **儿童看护**
|
|
14354
|
+
# - `child` 有小孩
|
|
14355
|
+
# - `child_falling` 小孩摔倒
|
|
14356
|
+
# - `child_entering_kitchen` 小孩进入厨房
|
|
14357
|
+
# - `child_climbing_window` 小孩攀爬室内窗户
|
|
14358
|
+
# - `child_near_water` 小孩靠近水域
|
|
14359
|
+
|
|
14360
|
+
# **老人看护**
|
|
14361
|
+
# - `elderly` 有老人
|
|
14362
|
+
# - `elderly_falling` 老人摔倒
|
|
14363
|
+
# - `elderly_eating` 老人用餐
|
|
14364
|
+
# - `elderly_using_stove` 老人使用灶具
|
|
14365
|
+
|
|
14366
|
+
# **宠物看护**
|
|
14367
|
+
# - `pet_eating` 宠物进食
|
|
14368
|
+
# - `pet_damaging` 宠物损坏家具
|
|
14369
|
+
# - `pet_barking` 宠物吠叫
|
|
14370
|
+
# - `pet_scratching_door` 宠物挠门
|
|
14371
|
+
|
|
14372
|
+
# @type DetectTypes: Array
|
|
14373
|
+
# @param CustomDetectQueries: 自定义检测标签
|
|
14374
|
+
# @type CustomDetectQueries: Array
|
|
13797
14375
|
|
|
13798
|
-
attr_accessor :OutputLang, :AlternativeOutputLang, :MultiCameraLayout
|
|
14376
|
+
attr_accessor :OutputLang, :AlternativeOutputLang, :MultiCameraLayout, :DetectTypes, :CustomDetectQueries
|
|
13799
14377
|
|
|
13800
|
-
def initialize(outputlang=nil, alternativeoutputlang=nil, multicameralayout=nil)
|
|
14378
|
+
def initialize(outputlang=nil, alternativeoutputlang=nil, multicameralayout=nil, detecttypes=nil, customdetectqueries=nil)
|
|
13801
14379
|
@OutputLang = outputlang
|
|
13802
14380
|
@AlternativeOutputLang = alternativeoutputlang
|
|
13803
14381
|
@MultiCameraLayout = multicameralayout
|
|
14382
|
+
@DetectTypes = detecttypes
|
|
14383
|
+
@CustomDetectQueries = customdetectqueries
|
|
13804
14384
|
end
|
|
13805
14385
|
|
|
13806
14386
|
def deserialize(params)
|
|
13807
14387
|
@OutputLang = params['OutputLang']
|
|
13808
14388
|
@AlternativeOutputLang = params['AlternativeOutputLang']
|
|
13809
14389
|
@MultiCameraLayout = params['MultiCameraLayout']
|
|
14390
|
+
@DetectTypes = params['DetectTypes']
|
|
14391
|
+
unless params['CustomDetectQueries'].nil?
|
|
14392
|
+
@CustomDetectQueries = []
|
|
14393
|
+
params['CustomDetectQueries'].each do |i|
|
|
14394
|
+
visioncustomdetectquery_tmp = VisionCustomDetectQuery.new
|
|
14395
|
+
visioncustomdetectquery_tmp.deserialize(i)
|
|
14396
|
+
@CustomDetectQueries << visioncustomdetectquery_tmp
|
|
14397
|
+
end
|
|
14398
|
+
end
|
|
13810
14399
|
end
|
|
13811
14400
|
end
|
|
13812
14401
|
|
|
@@ -13857,26 +14446,6 @@ module TencentCloud
|
|
|
13857
14446
|
end
|
|
13858
14447
|
end
|
|
13859
14448
|
|
|
13860
|
-
# wifi定位信息
|
|
13861
|
-
class WifiInfo < TencentCloud::Common::AbstractModel
|
|
13862
|
-
# @param MAC: mac地址
|
|
13863
|
-
# @type MAC: String
|
|
13864
|
-
# @param RSSI: 信号强度
|
|
13865
|
-
# @type RSSI: Integer
|
|
13866
|
-
|
|
13867
|
-
attr_accessor :MAC, :RSSI
|
|
13868
|
-
|
|
13869
|
-
def initialize(mac=nil, rssi=nil)
|
|
13870
|
-
@MAC = mac
|
|
13871
|
-
@RSSI = rssi
|
|
13872
|
-
end
|
|
13873
|
-
|
|
13874
|
-
def deserialize(params)
|
|
13875
|
-
@MAC = params['MAC']
|
|
13876
|
-
@RSSI = params['RSSI']
|
|
13877
|
-
end
|
|
13878
|
-
end
|
|
13879
|
-
|
|
13880
14449
|
end
|
|
13881
14450
|
end
|
|
13882
14451
|
end
|
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.1170
|
|
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-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/tencentcloud-sdk-iotexplorer.rb
|
|
37
|
-
- lib/v20190423/models.rb
|
|
38
36
|
- lib/v20190423/client.rb
|
|
37
|
+
- lib/v20190423/models.rb
|
|
38
|
+
- lib/tencentcloud-sdk-iotexplorer.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|