tencentcloud-sdk-iotexplorer 3.0.1147 → 3.0.1153

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: 94c29e13a2866095340a3547030b77b04f9320b8
4
- data.tar.gz: a299b7784b323b53f772018d49f40050d406ce71
3
+ metadata.gz: 7d0d7cbaf8098573d8c4f51a6e36792d1ba42d5c
4
+ data.tar.gz: af58b62d78dc98d3bbdb81058cb80566a76a5a62
5
5
  SHA512:
6
- metadata.gz: 0550932bb006c5acb44233a7ed9a75609fb9a485c332ebcfe4ea56a577a4f7d88ebfd6d6c0b20b4bd9450a9693045c8e04cb25f676a13173327097579ee7b254
7
- data.tar.gz: b753e05188c87896f9cd7c92a7014a51bdf42fd762a22dbe097dab339baae691ad0568cb4b80c11cc878a7f509348b4c43e84951004880c156dd2a8c99e78ed9
6
+ metadata.gz: e0b52d7cbe0cb7c4c47db5d6ec0900fa59c52665a4a8f7e74ebe44e8ca87cca309270875d9d31ada0ccebd94b568da49c98defdec8a9b1fd22600002e68d5973
7
+ data.tar.gz: 8025bcb11bcbf0d40108d2488078dcee6775cdff66520b6ba3add18086f2a0418757cd750a9497074dfb5269fb6016e33a5359403062f7f2b9c7ba3cee5548b9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1147
1
+ 3.0.1153
@@ -775,6 +775,30 @@ module TencentCloud
775
775
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
776
776
  end
777
777
 
778
+ # 用于配置TWeTalk服务连接产品配置信息。
779
+
780
+ # @param request: Request instance for CreateTWeTalkProductConfigV2.
781
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::CreateTWeTalkProductConfigV2Request`
782
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::CreateTWeTalkProductConfigV2Response`
783
+ def CreateTWeTalkProductConfigV2(request)
784
+ body = send_request('CreateTWeTalkProductConfigV2', request.serialize)
785
+ response = JSON.parse(body)
786
+ if response['Response'].key?('Error') == false
787
+ model = CreateTWeTalkProductConfigV2Response.new
788
+ model.deserialize(response['Response'])
789
+ model
790
+ else
791
+ code = response['Response']['Error']['Code']
792
+ message = response['Response']['Error']['Message']
793
+ reqid = response['Response']['RequestId']
794
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
795
+ end
796
+ rescue TencentCloud::Common::TencentCloudSDKException => e
797
+ raise e
798
+ rescue StandardError => e
799
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
800
+ end
801
+
778
802
  # 本接口(CreateTopicPolicy)用于创建一个Topic
779
803
 
780
804
  # @param request: Request instance for CreateTopicPolicy.
@@ -2529,6 +2553,30 @@ module TencentCloud
2529
2553
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2530
2554
  end
2531
2555
 
2556
+ # 用于查询TWeTalk服务连接产品配置信息。
2557
+
2558
+ # @param request: Request instance for DescribeTWeTalkProductConfigV2.
2559
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeTWeTalkProductConfigV2Request`
2560
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeTWeTalkProductConfigV2Response`
2561
+ def DescribeTWeTalkProductConfigV2(request)
2562
+ body = send_request('DescribeTWeTalkProductConfigV2', request.serialize)
2563
+ response = JSON.parse(body)
2564
+ if response['Response'].key?('Error') == false
2565
+ model = DescribeTWeTalkProductConfigV2Response.new
2566
+ model.deserialize(response['Response'])
2567
+ model
2568
+ else
2569
+ code = response['Response']['Error']['Code']
2570
+ message = response['Response']['Error']['Message']
2571
+ reqid = response['Response']['RequestId']
2572
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2573
+ end
2574
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2575
+ raise e
2576
+ rescue StandardError => e
2577
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2578
+ end
2579
+
2532
2580
  # 本接口(DescribeTopicPolicy)用于查看Topic详细信息
2533
2581
 
2534
2582
  # @param request: Request instance for DescribeTopicPolicy.
@@ -3129,6 +3177,30 @@ module TencentCloud
3129
3177
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3130
3178
  end
3131
3179
 
3180
+ # 用于查询TWeTalk服务连接产品配置信息。
3181
+
3182
+ # @param request: Request instance for GetTWeTalkProductConfigListV2.
3183
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::GetTWeTalkProductConfigListV2Request`
3184
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::GetTWeTalkProductConfigListV2Response`
3185
+ def GetTWeTalkProductConfigListV2(request)
3186
+ body = send_request('GetTWeTalkProductConfigListV2', request.serialize)
3187
+ response = JSON.parse(body)
3188
+ if response['Response'].key?('Error') == false
3189
+ model = GetTWeTalkProductConfigListV2Response.new
3190
+ model.deserialize(response['Response'])
3191
+ model
3192
+ else
3193
+ code = response['Response']['Error']['Code']
3194
+ message = response['Response']['Error']['Message']
3195
+ reqid = response['Response']['RequestId']
3196
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3197
+ end
3198
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3199
+ raise e
3200
+ rescue StandardError => e
3201
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3202
+ end
3203
+
3132
3204
  # 获取规则列表
3133
3205
 
3134
3206
  # @param request: Request instance for GetTopicRuleList.
@@ -3801,6 +3873,30 @@ module TencentCloud
3801
3873
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3802
3874
  end
3803
3875
 
