tencentcloud-sdk-lke 3.0.1079 → 3.0.1081

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: ef1803a3c9178f66cf9e42ae2694b85bd5f67fe4
4
- data.tar.gz: 2a3796f6ad2a9d050bbbacafa7d03aa1ecee3d56
3
+ metadata.gz: f4cc29d828f66ede1731500cdf795262992f603c
4
+ data.tar.gz: ffdc6f11689faef9a990fb86567fb05db13b8862
5
5
  SHA512:
6
- metadata.gz: 8ee2d463d71718634b4931bbc048bdd15e74e6b599ea92a0f5515c47908784ec4ebcf10da284a2b8d835c629fafc67d193d7859b43097ecca2f6a6fdaeaedf91
7
- data.tar.gz: 1d9169c11495f1191ce68fd2b4db3a190b19fccbc1c996f73851d81eefb4771e9bf18feb9eba1adcb88ce7342d59eda782b3ad23f58c79e2f5167fb32d05ef2d
6
+ metadata.gz: 696cf929f85b56af43e179da1d0c8b2c0cd28694ae3d4a1c8262bc1023c500c086187231bb9fc0d40cefe54fbb2a1ce3e29c9bffd5ea39589f4ed61523824024
7
+ data.tar.gz: 4c4a4c25c77f8a6e9e171a2e82e11ffcb9c33a996440ec4d734b57a49b33d972165d66d38735641d65329278a454e0b8319e00fb342eabe51dbe9545a844d75b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1079
1
+ 3.0.1081
@@ -343,6 +343,31 @@ module TencentCloud
343
343
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
344
344
  end
345
345
 
346
+ # 本接口用来创建工作流的异步运行实例,创建成功后工作流会在后台异步运行,接口返回工作流运行实例ID(WorkflowRunId)等信息。后面可通过调用DescribeWorkflowRun接口查工作流运行的详情。
347
+ # 注意:工作流的异步运行是基于应用的,需要先把对应的应用配置成“单工作流模式”,并且打开“异步调用”的开关,才能创建成功。
348
+
349
+ # @param request: Request instance for CreateWorkflowRun.
350
+ # @type request: :class:`Tencentcloud::lke::V20231130::CreateWorkflowRunRequest`
351
+ # @rtype: :class:`Tencentcloud::lke::V20231130::CreateWorkflowRunResponse`
352
+ def CreateWorkflowRun(request)
353
+ body = send_request('CreateWorkflowRun', request.serialize)
354
+ response = JSON.parse(body)
355
+ if response['Response'].key?('Error') == false
356
+ model = CreateWorkflowRunResponse.new
357
+ model.deserialize(response['Response'])
358
+ model
359
+ else
360
+ code = response['Response']['Error']['Code']
361
+ message = response['Response']['Error']['Message']
362
+ reqid = response['Response']['RequestId']
363
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
364
+ end
365
+ rescue TencentCloud::Common::TencentCloudSDKException => e
366
+ raise e
367
+ rescue StandardError => e
368
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
369
+ end
370
+
346
371
  # 删除应用
347
372
 
348
373
  # @param request: Request instance for DeleteApp.
@@ -751,6 +776,30 @@ module TencentCloud
751
776
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
752
777
  end
753
778
 
779
+ # 通过DescribeWorkflowRun接口获取了工作流异步运行的整体内容,其中包含了基本的节点信息,再通用本接口可查看节点的运行详情(包括输入、输出、日志等)。
780
+
781
+ # @param request: Request instance for DescribeNodeRun.
782
+ # @type request: :class:`Tencentcloud::lke::V20231130::DescribeNodeRunRequest`
783
+ # @rtype: :class:`Tencentcloud::lke::V20231130::DescribeNodeRunResponse`
784
+ def DescribeNodeRun(request)
785
+ body = send_request('DescribeNodeRun', request.serialize)
786
+ response = JSON.parse(body)
787
+ if response['Response'].key?('Error') == false
788
+ model = DescribeNodeRunResponse.new
789
+ model.deserialize(response['Response'])
790
+ model
791
+ else
792
+ code = response['Response']['Error']['Code']
793
+ message = response['Response']['Error']['Message']
794
+ reqid = response['Response']['RequestId']
795
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
796
+ end
797
+ rescue TencentCloud::Common::TencentCloudSDKException => e
798
+ raise e
799
+ rescue StandardError => e
800
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
801
+ end
802
+
754
803
  # 问答详情
755
804
 
756
805
  # @param request: Request instance for DescribeQA.
@@ -1039,6 +1088,30 @@ module TencentCloud
1039
1088
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1040
1089
  end
1041
1090
 
1091
+ # 创建了工作流的异步运行实例后,通过本接口可以查询整体的运行详情。
1092
+
1093
+ # @param request: Request instance for DescribeWorkflowRun.
1094
+ # @type request: :class:`Tencentcloud::lke::V20231130::DescribeWorkflowRunRequest`
1095
+ # @rtype: :class:`Tencentcloud::lke::V20231130::DescribeWorkflowRunResponse`
1096
+ def DescribeWorkflowRun(request)
1097
+ body = send_request('DescribeWorkflowRun', request.serialize)
1098
+ response = JSON.parse(body)
1099
+ if response['Response'].key?('Error') == false
1100
+ model = DescribeWorkflowRunResponse.new
1101
+ model.deserialize(response['Response'])
1102
+ model
1103
+ else
1104
+ code = response['Response']['Error']['Code']
1105
+ message = response['Response']['Error']['Message']
1106
+ reqid = response['Response']['RequestId']
1107
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1108
+ end
1109
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1110
+ raise e
1111
+ rescue StandardError => e
1112
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1113
+ end
1114
+
1042
1115
  # 导出属性标签
1043
1116
 
1044
1117
  # @param request: Request instance for ExportAttributeLabel.
@@ -1978,6 +2051,30 @@ module TencentCloud
1978
2051
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1979
2052
  end
