tencentcloud-sdk-lke 3.0.1192 → 3.0.1194

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: dd71087734f70b0a8c55887982b3756e494e9a3a
4
- data.tar.gz: 598eb1601b04931f89f74413ca86e11d0ecb69e8
3
+ metadata.gz: 837cceb3aa6aaa14c73b23a6449765d928d162dc
4
+ data.tar.gz: 48f99c5b14eabd3598bc4c7d0278a141245a4e5c
5
5
  SHA512:
6
- metadata.gz: e7a28cfc7364a1eff6e455c9818503a5f104035b0485a9da1ffda887df0041134f4c0f9e817bcdb4ce529707c80cba6670aa4be5e8d2d806ece4d3ed4d9e637c
7
- data.tar.gz: 4bc49f43769800efbda2b9649f6afa53f3a9e2ea89aa9402456e14aeffda78ae3f4afd332b773d10c3c162c593bffbbb26d77677e8805cf395e209ffb2e5ab8c
6
+ metadata.gz: c840bedd386c0d6d9b333ebe828b97d249a2dc6005e184c80137103af4a4fee8bd321e5d79cb3a35b1cb7a83793b0626822019323be7156cd55c79f8b66feebe
7
+ data.tar.gz: 4f27b2fd15d5898a88d154efca48dc554356f426774085cf1ee4880da3e64d3e7498f30e21071adf7f860a9c886356ea541fdb380b9cbf989ad443b35ea833b9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1192
1
+ 3.0.1194
@@ -29,6 +29,30 @@ module TencentCloud
29
29
  end
30
30
 
31
31
 
32
+ # 工作流工具节点异步回调
33
+
34
+ # @param request: Request instance for CallbackWorkflowToolNode.
35
+ # @type request: :class:`Tencentcloud::lke::V20231130::CallbackWorkflowToolNodeRequest`
36
+ # @rtype: :class:`Tencentcloud::lke::V20231130::CallbackWorkflowToolNodeResponse`
37
+ def CallbackWorkflowToolNode(request)
38
+ body = send_request('CallbackWorkflowToolNode', request.serialize)
39
+ response = JSON.parse(body)
40
+ if response['Response'].key?('Error') == false
41
+ model = CallbackWorkflowToolNodeResponse.new
42
+ model.deserialize(response['Response'])
43
+ model
44
+ else
45
+ code = response['Response']['Error']['Code']
46
+ message = response['Response']['Error']['Message']
47
+ reqid = response['Response']['RequestId']
48
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
49
+ end
50
+ rescue TencentCloud::Common::TencentCloudSDKException => e
51
+ raise e
52
+ rescue StandardError => e
53
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
+ end
55
+
32
56
  # 检查属性下的标签名是否存在
33
57
 
34
58
  # @param request: Request instance for CheckAttributeLabelExist.
@@ -1671,8 +1671,8 @@ module TencentCloud
1671
1671
 
1672
1672
  attr_accessor :AttrBizId, :AttrKey, :AttrName, :LabelNames, :IsUpdating, :Status, :StatusDesc, :LabelTotalCount
1673
1673
  extend Gem::Deprecate
1674
- deprecate :AttrKey, :none, 2025, 12
1675
- deprecate :AttrKey=, :none, 2025, 12
1674
+ deprecate :AttrKey, :none, 2026, 1
1675
+ deprecate :AttrKey=, :none, 2026, 1
1676
1676
 
1677
1677
  def initialize(attrbizid=nil, attrkey=nil, attrname=nil, labelnames=nil, isupdating=nil, status=nil, statusdesc=nil, labeltotalcount=nil)
1678
1678
  @AttrBizId = attrbizid
@@ -1926,6 +1926,62 @@ module TencentCloud
1926
1926
  end
1927
1927
  end
1928
1928
 
