tencentcloud-sdk-ccc 3.0.1161 → 3.0.1162

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: 6416f21c595709bc1d9457d08976ed493e3d4454
4
- data.tar.gz: 0d9578e8c3afab0e63c522101b12253cc478cc39
3
+ metadata.gz: 9b9a10938f8ff737f41f614ff9a4fecb9ce5976e
4
+ data.tar.gz: b691c32eadb0c25d03d79713e4362562dc6ca933
5
5
  SHA512:
6
- metadata.gz: 7ea8c4490626811cb0c4ef7ae3586c55940cbe267f1f59877d1eb3a9da30667834a4b5c4319f99b9465fc9c0013e7325654aec42ca2370a748ac8eb079ed2625
7
- data.tar.gz: 0b2dbfba2ad5953d79c39e2fb5be3b9952d4821aae2d6c66f7f52e6e7dcdc0407f50464b8b2dbfaadc18739027a046d3a10d4b3c1d7a021c30fb2a6dac1a0d70
6
+ metadata.gz: adfe53696fb1631c30c44ef385e68787e18f05e93fe214f9288bab7e21917575043926b7fec59bac4fb2b4852dce52083f3521fb8314f89dd17e02702f9441ac
7
+ data.tar.gz: 9758dc96c69b07859c85185e6da7ed7380c0ef39724b912f2afd00a0c8217095db53a7588a0a07593d3a21561198eb4bf68dd9decfbc2a49c2488e5a3fb3f019
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1161
1
+ 3.0.1162
@@ -661,6 +661,30 @@ module TencentCloud
661
661
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
662
662
  end
663
663
 
664
+ # 获取智能体列表
665
+
666
+ # @param request: Request instance for DescribeAIAgentInfoList.
667
+ # @type request: :class:`Tencentcloud::ccc::V20200210::DescribeAIAgentInfoListRequest`
668
+ # @rtype: :class:`Tencentcloud::ccc::V20200210::DescribeAIAgentInfoListResponse`
669
+ def DescribeAIAgentInfoList(request)
670
+ body = send_request('DescribeAIAgentInfoList', request.serialize)
671
+ response = JSON.parse(body)
672
+ if response['Response'].key?('Error') == false
673
+ model = DescribeAIAgentInfoListResponse.new
674
+ model.deserialize(response['Response'])
675
+ model
676
+ else
677
+ code = response['Response']['Error']['Code']
678
+ message = response['Response']['Error']['Message']
679
+ reqid = response['Response']['RequestId']
680
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
681
+ end
682
+ rescue TencentCloud::Common::TencentCloudSDKException => e
683
+ raise e
684
+ rescue StandardError => e
685
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
686
+ end
687
+
664
688
  # 获取 AI 会话分析结果
665
689
 
666
690
  # @param request: Request instance for DescribeAIAnalysisResult.
@@ -17,6 +17,26 @@
17
17
  module TencentCloud
18
18
  module Ccc
19
19
  module V20200210
20
+ # 智能体信息
21
+ class AIAgentInfo < TencentCloud::Common::AbstractModel
22
+ # @param AIAgentId: 智能体ID
23
+ # @type AIAgentId: Integer
24
+ # @param AIAgentName: 智能体名称
25
+ # @type AIAgentName: String
26
+
27
+ attr_accessor :AIAgentId, :AIAgentName
28
+
29
+ def initialize(aiagentid=nil, aiagentname=nil)
30
+ @AIAgentId = aiagentid
31
+ @AIAgentName = aiagentname
32
+ end
33
+
34
+ def deserialize(params)
35
+ @AIAgentId = params['AIAgentId']
36
+ @AIAgentName = params['AIAgentName']
37
+ end
38
+ end
39
+
20
40
  # AI会话分析结果
21
41
  class AIAnalysisResult < TencentCloud::Common::AbstractModel
22
42
  # @param Type: summary: 会话小结
@@ -377,8 +397,8 @@ module TencentCloud
377
397
 
378
398
  attr_accessor :User, :Message, :Timestamp, :Start, :End
379
399
  extend Gem::Deprecate
380
- deprecate :Timestamp, :none, 2025, 10
381
- deprecate :Timestamp=, :none, 2025, 10
400
+ deprecate :Timestamp, :none, 2025, 11
401
+ deprecate :Timestamp=, :none, 2025, 11
382
402
 
383
403
  def initialize(user=nil, message=nil, timestamp=nil, start=nil, _end=nil)
384
404
  @User = user