1980
2053
 
2054
+ # 此接口可查询已创建的所有工作流异步运行实例。
2055
+
2056
+ # @param request: Request instance for ListWorkflowRuns.
2057
+ # @type request: :class:`Tencentcloud::lke::V20231130::ListWorkflowRunsRequest`
2058
+ # @rtype: :class:`Tencentcloud::lke::V20231130::ListWorkflowRunsResponse`
2059
+ def ListWorkflowRuns(request)
2060
+ body = send_request('ListWorkflowRuns', request.serialize)
2061
+ response = JSON.parse(body)
2062
+ if response['Response'].key?('Error') == false
2063
+ model = ListWorkflowRunsResponse.new
2064
+ model.deserialize(response['Response'])
2065
+ model
2066
+ else
2067
+ code = response['Response']['Error']['Code']
2068
+ message = response['Response']['Error']['Message']
2069
+ reqid = response['Response']['RequestId']
2070
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2071
+ end
2072
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2073
+ raise e
2074
+ rescue StandardError => e
2075
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2076
+ end
2077
+
1981
2078
  # 修改应用请求结构体
1982
2079
 
1983
2080
  # @param request: Request instance for ModifyApp.
@@ -2466,6 +2563,30 @@ module TencentCloud
2466
2563
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2467
2564
  end
2468
2565
 
2566
+ # 此接口用来停止正在进行的工作流异步运行实例。
2567
+
2568
+ # @param request: Request instance for StopWorkflowRun.
2569
+ # @type request: :class:`Tencentcloud::lke::V20231130::StopWorkflowRunRequest`
2570
+ # @rtype: :class:`Tencentcloud::lke::V20231130::StopWorkflowRunResponse`
2571
+ def StopWorkflowRun(request)
2572
+ body = send_request('StopWorkflowRun', request.serialize)
2573
+ response = JSON.parse(body)
2574
+ if response['Response'].key?('Error') == false
2575
+ model = StopWorkflowRunResponse.new
2576
+ model.deserialize(response['Response'])
2577
+ model
2578
+ else
2579
+ code = response['Response']['Error']['Code']
2580
+ message = response['Response']['Error']['Message']
2581
+ reqid = response['Response']['RequestId']
2582
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2583
+ end
2584
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2585
+ raise e
2586
+ rescue StandardError => e
2587
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2588
+ end
2589
+
2469
2590
  # 更新共享知识库。
2470
2591
 
2471
2592
  # @param request: Request instance for UpdateSharedKnowledge.
@@ -848,10 +848,12 @@ module TencentCloud
848
848
  # @param SubScene: 筛选子场景
849
849
  # 注意:此字段可能返回 null,表示取不到有效值。
850
850
  # @type SubScene: String
851
+ # @param BillingTag: 账单明细对应的自定义tag
852
+ # @type BillingTag: String
851
853
 
852
- attr_accessor :Id, :CallTime, :TotalTokenUsage, :InputTokenUsage, :OutputTokenUsage, :SearchUsage, :ModelName, :CallType, :UinAccount, :AppName, :PageUsage, :SubScene
854
+ attr_accessor :Id, :CallTime, :TotalTokenUsage, :InputTokenUsage, :OutputTokenUsage, :SearchUsage, :ModelName, :CallType, :UinAccount, :AppName, :PageUsage, :SubScene, :BillingTag
853
855
 
854
- def initialize(id=nil, calltime=nil, totaltokenusage=nil, inputtokenusage=nil, outputtokenusage=nil, searchusage=nil, modelname=nil, calltype=nil, uinaccount=nil, appname=nil, pageusage=nil, subscene=nil)
856
+ def initialize(id=nil, calltime=nil, totaltokenusage=nil, inputtokenusage=nil, outputtokenusage=nil, searchusage=nil, modelname=nil, calltype=nil, uinaccount=nil, appname=nil, pageusage=nil, subscene=nil, billingtag=nil)
855
857
  @Id = id
856
858
  @CallTime = calltime
857
859
  @TotalTokenUsage = totaltokenusage
@@ -864,6 +866,7 @@ module TencentCloud
864
866
  @AppName = appname
865
867
  @PageUsage = pageusage
866
868
  @SubScene = subscene
869
+ @BillingTag = billingtag
867
870
  end
868
871
 
869
872
  def deserialize(params)
@@ -879,6 +882,7 @@ module TencentCloud
879
882
  @AppName = params['AppName']
880
883
  @PageUsage = params['PageUsage']
881
884
  @SubScene = params['SubScene']
885
+ @BillingTag = params['BillingTag']
882
886
  end
883
887
  end
884
888
 
@@ -1804,6 +1808,88 @@ module TencentCloud
1804
1808
  end
1805
1809
  end
1806
1810
 