3876
+ # 用于修改配置TWeTalk服务连接产品配置信息。
3877
+
3878
+ # @param request: Request instance for ModifyTWeTalkProductConfigV2.
3879
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::ModifyTWeTalkProductConfigV2Request`
3880
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::ModifyTWeTalkProductConfigV2Response`
3881
+ def ModifyTWeTalkProductConfigV2(request)
3882
+ body = send_request('ModifyTWeTalkProductConfigV2', request.serialize)
3883
+ response = JSON.parse(body)
3884
+ if response['Response'].key?('Error') == false
3885
+ model = ModifyTWeTalkProductConfigV2Response.new
3886
+ model.deserialize(response['Response'])
3887
+ model
3888
+ else
3889
+ code = response['Response']['Error']['Code']
3890
+ message = response['Response']['Error']['Message']
3891
+ reqid = response['Response']['RequestId']
3892
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3893
+ end
3894
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3895
+ raise e
3896
+ rescue StandardError => e
3897
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3898
+ end
3899
+
3804
3900
  # 本接口(UpdateTopicPolicy)用于更新Topic信息
3805
3901
 
3806
3902
  # @param request: Request instance for ModifyTopicPolicy.
@@ -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, 9
104
- deprecate :MiniProgramAppId=, :none, 2025, 9
103
+ deprecate :MiniProgramAppId, :none, 2025, 10
104
+ deprecate :MiniProgramAppId=, :none, 2025, 10
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, 9
140
- deprecate :DeviceList=, :none, 2025, 9
139
+ deprecate :DeviceList, :none, 2025, 10
140
+ deprecate :DeviceList=, :none, 2025, 10
141
141
 
142
142
  def initialize(devicelist=nil, failurelist=nil, successlist=nil, requestid=nil)
143
143
  @DeviceList = devicelist
@@ -2499,6 +2499,85 @@ module TencentCloud
2499
2499
  end
2500
2500
  end
2501
2501
 
2502
+ # CreateTWeTalkProductConfigV2请求参数结构体
2503
+ class CreateTWeTalkProductConfigV2Request < TencentCloud::Common::AbstractModel
2504
+ # @param ProductId: 产品ID
2505
+ # @type ProductId: String
2506
+ # @param DeviceName: 设备名称
2507
+ # @type DeviceName: String
2508
+ # @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
2509
+ # @type TargetLanguage: String
2510
+ # @param ConfigName: 名称
2511
+ # @type ConfigName: String
2512
+ # @param BasicConfig: 系统基础配置,当需要使用系统三段式配置时配置。
2513
+ # @type BasicConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkBasicConfigInfo`
2514
+ # @param STTConfig: 自定义语音识别配置
2515
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
2516
+ # @param LLMConfig: 自定义大模型配置
2517
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
2518
+ # @param TTSConfig: 语音合成配置
2519
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
2520
+ # @param ConversationConfig: 会话配置
2521
+ # @type ConversationConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkConversationConfigInfo`
2522
+
2523
+ attr_accessor :ProductId, :DeviceName, :TargetLanguage, :ConfigName, :BasicConfig, :STTConfig, :LLMConfig, :TTSConfig, :ConversationConfig
2524
+
2525
+ def initialize(productid=nil, devicename=nil, targetlanguage=nil, configname=nil, basicconfig=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, conversationconfig=nil)
2526
+ @ProductId = productid
2527
+ @DeviceName = devicename
2528
+ @TargetLanguage = targetlanguage
2529
+ @ConfigName = configname
2530
+ @BasicConfig = basicconfig
2531
+ @STTConfig = sttconfig
2532
+ @LLMConfig = llmconfig
2533
+ @TTSConfig = ttsconfig
2534
+ @ConversationConfig = conversationconfig
2535
+ end
2536
+
2537
+ def deserialize(params)
2538
+ @ProductId = params['ProductId']
2539
+ @DeviceName = params['DeviceName']
2540
+ @TargetLanguage = params['TargetLanguage']
2541
+ @ConfigName = params['ConfigName']
2542
+ unless params['BasicConfig'].nil?
2543
+ @BasicConfig = TalkBasicConfigInfo.new
2544
+ @BasicConfig.deserialize(params['BasicConfig'])
2545
+ end
2546
+ unless params['STTConfig'].nil?
2547
+ @STTConfig = TalkSTTConfigInfo.new
2548
+ @STTConfig.deserialize(params['STTConfig'])
2549
+ end
2550
+ unless params['LLMConfig'].nil?
2551
+ @LLMConfig = TalkLLMConfigInfo.new
2552
+ @LLMConfig.deserialize(params['LLMConfig'])
2553
+ end
2554
+ unless params['TTSConfig'].nil?
2555
+ @TTSConfig = TalkTTSConfigInfo.new
2556
+ @TTSConfig.deserialize(params['TTSConfig'])
2557
+ end
2558
+ unless params['ConversationConfig'].nil?
2559
+ @ConversationConfig = TalkConversationConfigInfo.new
2560
+ @ConversationConfig.deserialize(params['ConversationConfig'])
2561
+ end
2562
+ end
2563
+ end
2564
+
2565
+ # CreateTWeTalkProductConfigV2返回参数结构体
2566
+ class CreateTWeTalkProductConfigV2Response < TencentCloud::Common::AbstractModel
2567
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2568
+ # @type RequestId: String
2569
+
2570
+ attr_accessor :RequestId
2571
+
2572
+ def initialize(requestid=nil)
2573
+ @RequestId = requestid
2574
+ end
2575
+
2576
+ def deserialize(params)
2577
+ @RequestId = params['RequestId']
2578
+ end
2579
+ end
2580
+
2502
2581
  # CreateTopicPolicy请求参数结构体
2503
2582
  class CreateTopicPolicyRequest < TencentCloud::Common::AbstractModel
2504
2583
  # @param ProductId: 产品ID
@@ -6375,6 +6454,57 @@ module TencentCloud
6375
6454
  end
6376
6455
  end
6377
6456
 