@@ -599,8 +619,8 @@ module TencentCloud
599
619
 
600
620
  attr_accessor :SdkAppId, :StaffEmail, :SkillGroupList, :StaffSkillGroupList
601
621
  extend Gem::Deprecate
602
- deprecate :SkillGroupList, :none, 2025, 10
603
- deprecate :SkillGroupList=, :none, 2025, 10
622
+ deprecate :SkillGroupList, :none, 2025, 11
623
+ deprecate :SkillGroupList=, :none, 2025, 11
604
624
 
605
625
  def initialize(sdkappid=nil, staffemail=nil, skillgrouplist=nil, staffskillgrouplist=nil)
606
626
  @SdkAppId = sdkappid
@@ -1082,8 +1102,8 @@ module TencentCloud
1082
1102
 
1083
1103
  attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables
1084
1104
  extend Gem::Deprecate
1085
- deprecate :PromptVariables, :none, 2025, 10
1086
- deprecate :PromptVariables=, :none, 2025, 10
1105
+ deprecate :PromptVariables, :none, 2025, 11
1106
+ deprecate :PromptVariables=, :none, 2025, 11
1087
1107
 
1088
1108
  def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil)
1089
1109
  @SdkAppId = sdkappid
@@ -1377,8 +1397,8 @@ module TencentCloud
1377
1397
 
1378
1398
  attr_accessor :SdkAppId, :Callee, :LLMType, :APIKey, :APIUrl, :SystemPrompt, :Model, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :WelcomeMessagePriority, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :TransferFunctionEnable, :TransferItems, :NotifyDuration, :NotifyMessage, :NotifyMaxCount, :CustomTTSConfig, :PromptVariables, :VadSilenceTime, :ExtractConfig, :Temperature, :Variables, :TopP, :VadLevel, :ToneWord, :EnableComplianceAudio
1379
1399
  extend Gem::Deprecate
1380
- deprecate :PromptVariables, :none, 2025, 10
1381
- deprecate :PromptVariables=, :none, 2025, 10
1400
+ deprecate :PromptVariables, :none, 2025, 11
1401
+ deprecate :PromptVariables=, :none, 2025, 11
1382
1402
 
1383
1403
  def initialize(sdkappid=nil, callee=nil, llmtype=nil, apikey=nil, apiurl=nil, systemprompt=nil, model=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, welcomemessagepriority=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, transferfunctionenable=nil, transferitems=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil, promptvariables=nil, vadsilencetime=nil, extractconfig=nil, temperature=nil, variables=nil, topp=nil, vadlevel=nil, toneword=nil, enablecomplianceaudio=nil)
1384
1404
  @SdkAppId = sdkappid
@@ -1799,8 +1819,8 @@ module TencentCloud
1799
1819
 
1800
1820
  attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
1801
1821
  extend Gem::Deprecate
1802
- deprecate :Uui, :none, 2025, 10
1803
- deprecate :Uui=, :none, 2025, 10
1822
+ deprecate :Uui, :none, 2025, 11
1823
+ deprecate :Uui=, :none, 2025, 11
1804
1824
 
1805
1825
  def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
1806
1826
  @SdkAppId = sdkappid
@@ -2535,6 +2555,61 @@ module TencentCloud
2535
2555
  end
2536
2556
  end
2537
2557
 