1929
+ # CallbackWorkflowToolNode请求参数结构体
1930
+ class CallbackWorkflowToolNodeRequest < TencentCloud::Common::AbstractModel
1931
+ # @param CallbackToken: ADP调用外部API时,通过HTTP Header(X-ADP-Callback-Token)传递回调CallbackToken
1932
+ # @type CallbackToken: String
1933
+ # @param Result: 回调结果,可选,为JSON字符串
1934
+ # @type Result: String
1935
+ # @param LoginUin: 登录用户主账号(集成商模式必填)
1936
+ # @type LoginUin: String
1937
+ # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
1938
+ # @type LoginSubAccountUin: String
1939
+ # @param AppBizId: 应用ID
1940
+ # @type AppBizId: String
1941
+
1942
+ attr_accessor :CallbackToken, :Result, :LoginUin, :LoginSubAccountUin, :AppBizId
1943
+
1944
+ def initialize(callbacktoken=nil, result=nil, loginuin=nil, loginsubaccountuin=nil, appbizid=nil)
1945
+ @CallbackToken = callbacktoken
1946
+ @Result = result
1947
+ @LoginUin = loginuin
1948
+ @LoginSubAccountUin = loginsubaccountuin
1949
+ @AppBizId = appbizid
1950
+ end
1951
+
1952
+ def deserialize(params)
1953
+ @CallbackToken = params['CallbackToken']
1954
+ @Result = params['Result']
1955
+ @LoginUin = params['LoginUin']
1956
+ @LoginSubAccountUin = params['LoginSubAccountUin']
1957
+ @AppBizId = params['AppBizId']
1958
+ end
1959
+ end
1960
+
1961
+ # CallbackWorkflowToolNode返回参数结构体
1962
+ class CallbackWorkflowToolNodeResponse < TencentCloud::Common::AbstractModel
1963
+ # @param Code: 状态码
1964
+ # @type Code: Integer
1965
+ # @param Msg: 状态详情
1966
+ # @type Msg: String
1967
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1968
+ # @type RequestId: String
1969
+
1970
+ attr_accessor :Code, :Msg, :RequestId
1971
+
1972
+ def initialize(code=nil, msg=nil, requestid=nil)
1973
+ @Code = code
1974
+ @Msg = msg
1975
+ @RequestId = requestid
1976
+ end
1977
+
1978
+ def deserialize(params)
1979
+ @Code = params['Code']
1980
+ @Msg = params['Msg']
1981
+ @RequestId = params['RequestId']
1982
+ end
1983
+ end
1984
+
1929
1985
  # 分类信息
1930
1986
  class CateInfo < TencentCloud::Common::AbstractModel
1931
1987
  # @param CateBizId: 分类ID
@@ -2957,8 +3013,8 @@ module TencentCloud
2957
3013
 
2958
3014
  attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :KnowledgeType
2959
3015
  extend Gem::Deprecate
2960
- deprecate :EmbeddingModel, :none, 2025, 12
2961
- deprecate :EmbeddingModel=, :none, 2025, 12
3016
+ deprecate :EmbeddingModel, :none, 2026, 1
3017
+ deprecate :EmbeddingModel=, :none, 2026, 1
2962
3018
 
2963
3019
  def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, knowledgetype=nil)
2964
3020
  @KnowledgeName = knowledgename
@@ -3845,10 +3901,10 @@ module TencentCloud
3845
3901
 
3846
3902
  attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType, :SpaceId, :StatStartTime, :StatEndTime
3847
3903
  extend Gem::Deprecate
3848
- deprecate :StartTime, :none, 2025, 12
3849
- deprecate :StartTime=, :none, 2025, 12
3850
- deprecate :EndTime, :none, 2025, 12
3851
- deprecate :EndTime=, :none, 2025, 12
3904
+ deprecate :StartTime, :none, 2026, 1
3905
+ deprecate :StartTime=, :none, 2026, 1
3906
+ deprecate :EndTime, :none, 2026, 1
3907
+ deprecate :EndTime=, :none, 2026, 1
3852
3908
 
3853
3909
  def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil, apptype=nil, spaceid=nil, statstarttime=nil, statendtime=nil)
3854
3910
  @UinAccount = uinaccount
@@ -5043,10 +5099,10 @@ module TencentCloud
5043
5099
 
5044
5100
  attr_accessor :UinAccount, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :AppType, :SubScenes, :StatStartTime, :StatEndTime
5045
5101
  extend Gem::Deprecate
5046
- deprecate :StartTime, :none, 2025, 12
5047
- deprecate :StartTime=, :none, 2025, 12
5048
- deprecate :EndTime, :none, 2025, 12
5049
- deprecate :EndTime=, :none, 2025, 12
5102
+ deprecate :StartTime, :none, 2026, 1
5103
+ deprecate :StartTime=, :none, 2026, 1
5104
+ deprecate :EndTime, :none, 2026, 1
5105
+ deprecate :EndTime=, :none, 2026, 1
5050
5106
 
5051
5107
  def initialize(uinaccount=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, apptype=nil, subscenes=nil, statstarttime=nil, statendtime=nil)
5052
5108
  @UinAccount = uinaccount