1811
+ # CreateWorkflowRun请求参数结构体
1812
+ class CreateWorkflowRunRequest < TencentCloud::Common::AbstractModel
1813
+ # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
1814
+ # @type RunEnv: Integer
1815
+ # @param AppBizId: 应用ID
1816
+ # @type AppBizId: String
1817
+ # @param Query: 用户输入的内容
1818
+ # @type Query: String
1819
+ # @param CustomVariables: API参数配置
1820
+ # @type CustomVariables: Array
1821
+
1822
+ attr_accessor :RunEnv, :AppBizId, :Query, :CustomVariables
1823
+
1824
+ def initialize(runenv=nil, appbizid=nil, query=nil, customvariables=nil)
1825
+ @RunEnv = runenv
1826
+ @AppBizId = appbizid
1827
+ @Query = query
1828
+ @CustomVariables = customvariables
1829
+ end
1830
+
1831
+ def deserialize(params)
1832
+ @RunEnv = params['RunEnv']
1833
+ @AppBizId = params['AppBizId']
1834
+ @Query = params['Query']
1835
+ unless params['CustomVariables'].nil?
1836
+ @CustomVariables = []
1837
+ params['CustomVariables'].each do |i|
1838
+ customvariable_tmp = CustomVariable.new
1839
+ customvariable_tmp.deserialize(i)
1840
+ @CustomVariables << customvariable_tmp
1841
+ end
1842
+ end
1843
+ end
1844
+ end
1845
+
1846
+ # CreateWorkflowRun返回参数结构体
1847
+ class CreateWorkflowRunResponse < TencentCloud::Common::AbstractModel
1848
+ # @param AppBizId: 应用ID
1849
+ # @type AppBizId: String
1850
+ # @param WorkflowRunId: 工作流运行实例的ID
1851
+ # @type WorkflowRunId: String
1852
+ # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
1853
+ # @type RunEnv: Integer
1854
+ # @param Query: 用户输入的内容
1855
+ # @type Query: String
1856
+ # @param CustomVariables: API参数配置
1857
+ # @type CustomVariables: Array
1858
+ # @param CreateTime: 创建时间(毫秒时间戳)
1859
+ # @type CreateTime: String
1860
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1861
+ # @type RequestId: String
1862
+
1863
+ attr_accessor :AppBizId, :WorkflowRunId, :RunEnv, :Query, :CustomVariables, :CreateTime, :RequestId
1864
+
1865
+ def initialize(appbizid=nil, workflowrunid=nil, runenv=nil, query=nil, customvariables=nil, createtime=nil, requestid=nil)
1866
+ @AppBizId = appbizid
1867
+ @WorkflowRunId = workflowrunid
1868
+ @RunEnv = runenv
1869
+ @Query = query
1870
+ @CustomVariables = customvariables
1871
+ @CreateTime = createtime
1872
+ @RequestId = requestid
1873
+ end
1874
+
1875
+ def deserialize(params)
1876
+ @AppBizId = params['AppBizId']
1877
+ @WorkflowRunId = params['WorkflowRunId']
1878
+ @RunEnv = params['RunEnv']
1879
+ @Query = params['Query']
1880
+ unless params['CustomVariables'].nil?
1881
+ @CustomVariables = []
1882
+ params['CustomVariables'].each do |i|
1883
+ customvariable_tmp = CustomVariable.new
1884
+ customvariable_tmp.deserialize(i)
1885
+ @CustomVariables << customvariable_tmp
1886
+ end
1887
+ end
1888
+ @CreateTime = params['CreateTime']
1889
+ @RequestId = params['RequestId']
1890
+ end
1891
+ end
1892
+
1807
1893
  # 临时密钥结构
1808
1894
  class Credentials < TencentCloud::Common::AbstractModel
1809
1895
  # @param Token: token
@@ -1836,6 +1922,26 @@ module TencentCloud
1836
1922
  end
1837
1923
  end
1838
1924
 
1925
+ # 工作流的API参数
1926
+ class CustomVariable < TencentCloud::Common::AbstractModel
1927
+ # @param Name: 参数名称
1928
+ # @type Name: String
1929
+ # @param Value: 参数的值
1930
+ # @type Value: String
1931
+
1932
+ attr_accessor :Name, :Value
1933
+
1934
+ def initialize(name=nil, value=nil)
1935
+ @Name = name
1936
+ @Value = value
1937
+ end
1938
+
1939
+ def deserialize(params)
1940
+ @Name = params['Name']
1941
+ @Value = params['Value']
1942
+ end
1943
+ end
1944
+
1839
1945
  # DeleteApp请求参数结构体
1840
1946
  class DeleteAppRequest < TencentCloud::Common::AbstractModel
1841
1947
  # @param AppBizId: 应用ID
@@ -2186,12 +2292,14 @@ module TencentCloud
2186
2292
  # @type AppStatus: Integer
2187
2293
  # @param AppStatusDesc: 状态说明
2188
2294
  # @type AppStatusDesc: String
2295
+ # @param IsCopying: 应用是否在复制中
2296
+ # @type IsCopying: Boolean
2189
2297
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2190
2298
  # @type RequestId: String
2191
2299
 
2192
- attr_accessor :AppBizId, :AppType, :AppTypeDesc, :BaseConfig, :AppConfig, :AvatarInAppeal, :RoleInAppeal, :NameInAppeal, :GreetingInAppeal, :BareAnswerInAppeal, :AppKey, :AppStatus, :AppStatusDesc, :RequestId
2300
+ attr_accessor :AppBizId, :AppType, :AppTypeDesc, :BaseConfig, :AppConfig, :AvatarInAppeal, :RoleInAppeal, :NameInAppeal, :GreetingInAppeal, :BareAnswerInAppeal, :AppKey, :AppStatus, :AppStatusDesc, :IsCopying, :RequestId
2193
2301
 
2194
- def initialize(appbizid=nil, apptype=nil, apptypedesc=nil, baseconfig=nil, appconfig=nil, avatarinappeal=nil, roleinappeal=nil, nameinappeal=nil, greetinginappeal=nil, bareanswerinappeal=nil, appkey=nil, appstatus=nil, appstatusdesc=nil, requestid=nil)
2302
+ def initialize(appbizid=nil, apptype=nil, apptypedesc=nil, baseconfig=nil, appconfig=nil, avatarinappeal=nil, roleinappeal=nil, nameinappeal=nil, greetinginappeal=nil, bareanswerinappeal=nil, appkey=nil, appstatus=nil, appstatusdesc=nil, iscopying=nil, requestid=nil)
2195
2303
  @AppBizId = appbizid
2196
2304
  @AppType = apptype
2197
2305
  @AppTypeDesc = apptypedesc
@@ -2205,6 +2313,7 @@ module TencentCloud
2205
2313
  @AppKey = appkey
2206
2314
  @AppStatus = appstatus
2207
2315
  @AppStatusDesc = appstatusdesc
2316
+ @IsCopying = iscopying
2208
2317
  @RequestId = requestid
2209
2318
  end
2210
2319
 