6457
+ # DescribeTWeTalkProductConfigV2请求参数结构体
6458
+ class DescribeTWeTalkProductConfigV2Request < TencentCloud::Common::AbstractModel
6459
+ # @param ProductId: 产品ID
6460
+ # @type ProductId: String
6461
+ # @param DeviceName: 设备名称
6462
+ # @type DeviceName: String
6463
+ # @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
6464
+ # @type TargetLanguage: String
6465
+ # @param IncludeCredentials: 是否脱敏
6466
+ # @type IncludeCredentials: Boolean
6467
+
6468
+ attr_accessor :ProductId, :DeviceName, :TargetLanguage, :IncludeCredentials
6469
+
6470
+ def initialize(productid=nil, devicename=nil, targetlanguage=nil, includecredentials=nil)
6471
+ @ProductId = productid
6472
+ @DeviceName = devicename
6473
+ @TargetLanguage = targetlanguage
6474
+ @IncludeCredentials = includecredentials
6475
+ end
6476
+
6477
+ def deserialize(params)
6478
+ @ProductId = params['ProductId']
6479
+ @DeviceName = params['DeviceName']
6480
+ @TargetLanguage = params['TargetLanguage']
6481
+ @IncludeCredentials = params['IncludeCredentials']
6482
+ end
6483
+ end
6484
+
6485
+ # DescribeTWeTalkProductConfigV2返回参数结构体
6486
+ class DescribeTWeTalkProductConfigV2Response < TencentCloud::Common::AbstractModel
6487
+ # @param Data: 配置信息
6488
+ # @type Data: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkProductConfigV2Info`
6489
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6490
+ # @type RequestId: String
6491
+
6492
+ attr_accessor :Data, :RequestId
6493
+
6494
+ def initialize(data=nil, requestid=nil)
6495
+ @Data = data
6496
+ @RequestId = requestid
6497
+ end
6498
+
6499
+ def deserialize(params)
6500
+ unless params['Data'].nil?
6501
+ @Data = TalkProductConfigV2Info.new
6502
+ @Data.deserialize(params['Data'])
6503
+ end
6504
+ @RequestId = params['RequestId']
6505
+ end
6506
+ end
6507
+
6378
6508
  # DescribeTopicPolicy请求参数结构体
6379
6509
  class DescribeTopicPolicyRequest < TencentCloud::Common::AbstractModel
6380
6510
  # @param ProductId: 产品ID
@@ -6629,8 +6759,8 @@ module TencentCloud
6629
6759
 
6630
6760
  attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
6631
6761
  extend Gem::Deprecate
6632
- deprecate :ModelId, :none, 2025, 9
6633
- deprecate :ModelId=, :none, 2025, 9
6762
+ deprecate :ModelId, :none, 2025, 10
6763
+ deprecate :ModelId=, :none, 2025, 10
6634
6764
 
6635
6765
  def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
6636
6766
  @ModelId = modelid
@@ -8346,8 +8476,8 @@ module TencentCloud
8346
8476
 
8347
8477
  attr_accessor :MiniProgramAppId, :DeviceList
8348
8478
  extend Gem::Deprecate
8349
- deprecate :MiniProgramAppId, :none, 2025, 9
8350
- deprecate :MiniProgramAppId=, :none, 2025, 9
8479
+ deprecate :MiniProgramAppId, :none, 2025, 10
8480
+ deprecate :MiniProgramAppId=, :none, 2025, 10
8351
8481
 
8352
8482
  def initialize(miniprogramappid=nil, devicelist=nil)
8353
8483
  @MiniProgramAppId = miniprogramappid
@@ -8453,6 +8583,73 @@ module TencentCloud
8453
8583
  end
8454
8584
  end
8455
8585
 
8586
+ # GetTWeTalkProductConfigListV2请求参数结构体
8587
+ class GetTWeTalkProductConfigListV2Request < TencentCloud::Common::AbstractModel
8588
+ # @param ProductId: 产品ID
8589
+ # @type ProductId: String
8590
+ # @param DeviceName: 设备名称
8591
+ # @type DeviceName: String
8592
+ # @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
8593
+ # @type TargetLanguage: String
8594
+ # @param IncludeCredentials: 是否脱敏
8595
+ # @type IncludeCredentials: Boolean
8596
+ # @param Offset: 页码
8597
+ # @type Offset: Integer
8598
+ # @param Limit: 每页数据大小, 10-100
8599
+ # @type Limit: Integer
8600
+
8601
+ attr_accessor :ProductId, :DeviceName, :TargetLanguage, :IncludeCredentials, :Offset, :Limit
8602
+
8603
+ def initialize(productid=nil, devicename=nil, targetlanguage=nil, includecredentials=nil, offset=nil, limit=nil)
8604
+ @ProductId = productid
8605
+ @DeviceName = devicename
8606
+ @TargetLanguage = targetlanguage
8607
+ @IncludeCredentials = includecredentials
8608
+ @Offset = offset
8609
+ @Limit = limit
8610
+ end
8611
+
8612
+ def deserialize(params)
8613
+ @ProductId = params['ProductId']
8614
+ @DeviceName = params['DeviceName']
8615
+ @TargetLanguage = params['TargetLanguage']
8616
+ @IncludeCredentials = params['IncludeCredentials']
8617
+ @Offset = params['Offset']
8618
+ @Limit = params['Limit']
8619
+ end
8620
+ end
8621
+
8622
+ # GetTWeTalkProductConfigListV2返回参数结构体
8623
+ class GetTWeTalkProductConfigListV2Response < TencentCloud::Common::AbstractModel
8624
+ # @param Data: 配置信息
8625
+ # @type Data: Array
8626
+ # @param Total: 总数
8627
+ # @type Total: Integer
8628
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8629
+ # @type RequestId: String
8630
+
8631
+ attr_accessor :Data, :Total, :RequestId
8632
+
8633
+ def initialize(data=nil, total=nil, requestid=nil)
8634
+ @Data = data
8635
+ @Total = total
8636
+ @RequestId = requestid
8637
+ end
8638
+
8639
+ def deserialize(params)
8640
+ unless params['Data'].nil?
8641
+ @Data = []
8642
+ params['Data'].each do |i|
8643
+ talkproductconfigv2info_tmp = TalkProductConfigV2Info.new
8644
+ talkproductconfigv2info_tmp.deserialize(i)
8645
+ @Data << talkproductconfigv2info_tmp
8646
+ end
8647
+ end
8648
+ @Total = params['Total']
8649
+ @RequestId = params['RequestId']
8650
+ end
8651
+ end
8652
+
8456
8653
  # GetTopicRuleList请求参数结构体