@@ -5155,10 +5211,10 @@ module TencentCloud
5155
5211
 
5156
5212
  attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType, :SpaceId, :StatStartTime, :StatEndTime
5157
5213
  extend Gem::Deprecate
5158
- deprecate :StartTime, :none, 2025, 12
5159
- deprecate :StartTime=, :none, 2025, 12
5160
- deprecate :EndTime, :none, 2025, 12
5161
- deprecate :EndTime=, :none, 2025, 12
5214
+ deprecate :StartTime, :none, 2026, 1
5215
+ deprecate :StartTime=, :none, 2026, 1
5216
+ deprecate :EndTime, :none, 2026, 1
5217
+ deprecate :EndTime=, :none, 2026, 1
5162
5218
 
5163
5219
  def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil, apptype=nil, spaceid=nil, statstarttime=nil, statendtime=nil)
5164
5220
  @UinAccount = uinaccount
@@ -6496,8 +6552,8 @@ module TencentCloud
6496
6552
 
6497
6553
  attr_accessor :Type, :BotAppKey, :VisitorBizId, :VisitorLabels
6498
6554
  extend Gem::Deprecate
6499
- deprecate :VisitorLabels, :none, 2025, 12
6500
- deprecate :VisitorLabels=, :none, 2025, 12
6555
+ deprecate :VisitorLabels, :none, 2026, 1
6556
+ deprecate :VisitorLabels=, :none, 2026, 1
6501
6557
 
6502
6558
  def initialize(type=nil, botappkey=nil, visitorbizid=nil, visitorlabels=nil)
6503
6559
  @Type = type
@@ -7637,10 +7693,10 @@ module TencentCloud
7637
7693
 
7638
7694
  attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :OwnerStaffId
7639
7695
  extend Gem::Deprecate
7640
- deprecate :EmbeddingModel, :none, 2025, 12
7641
- deprecate :EmbeddingModel=, :none, 2025, 12
7642
- deprecate :QaExtractModel, :none, 2025, 12
7643
- deprecate :QaExtractModel=, :none, 2025, 12
7696
+ deprecate :EmbeddingModel, :none, 2026, 1
7697
+ deprecate :EmbeddingModel=, :none, 2026, 1
7698
+ deprecate :QaExtractModel, :none, 2026, 1
7699
+ deprecate :QaExtractModel=, :none, 2026, 1
7644
7700
 
7645
7701
  def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, ownerstaffid=nil)
7646
7702
  @KnowledgeName = knowledgename
@@ -7921,8 +7977,8 @@ module TencentCloud
7921
7977
 
7922
7978
  attr_accessor :AppBizId, :BotBizId, :PageNumber, :PageSize, :ChannelType, :ChannelStatus
7923
7979
  extend Gem::Deprecate
7924
- deprecate :BotBizId, :none, 2025, 12
7925
- deprecate :BotBizId=, :none, 2025, 12
7980
+ deprecate :BotBizId, :none, 2026, 1
7981
+ deprecate :BotBizId=, :none, 2026, 1
7926
7982
 
7927
7983
  def initialize(appbizid=nil, botbizid=nil, pagenumber=nil, pagesize=nil, channeltype=nil, channelstatus=nil)
7928
7984
  @AppBizId = appbizid
@@ -13879,8 +13935,8 @@ module TencentCloud
13879
13935
 
13880
13936
  attr_accessor :RunEnv, :AppBizId, :WorkflowRunId, :WorkflowId, :Name, :Output, :State, :FailMessage, :TotalTokens, :CreateTime, :StartTime, :EndTime, :DialogJson, :Query, :MainModelName, :CustomVariables, :WorkflowGraph
13881
13937
  extend Gem::Deprecate
13882
- deprecate :DialogJson, :none, 2025, 12
13883
- deprecate :DialogJson=, :none, 2025, 12
13938
+ deprecate :DialogJson, :none, 2026, 1
13939
+ deprecate :DialogJson=, :none, 2026, 1
13884
13940
 
13885
13941
  def initialize(runenv=nil, appbizid=nil, workflowrunid=nil, workflowid=nil, name=nil, output=nil, state=nil, failmessage=nil, totaltokens=nil, createtime=nil, starttime=nil, endtime=nil, dialogjson=nil, query=nil, mainmodelname=nil, customvariables=nil, workflowgraph=nil)
13886
13942
  @RunEnv = runenv
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lke
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1192
4
+ version: 3.0.1194
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-12-29 00:00:00.000000000 Z
11
+ date: 2025-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common