@@ -2228,6 +2337,7 @@ module TencentCloud
2228
2337
  @AppKey = params['AppKey']
2229
2338
  @AppStatus = params['AppStatus']
2230
2339
  @AppStatusDesc = params['AppStatusDesc']
2340
+ @IsCopying = params['IsCopying']
2231
2341
  @RequestId = params['RequestId']
2232
2342
  end
2233
2343
  end
@@ -2811,6 +2921,45 @@ module TencentCloud
2811
2921
  end
2812
2922
  end
2813
2923
 
2924
+ # DescribeNodeRun请求参数结构体
2925
+ class DescribeNodeRunRequest < TencentCloud::Common::AbstractModel
2926
+ # @param NodeRunId: 节点运行实例ID
2927
+ # @type NodeRunId: String
2928
+
2929
+ attr_accessor :NodeRunId
2930
+
2931
+ def initialize(noderunid=nil)
2932
+ @NodeRunId = noderunid
2933
+ end
2934
+
2935
+ def deserialize(params)
2936
+ @NodeRunId = params['NodeRunId']
2937
+ end
2938
+ end
2939
+
2940
+ # DescribeNodeRun返回参数结构体
2941
+ class DescribeNodeRunResponse < TencentCloud::Common::AbstractModel
2942
+ # @param NodeRun: 节点运行实例详情
2943
+ # @type NodeRun: :class:`Tencentcloud::Lke.v20231130.models.NodeRunDetail`
2944
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2945
+ # @type RequestId: String
2946
+
2947
+ attr_accessor :NodeRun, :RequestId
2948
+
2949
+ def initialize(noderun=nil, requestid=nil)
2950
+ @NodeRun = noderun
2951
+ @RequestId = requestid
2952
+ end
2953
+
2954
+ def deserialize(params)
2955
+ unless params['NodeRun'].nil?
2956
+ @NodeRun = NodeRunDetail.new
2957
+ @NodeRun.deserialize(params['NodeRun'])
2958
+ end
2959
+ @RequestId = params['RequestId']
2960
+ end
2961
+ end
2962
+
2814
2963
  # DescribeQA请求参数结构体
2815
2964
  class DescribeQARequest < TencentCloud::Common::AbstractModel
2816
2965
  # @param QaBizId: QA业务ID
@@ -3675,6 +3824,56 @@ module TencentCloud
3675
3824
  end
3676
3825
  end
3677
3826
 
3827
+ # DescribeWorkflowRun请求参数结构体
3828
+ class DescribeWorkflowRunRequest < TencentCloud::Common::AbstractModel
3829
+ # @param WorkflowRunId: 工作流运行实例ID
3830
+ # @type WorkflowRunId: String
3831
+
3832
+ attr_accessor :WorkflowRunId
3833
+
3834
+ def initialize(workflowrunid=nil)
3835
+ @WorkflowRunId = workflowrunid
3836
+ end
3837
+
3838
+ def deserialize(params)
3839
+ @WorkflowRunId = params['WorkflowRunId']
3840
+ end
3841
+ end
3842
+
3843
+ # DescribeWorkflowRun返回参数结构体
3844
+ class DescribeWorkflowRunResponse < TencentCloud::Common::AbstractModel
3845
+ # @param WorkflowRun: 总数
3846
+ # @type WorkflowRun: :class:`Tencentcloud::Lke.v20231130.models.WorkflowRunDetail`
3847
+ # @param NodeRuns: 节点列表
3848
+ # @type NodeRuns: Array
3849
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3850
+ # @type RequestId: String
3851
+
3852
+ attr_accessor :WorkflowRun, :NodeRuns, :RequestId
3853
+
3854
+ def initialize(workflowrun=nil, noderuns=nil, requestid=nil)
3855
+ @WorkflowRun = workflowrun
3856
+ @NodeRuns = noderuns
3857
+ @RequestId = requestid
3858
+ end
3859
+
3860
+ def deserialize(params)
3861
+ unless params['WorkflowRun'].nil?
3862
+ @WorkflowRun = WorkflowRunDetail.new
3863
+ @WorkflowRun.deserialize(params['WorkflowRun'])
3864
+ end
3865
+ unless params['NodeRuns'].nil?
3866
+ @NodeRuns = []
3867
+ params['NodeRuns'].each do |i|
3868
+ noderunbase_tmp = NodeRunBase.new
3869
+ noderunbase_tmp.deserialize(i)
3870
+ @NodeRuns << noderunbase_tmp
3871
+ end
3872
+ end
3873
+ @RequestId = params['RequestId']
3874
+ end
3875
+ end
3876
+
3678
3877
  # 数智人配置
3679
3878
  class DigitalHumanConfig < TencentCloud::Common::AbstractModel
3680
3879
  # @param AssetKey: 数智人资产key
@@ -7443,9 +7642,9 @@ module TencentCloud
7443
7642
  # @type StartTime: String
7444
7643
  # @param EndTime: 结束时间
7445
7644
  # @type EndTime: String
7446
- # @param PageNumber: 页码
7645
+ # @param PageNumber: 页码(从1开始)
7447
7646
  # @type PageNumber: Integer
7448
- # @param PageSize: 分页数量
7647
+ # @param PageSize: 分页数量(最大值1000)
7449
7648
  # @type PageSize: Integer
7450
7649
  # @param UinAccount: uin列表
7451
7650
  # @type UinAccount: Array
@@ -7457,10 +7656,12 @@ module TencentCloud
7457
7656
  # @type SubScenes: Array
7458
7657
  # @param AppType: 应用类型(knowledge_qa应用管理, shared_knowlege 共享知识库)
7459
7658
  # @type AppType: String
7659
+ # @param BillingTag: 账单明细对应的自定义tag
7660
+ # @type BillingTag: String
7460
7661
 