8457
8654
  class GetTopicRuleListRequest < TencentCloud::Common::AbstractModel
8458
8655
  # @param PageNum: 请求的页数
@@ -8559,6 +8756,26 @@ module TencentCloud
8559
8756
  end
8560
8757
  end
8561
8758
 
8759
+ # 空闲检测配置信息。
8760
+ class IdleResponseInfo < TencentCloud::Common::AbstractModel
8761
+ # @param RetryCount: 重试次数(1-3)
8762
+ # @type RetryCount: Integer
8763
+ # @param Message: 响应信息
8764
+ # @type Message: String
8765
+
8766
+ attr_accessor :RetryCount, :Message
8767
+
8768
+ def initialize(retrycount=nil, message=nil)
8769
+ @RetryCount = retrycount
8770
+ @Message = message
8771
+ end
8772
+
8773
+ def deserialize(params)
8774
+ @RetryCount = params['RetryCount']
8775
+ @Message = params['Message']
8776
+ end
8777
+ end
8778
+
8562
8779
  # InheritCloudStorageUser请求参数结构体
8563
8780
  class InheritCloudStorageUserRequest < TencentCloud::Common::AbstractModel
8564
8781
  # @param ProductId: 产品ID
@@ -10546,6 +10763,85 @@ module TencentCloud
10546
10763
  end
10547
10764
  end
10548
10765
 
10766
+ # ModifyTWeTalkProductConfigV2请求参数结构体
10767
+ class ModifyTWeTalkProductConfigV2Request < TencentCloud::Common::AbstractModel
10768
+ # @param ProductId: 产品ID
10769
+ # @type ProductId: String
10770
+ # @param DeviceName: 设备名称
10771
+ # @type DeviceName: String
10772
+ # @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
10773
+ # @type TargetLanguage: String
10774
+ # @param ConfigName: 名称
10775
+ # @type ConfigName: String
10776
+ # @param BasicConfig: 系统基础配置,当需要使用系统三段式配置时配置。
10777
+ # @type BasicConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkBasicConfigInfo`
10778
+ # @param STTConfig: 自定义语音识别配置
10779
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
10780
+ # @param LLMConfig: 自定义大模型配置
10781
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
10782
+ # @param TTSConfig: 语音合成配置
10783
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
10784
+ # @param ConversationConfig: 会话配置
10785
+ # @type ConversationConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkConversationConfigInfo`
10786
+
10787
+ attr_accessor :ProductId, :DeviceName, :TargetLanguage, :ConfigName, :BasicConfig, :STTConfig, :LLMConfig, :TTSConfig, :ConversationConfig
10788
+
10789
+ def initialize(productid=nil, devicename=nil, targetlanguage=nil, configname=nil, basicconfig=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, conversationconfig=nil)
10790
+ @ProductId = productid
10791
+ @DeviceName = devicename
10792
+ @TargetLanguage = targetlanguage
10793
+ @ConfigName = configname
10794
+ @BasicConfig = basicconfig
10795
+ @STTConfig = sttconfig
10796
+ @LLMConfig = llmconfig
10797
+ @TTSConfig = ttsconfig
10798
+ @ConversationConfig = conversationconfig
10799
+ end
10800
+
10801
+ def deserialize(params)
10802
+ @ProductId = params['ProductId']
10803
+ @DeviceName = params['DeviceName']
10804
+ @TargetLanguage = params['TargetLanguage']
10805
+ @ConfigName = params['ConfigName']
10806
+ unless params['BasicConfig'].nil?
10807
+ @BasicConfig = TalkBasicConfigInfo.new
10808
+ @BasicConfig.deserialize(params['BasicConfig'])
10809
+ end
10810
+ unless params['STTConfig'].nil?
10811
+ @STTConfig = TalkSTTConfigInfo.new
10812
+ @STTConfig.deserialize(params['STTConfig'])
10813
+ end
10814
+ unless params['LLMConfig'].nil?
10815
+ @LLMConfig = TalkLLMConfigInfo.new
10816
+ @LLMConfig.deserialize(params['LLMConfig'])
10817
+ end
10818
+ unless params['TTSConfig'].nil?
10819
+ @TTSConfig = TalkTTSConfigInfo.new
10820
+ @TTSConfig.deserialize(params['TTSConfig'])
10821
+ end
10822
+ unless params['ConversationConfig'].nil?
10823
+ @ConversationConfig = TalkConversationConfigInfo.new
10824
+ @ConversationConfig.deserialize(params['ConversationConfig'])
10825
+ end
10826
+ end
10827
+ end
10828
+
10829
+ # ModifyTWeTalkProductConfigV2返回参数结构体
10830
+ class ModifyTWeTalkProductConfigV2Response < TencentCloud::Common::AbstractModel
10831
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10832
+ # @type RequestId: String
10833
+
10834
+ attr_accessor :RequestId
10835
+
10836
+ def initialize(requestid=nil)
10837
+ @RequestId = requestid
10838
+ end
10839
+
10840
+ def deserialize(params)
10841
+ @RequestId = params['RequestId']
10842
+ end
10843
+ end
10844
+
10549
10845
  # ModifyTopicPolicy请求参数结构体
10550
10846
  class ModifyTopicPolicyRequest < TencentCloud::Common::AbstractModel
