tencentcloud-sdk-iotexplorer 3.0.1175 → 3.0.1210
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 +24 -26
- data/lib/v20190423/models.rb +81 -51
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5a7f8d2eb9a03ace92e50094d0e6c1fa14342d2
|
|
4
|
+
data.tar.gz: 91cb21812c84e1220ecfb1821e5f8204428f9bad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34be3dc1cc226a59189bc588d40f760d902ddfab9396be32ffc0320c726e188327eb986ee591c974891caf3f1382a02c444daba474a2fb48262ed4e84f882406
|
|
7
|
+
data.tar.gz: 665a3dd93c16dfb026bfba4e4592ef999d272f7ecf897cf3deb102a781b7d9c7ebbadc3120c16cd494b22fd7ac8942bc630ee8919c220dc05a08b1c9100c94b4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1210
|
data/lib/v20190423/client.rb
CHANGED
|
@@ -269,32 +269,6 @@ module TencentCloud
|
|
|
269
269
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
270
270
|
end
|
|
271
271
|
|
|
272
|
-
# 业务已下线
|
|
273
|
-
|
|
274
|
-
# 取消分配
|
|
275
|
-
|
|
276
|
-
# @param request: Request instance for CancelAssignTWeCallLicense.
|
|
277
|
-
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::CancelAssignTWeCallLicenseRequest`
|
|
278
|
-
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::CancelAssignTWeCallLicenseResponse`
|
|
279
|
-
def CancelAssignTWeCallLicense(request)
|
|
280
|
-
body = send_request('CancelAssignTWeCallLicense', request.serialize)
|
|
281
|
-
response = JSON.parse(body)
|
|
282
|
-
if response['Response'].key?('Error') == false
|
|
283
|
-
model = CancelAssignTWeCallLicenseResponse.new
|
|
284
|
-
model.deserialize(response['Response'])
|
|
285
|
-
model
|
|
286
|
-
else
|
|
287
|
-
code = response['Response']['Error']['Code']
|
|
288
|
-
message = response['Response']['Error']['Message']
|
|
289
|
-
reqid = response['Response']['RequestId']
|
|
290
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
291
|
-
end
|
|
292
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
293
|
-
raise e
|
|
294
|
-
rescue StandardError => e
|
|
295
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
296
|
-
end
|
|
297
|
-
|
|
298
272
|
# p2p路线切换(此接口目前处于内测接口,可以联系申请加白 )
|
|
299
273
|
|
|
300
274
|
# @param request: Request instance for ChangeP2PRoute.
|
|
@@ -511,6 +485,30 @@ module TencentCloud
|
|
|
511
485
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
512
486
|
end
|
|
513
487
|
|
|
488
|
+
# 创建设备SDP应答
|
|
489
|
+
|
|
490
|
+
# @param request: Request instance for CreateDeviceSDPAnswer.
|
|
491
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::CreateDeviceSDPAnswerRequest`
|
|
492
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::CreateDeviceSDPAnswerResponse`
|
|
493
|
+
def CreateDeviceSDPAnswer(request)
|
|
494
|
+
body = send_request('CreateDeviceSDPAnswer', request.serialize)
|
|
495
|
+
response = JSON.parse(body)
|
|
496
|
+
if response['Response'].key?('Error') == false
|
|
497
|
+
model = CreateDeviceSDPAnswerResponse.new
|
|
498
|
+
model.deserialize(response['Response'])
|
|
499
|
+
model
|
|
500
|
+
else
|
|
501
|
+
code = response['Response']['Error']['Code']
|
|
502
|
+
message = response['Response']['Error']['Message']
|
|
503
|
+
reqid = response['Response']['RequestId']
|
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
505
|
+
end
|
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
507
|
+
raise e
|
|
508
|
+
rescue StandardError => e
|
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
510
|
+
end
|
|
511
|
+
|
|
514
512
|
# 创建外部视频 AI 分析任务
|
|
515
513
|
|
|
516
514
|
# @param request: Request instance for CreateExternalSourceAIServiceTask.
|
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,
|
|
104
|
-
deprecate :MiniProgramAppId=, :none,
|
|
103
|
+
deprecate :MiniProgramAppId, :none, 2026, 1
|
|
104
|
+
deprecate :MiniProgramAppId=, :none, 2026, 1
|
|
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,
|
|
140
|
-
deprecate :DeviceList=, :none,
|
|
139
|
+
deprecate :DeviceList, :none, 2026, 1
|
|
140
|
+
deprecate :DeviceList=, :none, 2026, 1
|
|
141
141
|
|
|
142
142
|
def initialize(devicelist=nil, failurelist=nil, successlist=nil, requestid=nil)
|
|
143
143
|
@DeviceList = devicelist
|
|
@@ -847,38 +847,6 @@ module TencentCloud
|
|
|
847
847
|
end
|
|
848
848
|
end
|
|
849
849
|
|
|
850
|
-
# CancelAssignTWeCallLicense请求参数结构体
|
|
851
|
-
class CancelAssignTWeCallLicenseRequest < TencentCloud::Common::AbstractModel
|
|
852
|
-
# @param PkgId: 订单号
|
|
853
|
-
# @type PkgId: String
|
|
854
|
-
|
|
855
|
-
attr_accessor :PkgId
|
|
856
|
-
|
|
857
|
-
def initialize(pkgid=nil)
|
|
858
|
-
@PkgId = pkgid
|
|
859
|
-
end
|
|
860
|
-
|
|
861
|
-
def deserialize(params)
|
|
862
|
-
@PkgId = params['PkgId']
|
|
863
|
-
end
|
|
864
|
-
end
|
|
865
|
-
|
|
866
|
-
# CancelAssignTWeCallLicense返回参数结构体
|
|
867
|
-
class CancelAssignTWeCallLicenseResponse < TencentCloud::Common::AbstractModel
|
|
868
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
869
|
-
# @type RequestId: String
|
|
870
|
-
|
|
871
|
-
attr_accessor :RequestId
|
|
872
|
-
|
|
873
|
-
def initialize(requestid=nil)
|
|
874
|
-
@RequestId = requestid
|
|
875
|
-
end
|
|
876
|
-
|
|
877
|
-
def deserialize(params)
|
|
878
|
-
@RequestId = params['RequestId']
|
|
879
|
-
end
|
|
880
|
-
end
|
|
881
|
-
|
|
882
850
|
# ChangeP2PRoute请求参数结构体
|
|
883
851
|
class ChangeP2PRouteRequest < TencentCloud::Common::AbstractModel
|
|
884
852
|
# @param ProductId: 产品ID
|
|
@@ -1775,6 +1743,50 @@ module TencentCloud
|
|
|
1775
1743
|
end
|
|
1776
1744
|
end
|
|
1777
1745
|
|
|
1746
|
+
# CreateDeviceSDPAnswer请求参数结构体
|
|
1747
|
+
class CreateDeviceSDPAnswerRequest < TencentCloud::Common::AbstractModel
|
|
1748
|
+
# @param ProductId: 产品ID
|
|
1749
|
+
# @type ProductId: String
|
|
1750
|
+
# @param DeviceName: 设备名称
|
|
1751
|
+
# @type DeviceName: String
|
|
1752
|
+
# @param SDPOffer: SDP提议
|
|
1753
|
+
# @type SDPOffer: String
|
|
1754
|
+
|
|
1755
|
+
attr_accessor :ProductId, :DeviceName, :SDPOffer
|
|
1756
|
+
|
|
1757
|
+
def initialize(productid=nil, devicename=nil, sdpoffer=nil)
|
|
1758
|
+
@ProductId = productid
|
|
1759
|
+
@DeviceName = devicename
|
|
1760
|
+
@SDPOffer = sdpoffer
|
|
1761
|
+
end
|
|
1762
|
+
|
|
1763
|
+
def deserialize(params)
|
|
1764
|
+
@ProductId = params['ProductId']
|
|
1765
|
+
@DeviceName = params['DeviceName']
|
|
1766
|
+
@SDPOffer = params['SDPOffer']
|
|
1767
|
+
end
|
|
1768
|
+
end
|
|
1769
|
+
|
|
1770
|
+
# CreateDeviceSDPAnswer返回参数结构体
|
|
1771
|
+
class CreateDeviceSDPAnswerResponse < TencentCloud::Common::AbstractModel
|
|
1772
|
+
# @param SDPAnswer: SDP应答
|
|
1773
|
+
# @type SDPAnswer: String
|
|
1774
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1775
|
+
# @type RequestId: String
|
|
1776
|
+
|
|
1777
|
+
attr_accessor :SDPAnswer, :RequestId
|
|
1778
|
+
|
|
1779
|
+
def initialize(sdpanswer=nil, requestid=nil)
|
|
1780
|
+
@SDPAnswer = sdpanswer
|
|
1781
|
+
@RequestId = requestid
|
|
1782
|
+
end
|
|
1783
|
+
|
|
1784
|
+
def deserialize(params)
|
|
1785
|
+
@SDPAnswer = params['SDPAnswer']
|
|
1786
|
+
@RequestId = params['RequestId']
|
|
1787
|
+
end
|
|
1788
|
+
end
|
|
1789
|
+
|
|
1778
1790
|
# CreateExternalSourceAIServiceTask请求参数结构体
|
|
1779
1791
|
class CreateExternalSourceAIServiceTaskRequest < TencentCloud::Common::AbstractModel
|
|
1780
1792
|
# @param ProductId: 产品 ID
|
|
@@ -7281,8 +7293,8 @@ module TencentCloud
|
|
|
7281
7293
|
|
|
7282
7294
|
attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
|
|
7283
7295
|
extend Gem::Deprecate
|
|
7284
|
-
deprecate :ModelId, :none,
|
|
7285
|
-
deprecate :ModelId=, :none,
|
|
7296
|
+
deprecate :ModelId, :none, 2026, 1
|
|
7297
|
+
deprecate :ModelId=, :none, 2026, 1
|
|
7286
7298
|
|
|
7287
7299
|
def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
|
|
7288
7300
|
@ModelId = modelid
|
|
@@ -8998,8 +9010,8 @@ module TencentCloud
|
|
|
8998
9010
|
|
|
8999
9011
|
attr_accessor :MiniProgramAppId, :DeviceList
|
|
9000
9012
|
extend Gem::Deprecate
|
|
9001
|
-
deprecate :MiniProgramAppId, :none,
|
|
9002
|
-
deprecate :MiniProgramAppId=, :none,
|
|
9013
|
+
deprecate :MiniProgramAppId, :none, 2026, 1
|
|
9014
|
+
deprecate :MiniProgramAppId=, :none, 2026, 1
|
|
9003
9015
|
|
|
9004
9016
|
def initialize(miniprogramappid=nil, devicelist=nil)
|
|
9005
9017
|
@MiniProgramAppId = miniprogramappid
|
|
@@ -9050,6 +9062,8 @@ module TencentCloud
|
|
|
9050
9062
|
class GetTWeTalkAIBotListRequest < TencentCloud::Common::AbstractModel
|
|
9051
9063
|
# @param BotId: 智能体ID
|
|
9052
9064
|
# @type BotId: String
|
|
9065
|
+
# @param Name: 智能体名称
|
|
9066
|
+
# @type Name: String
|
|
9053
9067
|
# @param ProductId: 产品ID
|
|
9054
9068
|
# @type ProductId: String
|
|
9055
9069
|
# @param InstanceId: 实例ID
|
|
@@ -9061,10 +9075,11 @@ module TencentCloud
|
|
|
9061
9075
|
# @param Limit: 10
|
|
9062
9076
|
# @type Limit: Integer
|
|
9063
9077
|
|
|
9064
|
-
attr_accessor :BotId, :ProductId, :InstanceId, :IncludeCredentials, :Offset, :Limit
|
|
9078
|
+
attr_accessor :BotId, :Name, :ProductId, :InstanceId, :IncludeCredentials, :Offset, :Limit
|
|
9065
9079
|
|
|
9066
|
-
def initialize(botid=nil, productid=nil, instanceid=nil, includecredentials=nil, offset=nil, limit=nil)
|
|
9080
|
+
def initialize(botid=nil, name=nil, productid=nil, instanceid=nil, includecredentials=nil, offset=nil, limit=nil)
|
|
9067
9081
|
@BotId = botid
|
|
9082
|
+
@Name = name
|
|
9068
9083
|
@ProductId = productid
|
|
9069
9084
|
@InstanceId = instanceid
|
|
9070
9085
|
@IncludeCredentials = includecredentials
|
|
@@ -9074,6 +9089,7 @@ module TencentCloud
|
|
|
9074
9089
|
|
|
9075
9090
|
def deserialize(params)
|
|
9076
9091
|
@BotId = params['BotId']
|
|
9092
|
+
@Name = params['Name']
|
|
9077
9093
|
@ProductId = params['ProductId']
|
|
9078
9094
|
@InstanceId = params['InstanceId']
|
|
9079
9095
|
@IncludeCredentials = params['IncludeCredentials']
|
|
@@ -13125,8 +13141,8 @@ module TencentCloud
|
|
|
13125
13141
|
|
|
13126
13142
|
attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
|
|
13127
13143
|
extend Gem::Deprecate
|
|
13128
|
-
deprecate :ModelId, :none,
|
|
13129
|
-
deprecate :ModelId=, :none,
|
|
13144
|
+
deprecate :ModelId, :none, 2026, 1
|
|
13145
|
+
deprecate :ModelId=, :none, 2026, 1
|
|
13130
13146
|
|
|
13131
13147
|
def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
|
|
13132
13148
|
@ModelId = modelid
|
|
@@ -13156,10 +13172,10 @@ module TencentCloud
|
|
|
13156
13172
|
|
|
13157
13173
|
attr_accessor :Sn, :ModelId, :ActiveNum
|
|
13158
13174
|
extend Gem::Deprecate
|
|
13159
|
-
deprecate :ModelId, :none,
|
|
13160
|
-
deprecate :ModelId=, :none,
|
|
13161
|
-
deprecate :ActiveNum, :none,
|
|
13162
|
-
deprecate :ActiveNum=, :none,
|
|
13175
|
+
deprecate :ModelId, :none, 2026, 1
|
|
13176
|
+
deprecate :ModelId=, :none, 2026, 1
|
|
13177
|
+
deprecate :ActiveNum, :none, 2026, 1
|
|
13178
|
+
deprecate :ActiveNum=, :none, 2026, 1
|
|
13163
13179
|
|
|
13164
13180
|
def initialize(sn=nil, modelid=nil, activenum=nil)
|
|
13165
13181
|
@Sn = sn
|
|
@@ -13228,10 +13244,15 @@ module TencentCloud
|
|
|
13228
13244
|
# @type CreateTime: Integer
|
|
13229
13245
|
# @param UpdateTime: 更新时间
|
|
13230
13246
|
# @type UpdateTime: Integer
|
|
13247
|
+
# @param BoundProducts: 已关联产品信息列表
|
|
13248
|
+
# @type BoundProducts: Array
|
|
13231
13249
|
|
|
13232
|
-
attr_accessor :Uin, :AppId, :InstanceId, :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig, :ProductList, :CreateTime, :UpdateTime
|
|
13250
|
+
attr_accessor :Uin, :AppId, :InstanceId, :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig, :ProductList, :CreateTime, :UpdateTime, :BoundProducts
|
|
13251
|
+
extend Gem::Deprecate
|
|
13252
|
+
deprecate :ProductList, :none, 2026, 1
|
|
13253
|
+
deprecate :ProductList=, :none, 2026, 1
|
|
13233
13254
|
|
|
13234
|
-
def initialize(uin=nil, appid=nil, instanceid=nil, botid=nil, name=nil, description=nil, targetlanguage=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, agentconfig=nil, productlist=nil, createtime=nil, updatetime=nil)
|
|
13255
|
+
def initialize(uin=nil, appid=nil, instanceid=nil, botid=nil, name=nil, description=nil, targetlanguage=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, agentconfig=nil, productlist=nil, createtime=nil, updatetime=nil, boundproducts=nil)
|
|
13235
13256
|
@Uin = uin
|
|
13236
13257
|
@AppId = appid
|
|
13237
13258
|
@InstanceId = instanceid
|
|
@@ -13246,6 +13267,7 @@ module TencentCloud
|
|
|
13246
13267
|
@ProductList = productlist
|
|
13247
13268
|
@CreateTime = createtime
|
|
13248
13269
|
@UpdateTime = updatetime
|
|
13270
|
+
@BoundProducts = boundproducts
|
|
13249
13271
|
end
|
|
13250
13272
|
|
|
13251
13273
|
def deserialize(params)
|
|
@@ -13278,6 +13300,14 @@ module TencentCloud
|
|
|
13278
13300
|
end
|
|
13279
13301
|
@CreateTime = params['CreateTime']
|
|
13280
13302
|
@UpdateTime = params['UpdateTime']
|
|
13303
|
+
unless params['BoundProducts'].nil?
|
|
13304
|
+
@BoundProducts = []
|
|
13305
|
+
params['BoundProducts'].each do |i|
|
|
13306
|
+
talkproductinfo_tmp = TalkProductInfo.new
|
|
13307
|
+
talkproductinfo_tmp.deserialize(i)
|
|
13308
|
+
@BoundProducts << talkproductinfo_tmp
|
|
13309
|
+
end
|
|
13310
|
+
end
|
|
13281
13311
|
end
|
|
13282
13312
|
end
|
|
13283
13313
|
|
|
@@ -13301,7 +13331,7 @@ module TencentCloud
|
|
|
13301
13331
|
# @type SilenceTime: Integer
|
|
13302
13332
|
# @param NoiseFilterEnabled: 是否启用噪声过滤
|
|
13303
13333
|
# @type NoiseFilterEnabled: Boolean
|
|
13304
|
-
# @param LongTermMemoryEnabled:
|
|
13334
|
+
# @param LongTermMemoryEnabled: 是否开启长记忆,默认关闭
|
|
13305
13335
|
# @type LongTermMemoryEnabled: Boolean
|
|
13306
13336
|
# @param SystemPrompt: 系统提示词,仅当未配置LLMConfig时使用
|
|
13307
13337
|
# @type SystemPrompt: String
|
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.1210
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,8 +33,8 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20190423/models.rb
|
|
37
36
|
- lib/v20190423/client.rb
|
|
37
|
+
- lib/v20190423/models.rb
|
|
38
38
|
- lib/tencentcloud-sdk-iotexplorer.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|