2558
+ # DescribeAIAgentInfoList请求参数结构体
2559
+ class DescribeAIAgentInfoListRequest < TencentCloud::Common::AbstractModel
2560
+ # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
2561
+ # @type SdkAppId: Integer
2562
+ # @param PageSize: 分页尺寸,上限 100
2563
+ # @type PageSize: Integer
2564
+ # @param PageNumber: 分页页码,从 0 开始
2565
+ # @type PageNumber: Integer
2566
+
2567
+ attr_accessor :SdkAppId, :PageSize, :PageNumber
2568
+
2569
+ def initialize(sdkappid=nil, pagesize=nil, pagenumber=nil)
2570
+ @SdkAppId = sdkappid
2571
+ @PageSize = pagesize
2572
+ @PageNumber = pagenumber
2573
+ end
2574
+
2575
+ def deserialize(params)
2576
+ @SdkAppId = params['SdkAppId']
2577
+ @PageSize = params['PageSize']
2578
+ @PageNumber = params['PageNumber']
2579
+ end
2580
+ end
2581
+
2582
+ # DescribeAIAgentInfoList返回参数结构体
2583
+ class DescribeAIAgentInfoListResponse < TencentCloud::Common::AbstractModel
2584
+ # @param AIAgentInfoList: 智能体信息列表
2585
+ # @type AIAgentInfoList: Array
2586
+ # @param TotalCount: 智能体总数量
2587
+ # @type TotalCount: Integer
2588
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2589
+ # @type RequestId: String
2590
+
2591
+ attr_accessor :AIAgentInfoList, :TotalCount, :RequestId
2592
+
2593
+ def initialize(aiagentinfolist=nil, totalcount=nil, requestid=nil)
2594
+ @AIAgentInfoList = aiagentinfolist
2595
+ @TotalCount = totalcount
2596
+ @RequestId = requestid
2597
+ end
2598
+
2599
+ def deserialize(params)
2600
+ unless params['AIAgentInfoList'].nil?
2601
+ @AIAgentInfoList = []
2602
+ params['AIAgentInfoList'].each do |i|
2603
+ aiagentinfo_tmp = AIAgentInfo.new
2604
+ aiagentinfo_tmp.deserialize(i)
2605
+ @AIAgentInfoList << aiagentinfo_tmp
2606
+ end
2607
+ end
2608
+ @TotalCount = params['TotalCount']
2609
+ @RequestId = params['RequestId']
2610
+ end
2611
+ end
2612
+
2538
2613
  # DescribeAIAnalysisResult请求参数结构体
2539
2614
  class DescribeAIAnalysisResultRequest < TencentCloud::Common::AbstractModel
2540
2615
  # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
@@ -3206,10 +3281,10 @@ module TencentCloud
3206
3281
 
3207
3282
  attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
3208
3283
  extend Gem::Deprecate
3209
- deprecate :InstanceId, :none, 2025, 10
3210
- deprecate :InstanceId=, :none, 2025, 10
3211
- deprecate :CdrId, :none, 2025, 10
3212
- deprecate :CdrId=, :none, 2025, 10
3284
+ deprecate :InstanceId, :none, 2025, 11
3285
+ deprecate :InstanceId=, :none, 2025, 11
3286
+ deprecate :CdrId, :none, 2025, 11
3287
+ deprecate :CdrId=, :none, 2025, 11
3213
3288
 
3214
3289
  def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
3215
3290
  @SdkAppId = sdkappid
@@ -3535,8 +3610,8 @@ module TencentCloud
3535
3610
 
3536
3611
  attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
3537
3612
  extend Gem::Deprecate
3538
- deprecate :InstanceId, :none, 2025, 10
3539
- deprecate :InstanceId=, :none, 2025, 10
3613
+ deprecate :InstanceId, :none, 2025, 11
3614
+ deprecate :InstanceId=, :none, 2025, 11
3540
3615
 
3541
3616
  def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
3542
3617
  @StartTimestamp = starttimestamp
@@ -3573,8 +3648,8 @@ module TencentCloud
3573
3648
 
3574
3649
  attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
3575
3650
  extend Gem::Deprecate
3576
- deprecate :IMCdrs, :none, 2025, 10
3577
- deprecate :IMCdrs=, :none, 2025, 10
3651
+ deprecate :IMCdrs, :none, 2025, 11
3652
+ deprecate :IMCdrs=, :none, 2025, 11
3578
3653
 
3579
3654
  def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
3580
3655
  @TotalCount = totalcount
@@ -4066,8 +4141,8 @@ module TencentCloud
4066
4141
 
4067
4142
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
4068
4143
  extend Gem::Deprecate
4069
- deprecate :TelCdrs, :none, 2025, 10
4070
- deprecate :TelCdrs=, :none, 2025, 10
4144
+ deprecate :TelCdrs, :none, 2025, 11
4145
+ deprecate :TelCdrs=, :none, 2025, 11
4071
4146
 
4072
4147
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
4073
4148
  @TotalCount = totalcount
@@ -4559,8 +4634,8 @@ module TencentCloud
4559
4634
 
4560
4635
  attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
4561
4636
  extend Gem::Deprecate
4562
- deprecate :VoipCallInCount, :none, 2025, 10
4563
- deprecate :VoipCallInCount=, :none, 2025, 10
4637
+ deprecate :VoipCallInCount, :none, 2025, 11
4638
+ deprecate :VoipCallInCount=, :none, 2025, 11
4564
4639
 
4565
4640
  def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
4566
4641
  @TelCallOutCount = telcalloutcount
@@ -4608,8 +4683,8 @@ module TencentCloud
4608
4683
 