10551
10847
  # @param ProductId: 产品ID
@@ -12016,8 +12312,8 @@ module TencentCloud
12016
12312
 
12017
12313
  attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
12018
12314
  extend Gem::Deprecate
12019
- deprecate :ModelId, :none, 2025, 9
12020
- deprecate :ModelId=, :none, 2025, 9
12315
+ deprecate :ModelId, :none, 2025, 10
12316
+ deprecate :ModelId=, :none, 2025, 10
12021
12317
 
12022
12318
  def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
12023
12319
  @ModelId = modelid
@@ -12047,10 +12343,10 @@ module TencentCloud
12047
12343
 
12048
12344
  attr_accessor :Sn, :ModelId, :ActiveNum
12049
12345
  extend Gem::Deprecate
12050
- deprecate :ModelId, :none, 2025, 9
12051
- deprecate :ModelId=, :none, 2025, 9
12052
- deprecate :ActiveNum, :none, 2025, 9
12053
- deprecate :ActiveNum=, :none, 2025, 9
12346
+ deprecate :ModelId, :none, 2025, 10
12347
+ deprecate :ModelId=, :none, 2025, 10
12348
+ deprecate :ActiveNum, :none, 2025, 10
12349
+ deprecate :ActiveNum=, :none, 2025, 10
12054
12350
 
12055
12351
  def initialize(sn=nil, modelid=nil, activenum=nil)
12056
12352
  @Sn = sn
@@ -12089,6 +12385,203 @@ module TencentCloud
12089
12385
  end
12090
12386
  end
12091
12387
 