7461
- attr_accessor :ModelName, :StartTime, :EndTime, :PageNumber, :PageSize, :UinAccount, :AppBizIds, :CallType, :SubScenes, :AppType
7662
+ attr_accessor :ModelName, :StartTime, :EndTime, :PageNumber, :PageSize, :UinAccount, :AppBizIds, :CallType, :SubScenes, :AppType, :BillingTag
7462
7663
 
7463
- def initialize(modelname=nil, starttime=nil, endtime=nil, pagenumber=nil, pagesize=nil, uinaccount=nil, appbizids=nil, calltype=nil, subscenes=nil, apptype=nil)
7664
+ def initialize(modelname=nil, starttime=nil, endtime=nil, pagenumber=nil, pagesize=nil, uinaccount=nil, appbizids=nil, calltype=nil, subscenes=nil, apptype=nil, billingtag=nil)
7464
7665
  @ModelName = modelname
7465
7666
  @StartTime = starttime
7466
7667
  @EndTime = endtime
@@ -7471,6 +7672,7 @@ module TencentCloud
7471
7672
  @CallType = calltype
7472
7673
  @SubScenes = subscenes
7473
7674
  @AppType = apptype
7675
+ @BillingTag = billingtag
7474
7676
  end
7475
7677
 
7476
7678
  def deserialize(params)
@@ -7484,6 +7686,7 @@ module TencentCloud
7484
7686
  @CallType = params['CallType']
7485
7687
  @SubScenes = params['SubScenes']
7486
7688
  @AppType = params['AppType']
7689
+ @BillingTag = params['BillingTag']
7487
7690
  end
7488
7691
  end
7489
7692
 
@@ -7518,6 +7721,73 @@ module TencentCloud
7518
7721
  end
7519
7722
  end
7520
7723
 
7724
+ # ListWorkflowRuns请求参数结构体
7725
+ class ListWorkflowRunsRequest < TencentCloud::Common::AbstractModel
7726
+ # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
7727
+ # @type RunEnv: Integer
7728
+ # @param AppBizId: 应用ID
7729
+ # @type AppBizId: String
7730
+ # @param Page: 页码
7731
+ # @type Page: Integer
7732
+ # @param PageSize: 每页数量
7733
+ # @type PageSize: Integer
7734
+ # @param LoginUin: 登录用户主账号(集成商模式必填)
7735
+ # @type LoginUin: String
7736
+ # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
7737
+ # @type LoginSubAccountUin: String
7738
+
7739
+ attr_accessor :RunEnv, :AppBizId, :Page, :PageSize, :LoginUin, :LoginSubAccountUin
7740
+
7741
+ def initialize(runenv=nil, appbizid=nil, page=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil)
7742
+ @RunEnv = runenv
7743
+ @AppBizId = appbizid
7744
+ @Page = page
7745
+ @PageSize = pagesize
7746
+ @LoginUin = loginuin
7747
+ @LoginSubAccountUin = loginsubaccountuin
7748
+ end
7749
+
7750
+ def deserialize(params)
7751
+ @RunEnv = params['RunEnv']
7752
+ @AppBizId = params['AppBizId']
7753
+ @Page = params['Page']
7754
+ @PageSize = params['PageSize']
7755
+ @LoginUin = params['LoginUin']
7756
+ @LoginSubAccountUin = params['LoginSubAccountUin']
7757
+ end
7758
+ end
7759
+
7760
+ # ListWorkflowRuns返回参数结构体
7761
+ class ListWorkflowRunsResponse < TencentCloud::Common::AbstractModel
7762
+ # @param Total: 总数
7763
+ # @type Total: Integer
7764
+ # @param WorkflowRuns: 工作流运行列表
7765
+ # @type WorkflowRuns: Array
7766
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7767
+ # @type RequestId: String
7768
+
7769
+ attr_accessor :Total, :WorkflowRuns, :RequestId
7770
+
7771
+ def initialize(total=nil, workflowruns=nil, requestid=nil)
7772
+ @Total = total
7773
+ @WorkflowRuns = workflowruns
7774
+ @RequestId = requestid
7775
+ end
7776
+
7777
+ def deserialize(params)
7778
+ @Total = params['Total']
7779
+ unless params['WorkflowRuns'].nil?
7780
+ @WorkflowRuns = []
7781
+ params['WorkflowRuns'].each do |i|
7782
+ workflowrunbase_tmp = WorkflowRunBase.new
7783
+ workflowrunbase_tmp.deserialize(i)
7784
+ @WorkflowRuns << workflowrunbase_tmp
7785
+ end
7786
+ end
7787
+ @RequestId = params['RequestId']
7788
+ end
7789
+ end
7790
+
7521
7791
  # 一条message代表一条对话记录
7522
7792
  # role表示角色 user或者assistant
7523
7793
  # content表示对话内容
@@ -8457,6 +8727,199 @@ module TencentCloud
8457
8727
  end
8458
8728
  end
8459
8729
 