4609
4684
  attr_accessor :StartTimeStamp, :EndTimeStamp, :InstanceId, :Limit, :Offset, :SdkAppId, :PageSize, :PageNumber, :Phones, :SessionIds
4610
4685
  extend Gem::Deprecate
4611
- deprecate :InstanceId, :none, 2025, 10
4612
- deprecate :InstanceId=, :none, 2025, 10
4686
+ deprecate :InstanceId, :none, 2025, 11
4687
+ deprecate :InstanceId=, :none, 2025, 11
4613
4688
 
4614
4689
  def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, limit=nil, offset=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, phones=nil, sessionids=nil)
4615
4690
  @StartTimeStamp = starttimestamp
@@ -4651,8 +4726,8 @@ module TencentCloud
4651
4726
 
4652
4727
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
4653
4728
  extend Gem::Deprecate
4654
- deprecate :TelCdrs, :none, 2025, 10
4655
- deprecate :TelCdrs=, :none, 2025, 10
4729
+ deprecate :TelCdrs, :none, 2025, 11
4730
+ deprecate :TelCdrs=, :none, 2025, 11
4656
4731
 
4657
4732
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
4658
4733
  @TotalCount = totalcount
@@ -6379,10 +6454,10 @@ module TencentCloud
6379
6454
 
6380
6455
  attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
6381
6456
  extend Gem::Deprecate
6382
- deprecate :RoleId, :none, 2025, 10
6383
- deprecate :RoleId=, :none, 2025, 10
6384
- deprecate :RoleIdList, :none, 2025, 10
6385
- deprecate :RoleIdList=, :none, 2025, 10
6457
+ deprecate :RoleId, :none, 2025, 11
6458
+ deprecate :RoleId=, :none, 2025, 11
6459
+ deprecate :RoleIdList, :none, 2025, 11
6460
+ deprecate :RoleIdList=, :none, 2025, 11
6386
6461
 
6387
6462
  def initialize(name=nil, mail=nil, phone=nil, nick=nil, staffnumber=nil, roleid=nil, roleidlist=nil, rolelist=nil, skillgrouplist=nil, lastmodifytimestamp=nil, extensionnumber=nil, forwardingconfig=nil)
6388
6463
  @Name = name
@@ -6794,8 +6869,8 @@ module TencentCloud
6794
6869
 
6795
6870
  attr_accessor :Caller, :Callee, :Time, :Direction, :CallType, :Duration, :RecordURL, :RecordId, :SeatUser, :EndStatus, :SkillGroup, :CallerLocation, :IVRDuration, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :IVRKeyPressed, :HungUpSide, :ServeParticipants, :SkillGroupId, :EndStatusString, :StartTimestamp, :QueuedTimestamp, :PostIVRKeyPressed, :QueuedSkillGroupId, :SessionId, :ProtectedCaller, :ProtectedCallee, :Uui, :UUI, :IVRKeyPressedEx, :AsrUrl, :AsrStatus, :CustomRecordURL, :Remark, :QueuedSkillGroupName, :VoicemailRecordURL, :VoicemailAsrURL
6796
6871
  extend Gem::Deprecate
6797
- deprecate :Uui, :none, 2025, 10
6798
- deprecate :Uui=, :none, 2025, 10
6872
+ deprecate :Uui, :none, 2025, 11
6873
+ deprecate :Uui=, :none, 2025, 11
6799
6874
 
6800
6875
  def initialize(caller=nil, callee=nil, time=nil, direction=nil, calltype=nil, duration=nil, recordurl=nil, recordid=nil, seatuser=nil, endstatus=nil, skillgroup=nil, callerlocation=nil, ivrduration=nil, ringtimestamp=nil, accepttimestamp=nil, endedtimestamp=nil, ivrkeypressed=nil, hungupside=nil, serveparticipants=nil, skillgroupid=nil, endstatusstring=nil, starttimestamp=nil, queuedtimestamp=nil, postivrkeypressed=nil, queuedskillgroupid=nil, sessionid=nil, protectedcaller=nil, protectedcallee=nil, uui=nil, ivrkeypressedex=nil, asrurl=nil, asrstatus=nil, customrecordurl=nil, remark=nil, queuedskillgroupname=nil, voicemailrecordurl=nil, voicemailasrurl=nil)
6801
6876
  @Caller = caller
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ccc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1161
4
+ version: 3.0.1162
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-04 00:00:00.000000000 Z
11
+ date: 2025-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common