12388
+ # 基础配置信息。
12389
+ class TalkBasicConfigInfo < TencentCloud::Common::AbstractModel
12390
+ # @param SystemPrompt: 系统提示词
12391
+ # @type SystemPrompt: String
12392
+ # @param GreetingMessage: 欢迎语,支持多个欢迎语随机切换,格式:字符串数组,JSON字符串。
12393
+ # @type GreetingMessage: String
12394
+ # @param DefaultVoiceType: 音色,支持的音色列表:100510000-阅读男声智逍遥;101001-情感女声智瑜;101002-通用女声智聆;101003-客服女声智美;101004-通用男声智云;101005-通用女声智莉;101006-助手女声智言;101008-客服女声智琪;101009-知性女声智芸;101010-通用男声智华;101011-新闻女声智燕;101012-新闻女声智丹;101013-新闻男声智辉;101014 -新闻男声智宁;101015-男童声智萌;101016-女童声智甜;101017-情感女声智蓉;101018-情感男声智靖;101019-粤语女声智彤。
12395
+ # @type DefaultVoiceType: Integer
12396
+
12397
+ attr_accessor :SystemPrompt, :GreetingMessage, :DefaultVoiceType
12398
+
12399
+ def initialize(systemprompt=nil, greetingmessage=nil, defaultvoicetype=nil)
12400
+ @SystemPrompt = systemprompt
12401
+ @GreetingMessage = greetingmessage
12402
+ @DefaultVoiceType = defaultvoicetype
12403
+ end
12404
+
12405
+ def deserialize(params)
12406
+ @SystemPrompt = params['SystemPrompt']
12407
+ @GreetingMessage = params['GreetingMessage']
12408
+ @DefaultVoiceType = params['DefaultVoiceType']
12409
+ end
12410
+ end
12411
+
12412
+ # TTS配置信息。
12413
+ class TalkConversationConfigInfo < TencentCloud::Common::AbstractModel
12414
+ # @param SessionTimeout: 会话超时(秒)
12415
+ # @type SessionTimeout: Integer
12416
+ # @param InterruptionEnabled: 允许打断
12417
+ # @type InterruptionEnabled: Boolean
12418
+ # @param MaxContextTokens: 最大上下文
12419
+ # @type MaxContextTokens: Integer
12420
+ # @param IdleDetection: 空闲检测配置
12421
+ # @type IdleDetection: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkIdleDetectionConfigInfo`
12422
+ # @param EmotionEnabled: 是否启用情绪识别
12423
+ # @type EmotionEnabled: Boolean
12424
+
12425
+ attr_accessor :SessionTimeout, :InterruptionEnabled, :MaxContextTokens, :IdleDetection, :EmotionEnabled
12426
+
12427
+ def initialize(sessiontimeout=nil, interruptionenabled=nil, maxcontexttokens=nil, idledetection=nil, emotionenabled=nil)
12428
+ @SessionTimeout = sessiontimeout
12429
+ @InterruptionEnabled = interruptionenabled
12430
+ @MaxContextTokens = maxcontexttokens
12431
+ @IdleDetection = idledetection
12432
+ @EmotionEnabled = emotionenabled
12433
+ end
12434
+
12435
+ def deserialize(params)
12436
+ @SessionTimeout = params['SessionTimeout']
12437
+ @InterruptionEnabled = params['InterruptionEnabled']
12438
+ @MaxContextTokens = params['MaxContextTokens']
12439
+ unless params['IdleDetection'].nil?
12440
+ @IdleDetection = TalkIdleDetectionConfigInfo.new
12441
+ @IdleDetection.deserialize(params['IdleDetection'])
12442
+ end
12443
+ @EmotionEnabled = params['EmotionEnabled']
12444
+ end
12445
+ end
12446
+
12447
+ # 空闲检测信息。
12448
+ class TalkIdleDetectionConfigInfo < TencentCloud::Common::AbstractModel
12449
+ # @param Enabled: 是否启用
12450
+ # @type Enabled: Boolean
12451
+ # @param TimeoutSeconds: 用户沉默多少秒后触发空闲回调
12452
+ # @type TimeoutSeconds: Float
12453
+ # @param MaxRetries: 最大重试次数(1-3)
12454
+ # @type MaxRetries: Integer
12455
+ # @param IdleResponses: 空闲响应
12456
+ # @type IdleResponses: Array
12457
+
12458
+ attr_accessor :Enabled, :TimeoutSeconds, :MaxRetries, :IdleResponses
12459
+
12460
+ def initialize(enabled=nil, timeoutseconds=nil, maxretries=nil, idleresponses=nil)
12461
+ @Enabled = enabled
12462
+ @TimeoutSeconds = timeoutseconds
12463
+ @MaxRetries = maxretries
12464
+ @IdleResponses = idleresponses
12465
+ end
12466
+
12467
+ def deserialize(params)
12468
+ @Enabled = params['Enabled']
12469
+ @TimeoutSeconds = params['TimeoutSeconds']
12470
+ @MaxRetries = params['MaxRetries']
12471
+ unless params['IdleResponses'].nil?
12472
+ @IdleResponses = []
12473
+ params['IdleResponses'].each do |i|
12474
+ idleresponseinfo_tmp = IdleResponseInfo.new
12475
+ idleresponseinfo_tmp.deserialize(i)
12476
+ @IdleResponses << idleresponseinfo_tmp
12477
+ end
12478
+ end
12479
+ end
12480
+ end
12481
+
12482
+ # LLM配置信息。
12483
+ class TalkLLMConfigInfo < TencentCloud::Common::AbstractModel
12484
+ # @param LLMType: 支持的LLM类型,tencent-腾讯;openai-OPENAI格式;anthropic-ANTHROPIC;gemini-GEMINI;gemini-GEMINI;coze-扣子;dify-DIFY;tencent_lke-腾讯智能体平台;系统默认-openai。
12485
+ # @type LLMType: String
12486
+ # @param Enabled: 是否开启
12487
+ # @type Enabled: Boolean
12488
+ # @param Model: 模型
12489
+ # @type Model: String
12490
+ # @param Streaming: 是否开启
12491
+ # @type Streaming: Boolean
12492
+ # @param Config: 配置信息JSON字符串,根据`LLMType`进行不同的值匹配。例如`LLMType`是`openai`,`Config`值是`{\"ApiKey\":\"sk-09***\",\"ApiUrl\":\"base_url\",\"SystemPrompt\":\"你是一个语音助手\",\"Timeout\":30,\"History\":0,\"MetaInfo\":{\"productID\":\"test\"}}`
12493
+
12494
+ # ## openai
12495
+ # ```
12496
+ # {
12497
+ # "ApiKey": "sk-XXXXXXXXXXXX",
12498
+ # "ApiUrl": "https://api.openai.com/v1",
12499
+ # "SystemPrompt": "一个小小助手",
12500
+ # "Timeout":20,
12501
+ # "History":10,
12502
+ # "MetaInfo":{}
12503
+ # }
12504
+ # ```
12505
+
12506
+ # ## anthropic
12507
+ # ```
12508
+ # {
12509
+ # "ApiKey": "sk-XXXXXXXXXXXX",
12510
+ # "ApiUrl": "https://api.openai.com/v1",
12511
+ # "SystemPrompt": "一个小小助手"
12512
+ # }
12513
+ # ```
12514
+ # ## gemini
12515
+ # ```
12516
+ # {
12517
+ # "AppId": 123456,
12518
+ # "AccessToken": "*****",
12519
+ # "ResourceId": "SecretKey****",
12520
+ # "ModelName": "16k_zh",
12521
+ # "Language":""
12522
+ # }
12523
+ # ```
12524
+ # ## coze
12525
+ # ```
12526
+ # {
12527
+ # "ApiKey": "sk-XXXXXXXXXXXX",
12528
+ # "BotId": "v1",
12529
+ # "UserId": "xxx",
12530
+ # "ApiUrl": "https://api.coze.cn/v3/chat"
12531
+ # }
12532
+ # ```
12533
+ # ## dify
12534
+ # ```
12535
+ # {
12536
+ # "ApiKey": "sk-XXXXXXXXXXXX",
12537
+ # "ApiUrl": "https://api.openai.com/v1",
12538
+ # "User": "xxx",
12539
+ # "Inputs":{},
12540
+ # "ConversationId":"c1"
12541
+ # }
12542
+ # ```
12543
+ # ## tencent_lke
12544
+ # ```
12545
+ # {
12546
+ # "ApiKey": "sk-XXXXXXXXXXXX",
12547
+ # "ApiUrl": "https://api.openai.com/v1",
12548
+ # "SystemRole": "一个小小助手",
12549
+ # "SessionId":"123456"
12550
+ # }
12551
+ # ```
12552
+ # @type Config: String
12553
+ # @param Temperature: 温度
12554
+ # @type Temperature: Float
12555
+ # @param MaxTokens: 最大token数
12556
+ # @type MaxTokens: Integer
12557
+ # @param TopP: topP
12558
+ # @type TopP: Float
12559
+
12560
+ attr_accessor :LLMType, :Enabled, :Model, :Streaming, :Config, :Temperature, :MaxTokens, :TopP
12561
+
12562
+ def initialize(llmtype=nil, enabled=nil, model=nil, streaming=nil, config=nil, temperature=nil, maxtokens=nil, topp=nil)
12563
+ @LLMType = llmtype
12564
+ @Enabled = enabled
12565
+ @Model = model
12566
+ @Streaming = streaming
12567
+ @Config = config
12568
+ @Temperature = temperature
12569
+ @MaxTokens = maxtokens
12570
+ @TopP = topp
12571
+ end
12572
+
12573
+ def deserialize(params)
12574
+ @LLMType = params['LLMType']
12575
+ @Enabled = params['Enabled']
12576
+ @Model = params['Model']
12577
+ @Streaming = params['Streaming']
12578
+ @Config = params['Config']
12579
+ @Temperature = params['Temperature']
12580
+ @MaxTokens = params['MaxTokens']
12581
+ @TopP = params['TopP']
12582
+ end
12583
+ end
12584
+
12092
12585
  # Talk配置信息描述。