8730
+ # 节点运行的基本信息
8731
+ class NodeRunBase < TencentCloud::Common::AbstractModel
8732
+ # @param NodeRunId: 节点运行的ID
8733
+ # @type NodeRunId: String
8734
+ # @param NodeId: 节点ID
8735
+ # @type NodeId: String
8736
+ # @param WorkflowRunId: 工作流运行实例的ID
8737
+ # @type WorkflowRunId: String
8738
+ # @param NodeName: 节点名称
8739
+ # @type NodeName: String
8740
+ # @param NodeType: 节点类型。
8741
+ # 1: 开始节点
8742
+ # 2:参数提取节点
8743
+ # 3:大模型节点
8744
+ # 4:知识问答节点
8745
+ # 5:知识检索节点
8746
+ # 6:标签提取节点
8747
+ # 7:代码执行节点
8748
+ # 8:工具节点
8749
+ # 9:逻辑判断节点
8750
+ # 10:回复节点
8751
+ # 11:选项卡节点
8752
+ # 12:循环节点
8753
+ # 13:意图识别节点
8754
+ # 14:工作流节点
8755
+ # 15:插件节点
8756
+ # 16:结束节点
8757
+ # 17: 变量聚合节点数据
8758
+ # 18: 批处理节点
8759
+ # 19: 消息队列节点
8760
+ # @type NodeType: Integer
8761
+ # @param State: 运行状态。0: 初始状态;1: 运行中;2: 运行成功; 3: 运行失败; 4: 已取消
8762
+ # @type State: Integer
8763
+ # @param FailCode: 错误码
8764
+ # @type FailCode: String
8765
+ # @param FailMessage: 错误信息
8766
+ # @type FailMessage: String
8767
+ # @param CostMilliseconds: 消耗时间(毫秒)
8768
+ # @type CostMilliseconds: Integer
8769
+ # @param TotalTokens: 消耗的token总数
8770
+ # @type TotalTokens: Integer
8771
+
8772
+ attr_accessor :NodeRunId, :NodeId, :WorkflowRunId, :NodeName, :NodeType, :State, :FailCode, :FailMessage, :CostMilliseconds, :TotalTokens
8773
+
8774
+ def initialize(noderunid=nil, nodeid=nil, workflowrunid=nil, nodename=nil, nodetype=nil, state=nil, failcode=nil, failmessage=nil, costmilliseconds=nil, totaltokens=nil)
8775
+ @NodeRunId = noderunid
8776
+ @NodeId = nodeid
8777
+ @WorkflowRunId = workflowrunid
8778
+ @NodeName = nodename
8779
+ @NodeType = nodetype
8780
+ @State = state
8781
+ @FailCode = failcode
8782
+ @FailMessage = failmessage
8783
+ @CostMilliseconds = costmilliseconds
8784
+ @TotalTokens = totaltokens
8785
+ end
8786
+
8787
+ def deserialize(params)
8788
+ @NodeRunId = params['NodeRunId']
8789
+ @NodeId = params['NodeId']
8790
+ @WorkflowRunId = params['WorkflowRunId']
8791
+ @NodeName = params['NodeName']
8792
+ @NodeType = params['NodeType']
8793
+ @State = params['State']
8794
+ @FailCode = params['FailCode']
8795
+ @FailMessage = params['FailMessage']
8796
+ @CostMilliseconds = params['CostMilliseconds']
8797
+ @TotalTokens = params['TotalTokens']
8798
+ end
8799
+ end
8800
+
8801
+ # 工作流节点运行详情
8802
+ class NodeRunDetail < TencentCloud::Common::AbstractModel
8803
+ # @param NodeRunId: 节点运行的ID
8804
+ # @type NodeRunId: String
8805
+ # @param NodeId: 节点ID
8806
+ # @type NodeId: String
8807
+ # @param WorkflowRunId: 工作流运行实例的ID
8808
+ # @type WorkflowRunId: String
8809
+ # @param NodeName: 节点名称
8810
+ # @type NodeName: String
8811
+ # @param NodeType: 节点类型。
8812
+ # 1: 开始节点
8813
+ # 2:参数提取节点
8814
+ # 3:大模型节点
8815
+ # 4:知识问答节点
8816
+ # 5:知识检索节点
8817
+ # 6:标签提取节点
8818
+ # 7:代码执行节点
8819
+ # 8:工具节点
8820
+ # 9:逻辑判断节点
8821
+ # 10:回复节点
8822
+ # 11:选项卡节点
8823
+ # 12:循环节点
8824
+ # 13:意图识别节点
8825
+ # 14:工作流节点
8826
+ # 15:插件节点
8827
+ # 16:结束节点
8828
+ # 17: 变量聚合节点数据
8829
+ # 18: 批处理节点
8830
+ # 19: 消息队列节点
8831
+ # @type NodeType: Integer
8832
+ # @param State: 运行状态。0: 初始状态;1: 运行中;2: 运行成功; 3: 运行失败; 4: 已取消
8833
+ # @type State: Integer
8834
+ # @param FailCode: 错误码
8835
+ # @type FailCode: String
8836
+ # @param FailMessage: 错误信息
8837
+ # @type FailMessage: String
8838
+ # @param CostMilliseconds: 消耗时间(毫秒)
8839
+ # @type CostMilliseconds: Integer
8840
+ # @param TotalTokens: 消耗的token总数
8841
+ # @type TotalTokens: Integer
8842
+ # @param Input: 输入变量信息
8843
+ # @type Input: String
8844
+ # @param InputRef: 节点的输入的完整内容的链接。(当Input内容超过限制的时候此字段才有值)
8845
+ # @type InputRef: String
8846
+ # @param Output: 输出变量信息
8847
+ # @type Output: String
8848
+ # @param OutputRef: 节点的输出的完整内容的链接。(当Output内容超过限制的时候此字段才有值)
8849
+ # @type OutputRef: String
8850
+ # @param TaskOutput: 原始输出信息。部分节点才有值,如工具节点、代码节点
8851
+ # @type TaskOutput: String
8852
+ # @param TaskOutputRef: 任务的原始输出的完整内容的链接。(当TaskOutput内容超过限制的时候此字段才有值)
8853
+ # @type TaskOutputRef: String
8854
+ # @param Log: 节点的日志
8855
+ # @type Log: String
8856
+ # @param LogRef: 节点的日志的完整内容的链接志(当Log内容超过限制的时候才有值)
8857
+ # @type LogRef: String
8858
+ # @param StartTime: 开始时间戳(毫秒)
8859
+ # @type StartTime: String
8860
+ # @param EndTime: 结束时间戳(毫秒)
8861
+ # @type EndTime: String
8862
+ # @param StatisticInfos: LLM统计信息。
8863
+ # @type StatisticInfos: Array
8864
+
8865
+ attr_accessor :NodeRunId, :NodeId, :WorkflowRunId, :NodeName, :NodeType, :State, :FailCode, :FailMessage, :CostMilliseconds, :TotalTokens, :Input, :InputRef, :Output, :OutputRef, :TaskOutput, :TaskOutputRef, :Log, :LogRef, :StartTime, :EndTime, :StatisticInfos
8866
+
8867
+ def initialize(noderunid=nil, nodeid=nil, workflowrunid=nil, nodename=nil, nodetype=nil, state=nil, failcode=nil, failmessage=nil, costmilliseconds=nil, totaltokens=nil, input=nil, inputref=nil, output=nil, outputref=nil, taskoutput=nil, taskoutputref=nil, log=nil, logref=nil, starttime=nil, endtime=nil, statisticinfos=nil)
8868
+ @NodeRunId = noderunid
8869
+ @NodeId = nodeid
8870
+ @WorkflowRunId = workflowrunid
8871
+ @NodeName = nodename
8872
+ @NodeType = nodetype
8873
+ @State = state
8874
+ @FailCode = failcode
8875
+ @FailMessage = failmessage
8876
+ @CostMilliseconds = costmilliseconds
8877
+ @TotalTokens = totaltokens
8878
+ @Input = input
8879
+ @InputRef = inputref
8880
+ @Output = output
8881
+ @OutputRef = outputref
8882
+ @TaskOutput = taskoutput
8883
+ @TaskOutputRef = taskoutputref
8884
+ @Log = log
8885
+ @LogRef = logref
8886
+ @StartTime = starttime
8887
+ @EndTime = endtime
8888
+ @StatisticInfos = statisticinfos
8889
+ end
8890
+
8891
+ def deserialize(params)
8892
+ @NodeRunId = params['NodeRunId']
8893
+ @NodeId = params['NodeId']
8894
+ @WorkflowRunId = params['WorkflowRunId']
8895
+ @NodeName = params['NodeName']
8896
+ @NodeType = params['NodeType']
8897
+ @State = params['State']
8898
+ @FailCode = params['FailCode']
8899
+ @FailMessage = params['FailMessage']
8900
+ @CostMilliseconds = params['CostMilliseconds']
8901
+ @TotalTokens = params['TotalTokens']
8902
+ @Input = params['Input']
8903
+ @InputRef = params['InputRef']
8904
+ @Output = params['Output']
8905
+ @OutputRef = params['OutputRef']
8906
+ @TaskOutput = params['TaskOutput']
8907
+ @TaskOutputRef = params['TaskOutputRef']
8908
+ @Log = params['Log']
8909
+ @LogRef = params['LogRef']
8910
+ @StartTime = params['StartTime']
8911
+ @EndTime = params['EndTime']
8912
+ unless params['StatisticInfos'].nil?
8913
+ @StatisticInfos = []
8914
+ params['StatisticInfos'].each do |i|
8915
+ statisticinfo_tmp = StatisticInfo.new
8916
+ statisticinfo_tmp.deserialize(i)
8917
+ @StatisticInfos << statisticinfo_tmp
8918
+ end
8919
+ end
8920
+ end
8921
+ end
8922
+
8460
8923
  # 下拉框选项
8461
8924
  class Option < TencentCloud::Common::AbstractModel
8462
8925
  # @param Text: 文本
@@ -10131,6 +10594,38 @@ module TencentCloud
10131
10594
  end
10132
10595
  end
10133
10596
 
10597
+ # StopWorkflowRun请求参数结构体
10598
+ class StopWorkflowRunRequest < TencentCloud::Common::AbstractModel
10599
+ # @param WorkflowRunId: 工作流运行实例ID
10600
+ # @type WorkflowRunId: String
10601
+
10602
+ attr_accessor :WorkflowRunId
10603
+
10604
+ def initialize(workflowrunid=nil)
10605
+ @WorkflowRunId = workflowrunid
10606
+ end
10607
+
10608
+ def deserialize(params)
10609
+ @WorkflowRunId = params['WorkflowRunId']
10610
+ end
10611
+ end
10612
+
10613
+ # StopWorkflowRun返回参数结构体
10614
+ class StopWorkflowRunResponse < TencentCloud::Common::AbstractModel
10615
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10616
+ # @type RequestId: String
10617
+
10618
+ attr_accessor :RequestId
10619
+
10620
+ def initialize(requestid=nil)
10621
+ @RequestId = requestid
10622
+ end
10623
+
10624
+ def deserialize(params)
10625
+ @RequestId = params['RequestId']
10626
+ end
10627
+ end
10628
+
10134
10629
  # 字符串KV信息
10135
10630
  class StrValue < TencentCloud::Common::AbstractModel
10136
10631
  # @param Name: 名称
@@ -10911,6 +11406,141 @@ module TencentCloud
10911
11406
  end
10912
11407
  end
10913
11408
 
11409
+ # 工作流运行实例的基本信息
11410
+ class WorkflowRunBase < TencentCloud::Common::AbstractModel
11411
+ # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
11412
+ # @type RunEnv: Integer
11413
+ # @param AppBizId: 应用ID
11414
+ # @type AppBizId: String
11415
+ # @param WorkflowRunId: 工作流运行实例的ID
11416
+ # @type WorkflowRunId: String
11417
+ # @param WorkflowId: 所属工作流ID
11418
+ # @type WorkflowId: String
11419
+ # @param Name: 名称
11420
+ # @type Name: String
11421
+ # @param State: 运行状态。0: 排队中;1: 运行中;2: 运行成功;3: 运行失败; 4: 已取消
11422
+ # @type State: Integer
11423
+ # @param FailMessage: 错误信息
11424
+ # @type FailMessage: String
11425
+ # @param TotalTokens: 消耗的token总数
11426
+ # @type TotalTokens: Integer
11427
+ # @param CreateTime: 创建时间(毫秒时间戳)
11428
+ # @type CreateTime: String
11429
+ # @param StartTime: 开始时间(毫秒时间戳)
11430
+ # @type StartTime: String
11431
+ # @param EndTime: 结束时间(毫秒时间戳)
11432
+ # @type EndTime: String
11433
+
11434
+ attr_accessor :RunEnv, :AppBizId, :WorkflowRunId, :WorkflowId, :Name, :State, :FailMessage, :TotalTokens, :CreateTime, :StartTime, :EndTime
11435
+
11436
+ def initialize(runenv=nil, appbizid=nil, workflowrunid=nil, workflowid=nil, name=nil, state=nil, failmessage=nil, totaltokens=nil, createtime=nil, starttime=nil, endtime=nil)
11437
+ @RunEnv = runenv
11438
+ @AppBizId = appbizid
11439
+ @WorkflowRunId = workflowrunid
11440
+ @WorkflowId = workflowid
11441
+ @Name = name
11442
+ @State = state
11443
+ @FailMessage = failmessage
11444
+ @TotalTokens = totaltokens
11445
+ @CreateTime = createtime
11446
+ @StartTime = starttime
11447
+ @EndTime = endtime
11448
+ end
11449
+
11450
+ def deserialize(params)
11451
+ @RunEnv = params['RunEnv']
11452
+ @AppBizId = params['AppBizId']
11453
+ @WorkflowRunId = params['WorkflowRunId']
11454
+ @WorkflowId = params['WorkflowId']
11455
+ @Name = params['Name']
11456
+ @State = params['State']
11457
+ @FailMessage = params['FailMessage']
11458
+ @TotalTokens = params['TotalTokens']
11459
+ @CreateTime = params['CreateTime']
11460
+ @StartTime = params['StartTime']
11461
+ @EndTime = params['EndTime']
11462
+ end
11463
+ end
11464
+
11465
+ # 工作流运行实例详情
11466
+ class WorkflowRunDetail < TencentCloud::Common::AbstractModel
11467
+ # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
11468
+ # @type RunEnv: Integer
11469
+ # @param AppBizId: 应用ID
11470
+ # @type AppBizId: String
11471
+ # @param WorkflowRunId: 工作流运行实例的ID
11472
+ # @type WorkflowRunId: String
11473
+ # @param WorkflowId: 所属工作流ID
11474
+ # @type WorkflowId: String
11475
+ # @param Name: 名称
11476
+ # @type Name: String
11477
+ # @param State: 运行状态。0: 排队中;1: 运行中;2: 运行成功;3: 运行失败; 4: 已取消
11478
+ # @type State: Integer
11479
+ # @param FailMessage: 错误信息
11480
+ # @type FailMessage: String
11481
+ # @param TotalTokens: 消耗的token总数
11482
+ # @type TotalTokens: Integer
11483
+ # @param CreateTime: 创建时间(毫秒时间戳)
11484
+ # @type CreateTime: String
11485
+ # @param StartTime: 开始时间(毫秒时间戳)
11486
+ # @type StartTime: String
11487
+ # @param EndTime: 结束时间(毫秒时间戳)
11488
+ # @type EndTime: String
11489
+ # @param DialogJson: 工作流画布Json
11490
+ # @type DialogJson: String
11491
+ # @param Query: 用户的输入
11492
+ # @type Query: String
11493
+ # @param MainModelName: 主模型名称
11494
+ # @type MainModelName: String
11495
+ # @param CustomVariables: API参数配置
11496
+ # @type CustomVariables: Array
11497
+
11498
+ attr_accessor :RunEnv, :AppBizId, :WorkflowRunId, :WorkflowId, :Name, :State, :FailMessage, :TotalTokens, :CreateTime, :StartTime, :EndTime, :DialogJson, :Query, :MainModelName, :CustomVariables
11499
+
11500
+ def initialize(runenv=nil, appbizid=nil, workflowrunid=nil, workflowid=nil, name=nil, state=nil, failmessage=nil, totaltokens=nil, createtime=nil, starttime=nil, endtime=nil, dialogjson=nil, query=nil, mainmodelname=nil, customvariables=nil)
11501
+ @RunEnv = runenv
11502
+ @AppBizId = appbizid
11503
+ @WorkflowRunId = workflowrunid
11504
+ @WorkflowId = workflowid
11505
+ @Name = name
11506
+ @State = state
11507
+ @FailMessage = failmessage
11508
+ @TotalTokens = totaltokens
11509
+ @CreateTime = createtime
11510
+ @StartTime = starttime
11511
+ @EndTime = endtime
11512
+ @DialogJson = dialogjson
11513
+ @Query = query
11514
+ @MainModelName = mainmodelname
11515
+ @CustomVariables = customvariables
11516
+ end
11517
+
11518
+ def deserialize(params)
11519
+ @RunEnv = params['RunEnv']
11520
+ @AppBizId = params['AppBizId']
11521
+ @WorkflowRunId = params['WorkflowRunId']
11522
+ @WorkflowId = params['WorkflowId']
11523
+ @Name = params['Name']
11524
+ @State = params['State']
11525
+ @FailMessage = params['FailMessage']
11526
+ @TotalTokens = params['TotalTokens']
11527
+ @CreateTime = params['CreateTime']
11528
+ @StartTime = params['StartTime']
11529
+ @EndTime = params['EndTime']
11530
+ @DialogJson = params['DialogJson']
11531
+ @Query = params['Query']
11532
+ @MainModelName = params['MainModelName']
11533
+ unless params['CustomVariables'].nil?
11534
+ @CustomVariables = []
11535
+ params['CustomVariables'].each do |i|
11536
+ customvariable_tmp = CustomVariable.new
11537
+ customvariable_tmp.deserialize(i)
11538
+ @CustomVariables << customvariable_tmp
11539
+ end
11540
+ end
11541
+ end
11542
+ end
11543
+
10914
11544
  # 工作流运行节点信息
10915
11545
  class WorkflowRunNodeInfo < TencentCloud::Common::AbstractModel
10916
11546
  # @param NodeId: 节点ID
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.1079
4
+ version: 3.0.1081
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-06-11 00:00:00.000000000 Z
11
+ date: 2025-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common