12093
12586
  class TalkProductConfigInfo < TencentCloud::Common::AbstractModel
12094
12587
  # @param ProductId: 产品ID
@@ -12129,6 +12622,251 @@ module TencentCloud
12129
12622
  end
12130
12623
  end
12131
12624
 
12625
+ # twetalk连接配置信息。
12626
+ class TalkProductConfigV2Info < TencentCloud::Common::AbstractModel
12627
+ # @param Uin: UIN
12628
+ # @type Uin: Integer
12629
+ # @param AppId: APPID
12630
+ # @type AppId: Integer
12631
+ # @param ProductId: 产品ID
12632
+ # @type ProductId: String
12633
+ # @param DeviceName: 设备名称
12634
+ # @type DeviceName: String
12635
+ # @param ConfigName: 配置名称
12636
+ # @type ConfigName: String
12637
+ # @param TargetLanguage: 语言,默认zh;zh-中文;en-英文
12638
+ # @type TargetLanguage: String
12639
+ # @param BasicConfig: 基础配置
12640
+ # @type BasicConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkBasicConfigInfo`
12641
+ # @param STTConfig: 语音识别配置
12642
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
12643
+ # @param LLMConfig: 大模型配置
12644
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
12645
+ # @param TTSConfig: 语音合成配置
12646
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
12647
+ # @param ConversationConfig: 会话配置
12648
+ # @type ConversationConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkConversationConfigInfo`
12649
+ # @param Version: 版本号
12650
+ # @type Version: Integer
12651
+ # @param CreateTime: 创建时间,秒级时间戳
12652
+ # @type CreateTime: Integer
12653
+ # @param UpdateTime: 更新时间,秒级时间戳
12654
+ # @type UpdateTime: Integer
12655
+
12656
+ attr_accessor :Uin, :AppId, :ProductId, :DeviceName, :ConfigName, :TargetLanguage, :BasicConfig, :STTConfig, :LLMConfig, :TTSConfig, :ConversationConfig, :Version, :CreateTime, :UpdateTime
12657
+
12658
+ def initialize(uin=nil, appid=nil, productid=nil, devicename=nil, configname=nil, targetlanguage=nil, basicconfig=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, conversationconfig=nil, version=nil, createtime=nil, updatetime=nil)
12659
+ @Uin = uin
12660
+ @AppId = appid
12661
+ @ProductId = productid
12662
+ @DeviceName = devicename
12663
+ @ConfigName = configname
12664
+ @TargetLanguage = targetlanguage
12665
+ @BasicConfig = basicconfig
12666
+ @STTConfig = sttconfig
12667
+ @LLMConfig = llmconfig
12668
+ @TTSConfig = ttsconfig
12669
+ @ConversationConfig = conversationconfig
12670
+ @Version = version
12671
+ @CreateTime = createtime
12672
+ @UpdateTime = updatetime
12673
+ end
12674
+
12675
+ def deserialize(params)
12676
+ @Uin = params['Uin']
12677
+ @AppId = params['AppId']
12678
+ @ProductId = params['ProductId']
12679
+ @DeviceName = params['DeviceName']
12680
+ @ConfigName = params['ConfigName']
12681
+ @TargetLanguage = params['TargetLanguage']
12682
+ unless params['BasicConfig'].nil?
12683
+ @BasicConfig = TalkBasicConfigInfo.new
12684
+ @BasicConfig.deserialize(params['BasicConfig'])
12685
+ end
12686
+ unless params['STTConfig'].nil?
12687
+ @STTConfig = TalkSTTConfigInfo.new
12688
+ @STTConfig.deserialize(params['STTConfig'])
12689
+ end
12690
+ unless params['LLMConfig'].nil?
12691
+ @LLMConfig = TalkLLMConfigInfo.new
12692
+ @LLMConfig.deserialize(params['LLMConfig'])
12693
+ end
12694
+ unless params['TTSConfig'].nil?
12695
+ @TTSConfig = TalkTTSConfigInfo.new
12696
+ @TTSConfig.deserialize(params['TTSConfig'])
12697
+ end
12698
+ unless params['ConversationConfig'].nil?
12699
+ @ConversationConfig = TalkConversationConfigInfo.new
12700
+ @ConversationConfig.deserialize(params['ConversationConfig'])
12701
+ end
12702
+ @Version = params['Version']
12703
+ @CreateTime = params['CreateTime']
12704
+ @UpdateTime = params['UpdateTime']
12705
+ end
12706
+ end
12707
+
12708
+ # STT配置信息。
12709
+ class TalkSTTConfigInfo < TencentCloud::Common::AbstractModel
12710
+ # @param STTType: 支持的STT类型,tencent-腾讯;azure-亚马逊;volcengine-火山引擎;deepgram-Deepgram;系统默认-tencent。
12711
+ # @type STTType: String
12712
+ # @param Enabled: 是否开启
12713
+ # @type Enabled: Boolean
12714
+ # @param Config: 配置信息JSON字符串,根据STTType进行不同的值匹配。例如`STTType`是`tencent`,`Config`值是`{\"AppId\":123456,\"SecretId\":\"secretId*****\",\"SecretKey\":\"SecretKey****\",\"EngineType\":\"16k_zh\"}`
12715
+
12716
+ # ## tencent
12717
+ # ```
12718
+ # {
12719
+ # "AppId": 123456,
12720
+ # "SecretId": "secretId*****",
12721
+ # "SecretKey": "SecretKey****",
12722
+ # "EngineType": "16k_zh"
12723
+ # }
12724
+ # ```
12725
+
12726
+ # ## azure
12727
+ # ```
12728
+ # {
12729
+ # "Region": "",
12730
+ # "EndpointId": "id",
12731
+ # "Language": "zh-CN",
12732
+ # "SubscriptionKey": "*****"
12733
+ # }
12734
+ # ```
12735
+ # ## volcengine
12736
+ # ```
12737
+ # {
12738
+ # "AppId": 123456,
12739
+ # "AccessToken": "*****",
12740
+ # "ResourceId": "SecretKey****",
12741
+ # "ModelName": "16k_zh",
12742
+ # "Language":""
12743
+ # }
12744
+ # ```
12745
+ # ## deepgram
12746
+ # ```
12747
+ # {
12748
+ # "Model": "nova-2",
12749
+ # "Language": "zh",
12750
+ # "BaseUrl":"http://www.deepgram.com",
12751
+ # "ApiKey": "SecretKey****"
12752
+ # }
12753
+ # ```
12754
+ # @type Config: String
12755
+
12756
+ attr_accessor :STTType, :Enabled, :Config
12757
+
12758
+ def initialize(stttype=nil, enabled=nil, config=nil)
12759
+ @STTType = stttype
12760
+ @Enabled = enabled
12761
+ @Config = config
12762
+ end
12763
+
12764
+ def deserialize(params)
12765
+ @STTType = params['STTType']
12766
+ @Enabled = params['Enabled']
12767
+ @Config = params['Config']
12768
+ end
12769
+ end
12770
+
12771
+ # TTS配置信息。
12772
+ class TalkTTSConfigInfo < TencentCloud::Common::AbstractModel
12773
+ # @param TTSType: 支持的LLM类型,支持tencent-腾讯;azure-亚马逊;volcengine-火山引擎;elevenlabs-ELEVENLABS;minimax-MINIMAX;cartesia-CARTESIA;aliyun-阿里;系统默认-tencent。
12774
+ # @type TTSType: String
12775
+ # @param Enabled: 是否开启
12776
+ # @type Enabled: Boolean
12777
+ # @param Config: 配置信息JSON字符串,根据`TTSType`进行不同的值匹配。例如`TTSType`是`tencent`,`Config`值是`{\"AppId\":123456,\"SecretId\":\"secretId*****\",\"SecretKey\":\"SecretKey****\",\"VoiceType\":10001}`
12778
+
12779
+ # ## tencent
12780
+ # ```
12781
+ # {
12782
+ # "AppId": 100203,
12783
+ # "SecretId": "XXXX",
12784
+ # "SecretKey": "XXXXX",
12785
+ # "VoiceType":123456
12786
+ # }
12787
+ # ```
12788
+
12789
+ # ## azure
12790
+ # ```
12791
+ # {
12792
+ # "SubscriptionKey": 100203,
12793
+ # "Region": "ch-zn",
12794
+ # "VoiceName": "XXXXX",
12795
+ # "Language":"zh"
12796
+ # }
12797
+ # ```
12798
+ # ## elevenlabs
12799
+ # ```
12800
+ # {
12801
+ # "ModelId": 100203,
12802
+ # "VoiceId": "ch-zn",
12803
+ # "ApiKey": "XXXXX"
12804
+ # }
12805
+ # ```
12806
+ # ## minimax
12807
+ # ```
12808
+ # {
12809
+ # "Model":"xxxx",
12810
+ # "ApiUrl": "346w34",
12811
+ # "ApiKey": "xxx",
12812
+ # "GroupId": "ion",
12813
+ # "VoiceType":"xioawei"
12814
+ # }
12815
+ # ```
12816
+ # ## cartesia
12817
+ # ```
12818
+ # {
12819
+ # "Model":"xxxx",
12820
+ # "ApiKey": "xxx",
12821
+ # "VoiceId":"xioawei"
12822
+ # }
12823
+ # ```
12824
+ # ## aliyun
12825
+ # ```
12826
+ # {
12827
+ # "VoiceType": 100203,
12828
+ # "RegionId": "XXXX",
12829
+ # "ApiKey": "XXXXX"
12830
+ # }
12831
+ # ```
12832
+ # ## volcengine
12833
+ # ```
12834
+ # {
12835
+ # "AppId": "346w34",
12836
+ # "AccessToken": "xxx",
12837
+ # "ResourceId": "volc.bigasr.sauc.duration",
12838
+ # "VoiceType":"xioawei"
12839
+ # }
12840
+ # ```
12841
+ # @type Config: String
12842
+ # @param Speed: 温度
12843
+ # @type Speed: Float
12844
+ # @param Volume: 最大token数
12845
+ # @type Volume: Float
12846
+ # @param Pitch: PITCH
12847
+ # @type Pitch: Float
12848
+
12849
+ attr_accessor :TTSType, :Enabled, :Config, :Speed, :Volume, :Pitch
12850
+
12851
+ def initialize(ttstype=nil, enabled=nil, config=nil, speed=nil, volume=nil, pitch=nil)
12852
+ @TTSType = ttstype
12853
+ @Enabled = enabled
12854
+ @Config = config
12855
+ @Speed = speed
12856
+ @Volume = volume
12857
+ @Pitch = pitch
12858
+ end
12859
+
12860
+ def deserialize(params)
12861
+ @TTSType = params['TTSType']
12862
+ @Enabled = params['Enabled']
12863
+ @Config = params['Config']
12864
+ @Speed = params['Speed']
12865
+ @Volume = params['Volume']
12866
+ @Pitch = params['Pitch']
12867
+ end
12868
+ end
12869
+
12132
12870
  # 视频语义搜索结果
12133
12871
  class TargetInfo < TencentCloud::Common::AbstractModel
12134
12872
  # @param Id: 视频唯一ID
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.1147
4
+ version: 3.0.1153
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-09-25 00:00:00.000000000 Z
11
+ date: 2025-10-15 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/client.rb
38
36
  - lib/v20190423/models.rb
37
+ - lib/v20190423/client.rb
38
+ - lib/tencentcloud-sdk-iotexplorer.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: