tencentcloud-sdk-lke 3.0.1146 → 3.0.1150
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20231130/client.rb +1 -1
- data/lib/v20231130/models.rb +138 -55
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0866a16a3fd37f744fc36d462c021e8993a76fca
|
4
|
+
data.tar.gz: 77b024cb93ed9223be6dbd11aff593d1034a6240
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 072a1aa66125d84be0d33babba818c31a5c34cf1293be4fcd76ac959d91097ec11bb041f7379d598236f0df93abb53ef6ef53a23d64d7f9dbfca90bdf61e7bc6
|
7
|
+
data.tar.gz: e16b05ab6cee7e064482beae54dde45e3f023d8d71f7d8859040441d4a1c32320d5eb073561143f14bc78562c95782c507b720e195983def53d06dc244b61572
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1150
|
data/lib/v20231130/client.rb
CHANGED
@@ -774,7 +774,7 @@ module TencentCloud
|
|
774
774
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
775
775
|
end
|
776
776
|
|
777
|
-
# 通过DescribeWorkflowRun
|
777
|
+
# 通过DescribeWorkflowRun接口获取了工作流异步运行的整体内容,其中包含了基本的节点信息,再通过本接口可查看节点的运行详情(包括输入、输出、日志等)。
|
778
778
|
|
779
779
|
# @param request: Request instance for DescribeNodeRun.
|
780
780
|
# @type request: :class:`Tencentcloud::lke::V20231130::DescribeNodeRunRequest`
|
data/lib/v20231130/models.rb
CHANGED
@@ -2693,27 +2693,27 @@ module TencentCloud
|
|
2693
2693
|
|
2694
2694
|
# CreateWorkflowRun请求参数结构体
|
2695
2695
|
class CreateWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
2696
|
-
# @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
2697
|
-
# @type RunEnv: Integer
|
2698
2696
|
# @param AppBizId: 应用ID
|
2699
2697
|
# @type AppBizId: String
|
2698
|
+
# @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
2699
|
+
# @type RunEnv: Integer
|
2700
2700
|
# @param Query: 用户输入的内容
|
2701
2701
|
# @type Query: String
|
2702
2702
|
# @param CustomVariables: API参数配置
|
2703
2703
|
# @type CustomVariables: Array
|
2704
2704
|
|
2705
|
-
attr_accessor :
|
2705
|
+
attr_accessor :AppBizId, :RunEnv, :Query, :CustomVariables
|
2706
2706
|
|
2707
|
-
def initialize(
|
2708
|
-
@RunEnv = runenv
|
2707
|
+
def initialize(appbizid=nil, runenv=nil, query=nil, customvariables=nil)
|
2709
2708
|
@AppBizId = appbizid
|
2709
|
+
@RunEnv = runenv
|
2710
2710
|
@Query = query
|
2711
2711
|
@CustomVariables = customvariables
|
2712
2712
|
end
|
2713
2713
|
|
2714
2714
|
def deserialize(params)
|
2715
|
-
@RunEnv = params['RunEnv']
|
2716
2715
|
@AppBizId = params['AppBizId']
|
2716
|
+
@RunEnv = params['RunEnv']
|
2717
2717
|
@Query = params['Query']
|
2718
2718
|
unless params['CustomVariables'].nil?
|
2719
2719
|
@CustomVariables = []
|
@@ -3455,9 +3455,9 @@ module TencentCloud
|
|
3455
3455
|
# @type SubBizType: String
|
3456
3456
|
# @param ModelName: 模型标识
|
3457
3457
|
# @type ModelName: String
|
3458
|
-
# @param StartTime: 开始时间戳, 单位为秒
|
3458
|
+
# @param StartTime: 开始时间戳, 单位为秒(废弃)
|
3459
3459
|
# @type StartTime: String
|
3460
|
-
# @param EndTime: 结束时间戳, 单位为秒
|
3460
|
+
# @param EndTime: 结束时间戳, 单位为秒(废弃)
|
3461
3461
|
# @type EndTime: String
|
3462
3462
|
# @param AppBizIds: 应用id列表
|
3463
3463
|
# @type AppBizIds: Array
|
@@ -3467,10 +3467,14 @@ module TencentCloud
|
|
3467
3467
|
# @type AppType: String
|
3468
3468
|
# @param SpaceId: 空间id
|
3469
3469
|
# @type SpaceId: String
|
3470
|
+
# @param StatStartTime: 开始时间戳, 单位为秒
|
3471
|
+
# @type StatStartTime: Integer
|
3472
|
+
# @param StatEndTime: 结束时间戳, 单位为秒
|
3473
|
+
# @type StatEndTime: Integer
|
3470
3474
|
|
3471
|
-
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType, :SpaceId
|
3475
|
+
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType, :SpaceId, :StatStartTime, :StatEndTime
|
3472
3476
|
|
3473
|
-
def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil, apptype=nil, spaceid=nil)
|
3477
|
+
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)
|
3474
3478
|
@UinAccount = uinaccount
|
3475
3479
|
@LoginUin = loginuin
|
3476
3480
|
@LoginSubAccountUin = loginsubaccountuin
|
@@ -3482,6 +3486,8 @@ module TencentCloud
|
|
3482
3486
|
@SubScenes = subscenes
|
3483
3487
|
@AppType = apptype
|
3484
3488
|
@SpaceId = spaceid
|
3489
|
+
@StatStartTime = statstarttime
|
3490
|
+
@StatEndTime = statendtime
|
3485
3491
|
end
|
3486
3492
|
|
3487
3493
|
def deserialize(params)
|
@@ -3496,6 +3502,8 @@ module TencentCloud
|
|
3496
3502
|
@SubScenes = params['SubScenes']
|
3497
3503
|
@AppType = params['AppType']
|
3498
3504
|
@SpaceId = params['SpaceId']
|
3505
|
+
@StatStartTime = params['StatStartTime']
|
3506
|
+
@StatEndTime = params['StatEndTime']
|
3499
3507
|
end
|
3500
3508
|
end
|
3501
3509
|
|
@@ -3531,9 +3539,9 @@ module TencentCloud
|
|
3531
3539
|
class DescribeConcurrencyUsageGraphRequest < TencentCloud::Common::AbstractModel
|
3532
3540
|
# @param ModelName: 模型标识
|
3533
3541
|
# @type ModelName: String
|
3534
|
-
# @param StartTime: 开始时间戳, 单位为秒
|
3542
|
+
# @param StartTime: 开始时间戳, 单位为秒(废弃)
|
3535
3543
|
# @type StartTime: String
|
3536
|
-
# @param EndTime: 结束时间戳, 单位为秒
|
3544
|
+
# @param EndTime: 结束时间戳, 单位为秒(废弃)
|
3537
3545
|
# @type EndTime: String
|
3538
3546
|
# @param UinAccount: uin
|
3539
3547
|
# @type UinAccount: Array
|
@@ -3547,10 +3555,14 @@ module TencentCloud
|
|
3547
3555
|
# @type AppBizIds: Array
|
3548
3556
|
# @param SpaceId: 空间id
|
3549
3557
|
# @type SpaceId: String
|
3558
|
+
# @param StatStartTime: 开始时间戳, 单位为秒
|
3559
|
+
# @type StatStartTime: Integer
|
3560
|
+
# @param StatEndTime: 结束时间戳, 单位为秒
|
3561
|
+
# @type StatEndTime: Integer
|
3550
3562
|
|
3551
|
-
attr_accessor :ModelName, :StartTime, :EndTime, :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :AppBizIds, :SpaceId
|
3563
|
+
attr_accessor :ModelName, :StartTime, :EndTime, :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :AppBizIds, :SpaceId, :StatStartTime, :StatEndTime
|
3552
3564
|
|
3553
|
-
def initialize(modelname=nil, starttime=nil, endtime=nil, uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, appbizids=nil, spaceid=nil)
|
3565
|
+
def initialize(modelname=nil, starttime=nil, endtime=nil, uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, appbizids=nil, spaceid=nil, statstarttime=nil, statendtime=nil)
|
3554
3566
|
@ModelName = modelname
|
3555
3567
|
@StartTime = starttime
|
3556
3568
|
@EndTime = endtime
|
@@ -3560,6 +3572,8 @@ module TencentCloud
|
|
3560
3572
|
@SubBizType = subbiztype
|
3561
3573
|
@AppBizIds = appbizids
|
3562
3574
|
@SpaceId = spaceid
|
3575
|
+
@StatStartTime = statstarttime
|
3576
|
+
@StatEndTime = statendtime
|
3563
3577
|
end
|
3564
3578
|
|
3565
3579
|
def deserialize(params)
|
@@ -3572,6 +3586,8 @@ module TencentCloud
|
|
3572
3586
|
@SubBizType = params['SubBizType']
|
3573
3587
|
@AppBizIds = params['AppBizIds']
|
3574
3588
|
@SpaceId = params['SpaceId']
|
3589
|
+
@StatStartTime = params['StatStartTime']
|
3590
|
+
@StatEndTime = params['StatEndTime']
|
3575
3591
|
end
|
3576
3592
|
end
|
3577
3593
|
|
@@ -3607,23 +3623,29 @@ module TencentCloud
|
|
3607
3623
|
class DescribeConcurrencyUsageRequest < TencentCloud::Common::AbstractModel
|
3608
3624
|
# @param ModelName: 模型标识
|
3609
3625
|
# @type ModelName: String
|
3610
|
-
# @param StartTime: 开始时间戳, 单位为秒
|
3626
|
+
# @param StartTime: 开始时间戳, 单位为秒(废弃)
|
3611
3627
|
# @type StartTime: String
|
3612
|
-
# @param EndTime: 结束时间戳, 单位为秒
|
3628
|
+
# @param EndTime: 结束时间戳, 单位为秒(废弃)
|
3613
3629
|
# @type EndTime: String
|
3614
3630
|
# @param AppBizIds: 应用id列表
|
3615
3631
|
# @type AppBizIds: Array
|
3616
3632
|
# @param SpaceId: 空间id
|
3617
3633
|
# @type SpaceId: String
|
3634
|
+
# @param StatStartTime: 开始时间戳, 单位为秒
|
3635
|
+
# @type StatStartTime: Integer
|
3636
|
+
# @param StatEndTime: 结束时间戳, 单位为秒
|
3637
|
+
# @type StatEndTime: Integer
|
3618
3638
|
|
3619
|
-
attr_accessor :ModelName, :StartTime, :EndTime, :AppBizIds, :SpaceId
|
3639
|
+
attr_accessor :ModelName, :StartTime, :EndTime, :AppBizIds, :SpaceId, :StatStartTime, :StatEndTime
|
3620
3640
|
|
3621
|
-
def initialize(modelname=nil, starttime=nil, endtime=nil, appbizids=nil, spaceid=nil)
|
3641
|
+
def initialize(modelname=nil, starttime=nil, endtime=nil, appbizids=nil, spaceid=nil, statstarttime=nil, statendtime=nil)
|
3622
3642
|
@ModelName = modelname
|
3623
3643
|
@StartTime = starttime
|
3624
3644
|
@EndTime = endtime
|
3625
3645
|
@AppBizIds = appbizids
|
3626
3646
|
@SpaceId = spaceid
|
3647
|
+
@StatStartTime = statstarttime
|
3648
|
+
@StatEndTime = statendtime
|
3627
3649
|
end
|
3628
3650
|
|
3629
3651
|
def deserialize(params)
|
@@ -3632,6 +3654,8 @@ module TencentCloud
|
|
3632
3654
|
@EndTime = params['EndTime']
|
3633
3655
|
@AppBizIds = params['AppBizIds']
|
3634
3656
|
@SpaceId = params['SpaceId']
|
3657
|
+
@StatStartTime = params['StatStartTime']
|
3658
|
+
@StatEndTime = params['StatEndTime']
|
3635
3659
|
end
|
3636
3660
|
end
|
3637
3661
|
|
@@ -4337,18 +4361,22 @@ module TencentCloud
|
|
4337
4361
|
# @type SubBizType: String
|
4338
4362
|
# @param ModelName: 模型标识
|
4339
4363
|
# @type ModelName: String
|
4340
|
-
# @param StartTime: 开始时间戳, 单位为秒
|
4364
|
+
# @param StartTime: 开始时间戳, 单位为秒(废弃)
|
4341
4365
|
# @type StartTime: String
|
4342
|
-
# @param EndTime: 结束时间戳, 单位为秒
|
4366
|
+
# @param EndTime: 结束时间戳, 单位为秒(废弃)
|
4343
4367
|
# @type EndTime: String
|
4344
4368
|
# @param AppBizIds: 应用id列表
|
4345
4369
|
# @type AppBizIds: Array
|
4346
4370
|
# @param SpaceId: 空间id
|
4347
4371
|
# @type SpaceId: String
|
4372
|
+
# @param StatStartTime: 开始时间戳, 单位为秒
|
4373
|
+
# @type StatStartTime: Integer
|
4374
|
+
# @param StatEndTime: 结束时间戳, 单位为秒
|
4375
|
+
# @type StatEndTime: Integer
|
4348
4376
|
|
4349
|
-
attr_accessor :LoginUin, :LoginSubAccountUin, :UinAccount, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SpaceId
|
4377
|
+
attr_accessor :LoginUin, :LoginSubAccountUin, :UinAccount, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SpaceId, :StatStartTime, :StatEndTime
|
4350
4378
|
|
4351
|
-
def initialize(loginuin=nil, loginsubaccountuin=nil, uinaccount=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, spaceid=nil)
|
4379
|
+
def initialize(loginuin=nil, loginsubaccountuin=nil, uinaccount=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, spaceid=nil, statstarttime=nil, statendtime=nil)
|
4352
4380
|
@LoginUin = loginuin
|
4353
4381
|
@LoginSubAccountUin = loginsubaccountuin
|
4354
4382
|
@UinAccount = uinaccount
|
@@ -4358,6 +4386,8 @@ module TencentCloud
|
|
4358
4386
|
@EndTime = endtime
|
4359
4387
|
@AppBizIds = appbizids
|
4360
4388
|
@SpaceId = spaceid
|
4389
|
+
@StatStartTime = statstarttime
|
4390
|
+
@StatEndTime = statendtime
|
4361
4391
|
end
|
4362
4392
|
|
4363
4393
|
def deserialize(params)
|
@@ -4370,6 +4400,8 @@ module TencentCloud
|
|
4370
4400
|
@EndTime = params['EndTime']
|
4371
4401
|
@AppBizIds = params['AppBizIds']
|
4372
4402
|
@SpaceId = params['SpaceId']
|
4403
|
+
@StatStartTime = params['StatStartTime']
|
4404
|
+
@StatEndTime = params['StatEndTime']
|
4373
4405
|
end
|
4374
4406
|
end
|
4375
4407
|
|
@@ -4584,9 +4616,9 @@ module TencentCloud
|
|
4584
4616
|
# @type SubBizType: String
|
4585
4617
|
# @param ModelName: 模型标识
|
4586
4618
|
# @type ModelName: String
|
4587
|
-
# @param StartTime: 开始时间戳, 单位为秒
|
4619
|
+
# @param StartTime: 开始时间戳, 单位为秒(废弃)
|
4588
4620
|
# @type StartTime: String
|
4589
|
-
# @param EndTime: 结束时间戳, 单位为秒
|
4621
|
+
# @param EndTime: 结束时间戳, 单位为秒(废弃)
|
4590
4622
|
# @type EndTime: String
|
4591
4623
|
# @param AppBizIds: 应用id列表
|
4592
4624
|
# @type AppBizIds: Array
|
@@ -4594,10 +4626,14 @@ module TencentCloud
|
|
4594
4626
|
# @type AppType: String
|
4595
4627
|
# @param SubScenes: 筛选子场景
|
4596
4628
|
# @type SubScenes: Array
|
4629
|
+
# @param StatStartTime: 开始时间戳, 单位为秒
|
4630
|
+
# @type StatStartTime: Integer
|
4631
|
+
# @param StatEndTime: 结束时间戳, 单位为秒
|
4632
|
+
# @type StatEndTime: Integer
|
4597
4633
|
|
4598
|
-
attr_accessor :UinAccount, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :AppType, :SubScenes
|
4634
|
+
attr_accessor :UinAccount, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :AppType, :SubScenes, :StatStartTime, :StatEndTime
|
4599
4635
|
|
4600
|
-
def initialize(uinaccount=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, apptype=nil, subscenes=nil)
|
4636
|
+
def initialize(uinaccount=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, apptype=nil, subscenes=nil, statstarttime=nil, statendtime=nil)
|
4601
4637
|
@UinAccount = uinaccount
|
4602
4638
|
@SubBizType = subbiztype
|
4603
4639
|
@ModelName = modelname
|
@@ -4606,6 +4642,8 @@ module TencentCloud
|
|
4606
4642
|
@AppBizIds = appbizids
|
4607
4643
|
@AppType = apptype
|
4608
4644
|
@SubScenes = subscenes
|
4645
|
+
@StatStartTime = statstarttime
|
4646
|
+
@StatEndTime = statendtime
|
4609
4647
|
end
|
4610
4648
|
|
4611
4649
|
def deserialize(params)
|
@@ -4617,6 +4655,8 @@ module TencentCloud
|
|
4617
4655
|
@AppBizIds = params['AppBizIds']
|
4618
4656
|
@AppType = params['AppType']
|
4619
4657
|
@SubScenes = params['SubScenes']
|
4658
|
+
@StatStartTime = params['StatStartTime']
|
4659
|
+
@StatEndTime = params['StatEndTime']
|
4620
4660
|
end
|
4621
4661
|
end
|
4622
4662
|
|
@@ -4681,9 +4721,9 @@ module TencentCloud
|
|
4681
4721
|
# @type SubBizType: String
|
4682
4722
|
# @param ModelName: 模型标识
|
4683
4723
|
# @type ModelName: String
|
4684
|
-
# @param StartTime: 开始时间戳, 单位为秒(默认值0)
|
4724
|
+
# @param StartTime: 开始时间戳, 单位为秒(默认值0)(废弃)
|
4685
4725
|
# @type StartTime: String
|
4686
|
-
# @param EndTime: 结束时间戳, 单位为秒(默认值0, 必须大于开始时间戳)
|
4726
|
+
# @param EndTime: 结束时间戳, 单位为秒(默认值0, 必须大于开始时间戳)(废弃)
|
4687
4727
|
# @type EndTime: String
|
4688
4728
|
# @param AppBizIds: 应用id列表
|
4689
4729
|
# @type AppBizIds: Array
|
@@ -4693,10 +4733,14 @@ module TencentCloud
|
|
4693
4733
|
# @type AppType: String
|
4694
4734
|
# @param SpaceId: 空间id
|
4695
4735
|
# @type SpaceId: String
|
4736
|
+
# @param StatStartTime: 开始时间戳, 单位为秒
|
4737
|
+
# @type StatStartTime: Integer
|
4738
|
+
# @param StatEndTime: 结束时间戳, 单位为秒
|
4739
|
+
# @type StatEndTime: Integer
|
4696
4740
|
|
4697
|
-
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType, :SpaceId
|
4741
|
+
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType, :SpaceId, :StatStartTime, :StatEndTime
|
4698
4742
|
|
4699
|
-
def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil, apptype=nil, spaceid=nil)
|
4743
|
+
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)
|
4700
4744
|
@UinAccount = uinaccount
|
4701
4745
|
@LoginUin = loginuin
|
4702
4746
|
@LoginSubAccountUin = loginsubaccountuin
|
@@ -4708,6 +4752,8 @@ module TencentCloud
|
|
4708
4752
|
@SubScenes = subscenes
|
4709
4753
|
@AppType = apptype
|
4710
4754
|
@SpaceId = spaceid
|
4755
|
+
@StatStartTime = statstarttime
|
4756
|
+
@StatEndTime = statendtime
|
4711
4757
|
end
|
4712
4758
|
|
4713
4759
|
def deserialize(params)
|
@@ -4722,6 +4768,8 @@ module TencentCloud
|
|
4722
4768
|
@SubScenes = params['SubScenes']
|
4723
4769
|
@AppType = params['AppType']
|
4724
4770
|
@SpaceId = params['SpaceId']
|
4771
|
+
@StatStartTime = params['StatStartTime']
|
4772
|
+
@StatEndTime = params['StatEndTime']
|
4725
4773
|
end
|
4726
4774
|
end
|
4727
4775
|
|
@@ -6128,6 +6176,22 @@ module TencentCloud
|
|
6128
6176
|
end
|
6129
6177
|
end
|
6130
6178
|
|
6179
|
+
# 输入框配置
|
6180
|
+
class InputBoxConfig < TencentCloud::Common::AbstractModel
|
6181
|
+
# @param InputBoxButtons: 输入框按钮,1:上传图片、2:上传文档,3:腾讯文档,4:联网搜索
|
6182
|
+
# @type InputBoxButtons: Array
|
6183
|
+
|
6184
|
+
attr_accessor :InputBoxButtons
|
6185
|
+
|
6186
|
+
def initialize(inputboxbuttons=nil)
|
6187
|
+
@InputBoxButtons = inputboxbuttons
|
6188
|
+
end
|
6189
|
+
|
6190
|
+
def deserialize(params)
|
6191
|
+
@InputBoxButtons = params['InputBoxButtons']
|
6192
|
+
end
|
6193
|
+
end
|
6194
|
+
|
6131
6195
|
# 意图达成方式
|
6132
6196
|
class IntentAchievement < TencentCloud::Common::AbstractModel
|
6133
6197
|
# @param Name: 意图达成方式,qa:问答回复、doc:文档回复、workflow:工作流回复,llm:大模型回复
|
@@ -6740,10 +6804,12 @@ module TencentCloud
|
|
6740
6804
|
# @param RecommendedPromptMode: 推荐问模式,0.结合知识库&对话历史推荐问题Prompt(默认) 1.仅结合知识库输出推荐问的prompt
|
6741
6805
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6742
6806
|
# @type RecommendedPromptMode: Integer
|
6807
|
+
# @param InputBoxConfig: 输入框按钮配置
|
6808
|
+
# @type InputBoxConfig: :class:`Tencentcloud::Lke.v20231130.models.InputBoxConfig`
|
6743
6809
|
|
6744
|
-
attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended, :RecommendedPromptMode
|
6810
|
+
attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended, :RecommendedPromptMode, :InputBoxConfig
|
6745
6811
|
|
6746
|
-
def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil, recommendedpromptmode=nil)
|
6812
|
+
def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil, recommendedpromptmode=nil, inputboxconfig=nil)
|
6747
6813
|
@Method = method
|
6748
6814
|
@UseGeneralKnowledge = usegeneralknowledge
|
6749
6815
|
@BareAnswer = bareanswer
|
@@ -6752,6 +6818,7 @@ module TencentCloud
|
|
6752
6818
|
@QuestionClarifyKeywords = questionclarifykeywords
|
6753
6819
|
@UseRecommended = userecommended
|
6754
6820
|
@RecommendedPromptMode = recommendedpromptmode
|
6821
|
+
@InputBoxConfig = inputboxconfig
|
6755
6822
|
end
|
6756
6823
|
|
6757
6824
|
def deserialize(params)
|
@@ -6763,6 +6830,10 @@ module TencentCloud
|
|
6763
6830
|
@QuestionClarifyKeywords = params['QuestionClarifyKeywords']
|
6764
6831
|
@UseRecommended = params['UseRecommended']
|
6765
6832
|
@RecommendedPromptMode = params['RecommendedPromptMode']
|
6833
|
+
unless params['InputBoxConfig'].nil?
|
6834
|
+
@InputBoxConfig = InputBoxConfig.new
|
6835
|
+
@InputBoxConfig.deserialize(params['InputBoxConfig'])
|
6836
|
+
end
|
6766
6837
|
end
|
6767
6838
|
end
|
6768
6839
|
|
@@ -8691,14 +8762,14 @@ module TencentCloud
|
|
8691
8762
|
class ListUsageCallDetailRequest < TencentCloud::Common::AbstractModel
|
8692
8763
|
# @param ModelName: 模型标识
|
8693
8764
|
# @type ModelName: String
|
8694
|
-
# @param StartTime: 开始时间
|
8695
|
-
# @type StartTime: String
|
8696
|
-
# @param EndTime: 结束时间
|
8697
|
-
# @type EndTime: String
|
8698
8765
|
# @param PageNumber: 页码(从1开始)
|
8699
8766
|
# @type PageNumber: Integer
|
8700
8767
|
# @param PageSize: 分页数量(最大值1000)
|
8701
8768
|
# @type PageSize: Integer
|
8769
|
+
# @param StartTime: 开始时间(废弃)
|
8770
|
+
# @type StartTime: String
|
8771
|
+
# @param EndTime: 结束时间(废弃)
|
8772
|
+
# @type EndTime: String
|
8702
8773
|
# @param UinAccount: uin列表
|
8703
8774
|
# @type UinAccount: Array
|
8704
8775
|
# @param AppBizIds: 应用ID列表
|
@@ -8713,15 +8784,19 @@ module TencentCloud
|
|
8713
8784
|
# @type BillingTag: String
|
8714
8785
|
# @param SpaceId: 空间id
|
8715
8786
|
# @type SpaceId: String
|
8787
|
+
# @param StatStartTime: 开始时间戳, 单位为秒
|
8788
|
+
# @type StatStartTime: Integer
|
8789
|
+
# @param StatEndTime: 开始时间戳, 单位为秒
|
8790
|
+
# @type StatEndTime: Integer
|
8716
8791
|
|
8717
|
-
attr_accessor :ModelName, :
|
8792
|
+
attr_accessor :ModelName, :PageNumber, :PageSize, :StartTime, :EndTime, :UinAccount, :AppBizIds, :CallType, :SubScenes, :AppType, :BillingTag, :SpaceId, :StatStartTime, :StatEndTime
|
8718
8793
|
|
8719
|
-
def initialize(modelname=nil,
|
8794
|
+
def initialize(modelname=nil, pagenumber=nil, pagesize=nil, starttime=nil, endtime=nil, uinaccount=nil, appbizids=nil, calltype=nil, subscenes=nil, apptype=nil, billingtag=nil, spaceid=nil, statstarttime=nil, statendtime=nil)
|
8720
8795
|
@ModelName = modelname
|
8721
|
-
@StartTime = starttime
|
8722
|
-
@EndTime = endtime
|
8723
8796
|
@PageNumber = pagenumber
|
8724
8797
|
@PageSize = pagesize
|
8798
|
+
@StartTime = starttime
|
8799
|
+
@EndTime = endtime
|
8725
8800
|
@UinAccount = uinaccount
|
8726
8801
|
@AppBizIds = appbizids
|
8727
8802
|
@CallType = calltype
|
@@ -8729,14 +8804,16 @@ module TencentCloud
|
|
8729
8804
|
@AppType = apptype
|
8730
8805
|
@BillingTag = billingtag
|
8731
8806
|
@SpaceId = spaceid
|
8807
|
+
@StatStartTime = statstarttime
|
8808
|
+
@StatEndTime = statendtime
|
8732
8809
|
end
|
8733
8810
|
|
8734
8811
|
def deserialize(params)
|
8735
8812
|
@ModelName = params['ModelName']
|
8736
|
-
@StartTime = params['StartTime']
|
8737
|
-
@EndTime = params['EndTime']
|
8738
8813
|
@PageNumber = params['PageNumber']
|
8739
8814
|
@PageSize = params['PageSize']
|
8815
|
+
@StartTime = params['StartTime']
|
8816
|
+
@EndTime = params['EndTime']
|
8740
8817
|
@UinAccount = params['UinAccount']
|
8741
8818
|
@AppBizIds = params['AppBizIds']
|
8742
8819
|
@CallType = params['CallType']
|
@@ -8744,6 +8821,8 @@ module TencentCloud
|
|
8744
8821
|
@AppType = params['AppType']
|
8745
8822
|
@BillingTag = params['BillingTag']
|
8746
8823
|
@SpaceId = params['SpaceId']
|
8824
|
+
@StatStartTime = params['StatStartTime']
|
8825
|
+
@StatEndTime = params['StatEndTime']
|
8747
8826
|
end
|
8748
8827
|
end
|
8749
8828
|
|
@@ -8780,35 +8859,35 @@ module TencentCloud
|
|
8780
8859
|
|
8781
8860
|
# ListWorkflowRuns请求参数结构体
|
8782
8861
|
class ListWorkflowRunsRequest < TencentCloud::Common::AbstractModel
|
8783
|
-
# @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
8784
|
-
# @type RunEnv: Integer
|
8785
8862
|
# @param AppBizId: 应用ID
|
8786
8863
|
# @type AppBizId: String
|
8787
|
-
# @param Page: 页码
|
8788
|
-
# @type Page: Integer
|
8789
8864
|
# @param PageSize: 每页数量
|
8790
8865
|
# @type PageSize: Integer
|
8866
|
+
# @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
8867
|
+
# @type RunEnv: Integer
|
8868
|
+
# @param Page: 页码
|
8869
|
+
# @type Page: Integer
|
8791
8870
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
8792
8871
|
# @type LoginUin: String
|
8793
8872
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
8794
8873
|
# @type LoginSubAccountUin: String
|
8795
8874
|
|
8796
|
-
attr_accessor :
|
8875
|
+
attr_accessor :AppBizId, :PageSize, :RunEnv, :Page, :LoginUin, :LoginSubAccountUin
|
8797
8876
|
|
8798
|
-
def initialize(
|
8799
|
-
@RunEnv = runenv
|
8877
|
+
def initialize(appbizid=nil, pagesize=nil, runenv=nil, page=nil, loginuin=nil, loginsubaccountuin=nil)
|
8800
8878
|
@AppBizId = appbizid
|
8801
|
-
@Page = page
|
8802
8879
|
@PageSize = pagesize
|
8880
|
+
@RunEnv = runenv
|
8881
|
+
@Page = page
|
8803
8882
|
@LoginUin = loginuin
|
8804
8883
|
@LoginSubAccountUin = loginsubaccountuin
|
8805
8884
|
end
|
8806
8885
|
|
8807
8886
|
def deserialize(params)
|
8808
|
-
@RunEnv = params['RunEnv']
|
8809
8887
|
@AppBizId = params['AppBizId']
|
8810
|
-
@Page = params['Page']
|
8811
8888
|
@PageSize = params['PageSize']
|
8889
|
+
@RunEnv = params['RunEnv']
|
8890
|
+
@Page = params['Page']
|
8812
8891
|
@LoginUin = params['LoginUin']
|
8813
8892
|
@LoginSubAccountUin = params['LoginSubAccountUin']
|
8814
8893
|
end
|
@@ -11085,19 +11164,23 @@ module TencentCloud
|
|
11085
11164
|
class RetryDocParseRequest < TencentCloud::Common::AbstractModel
|
11086
11165
|
# @param BotBizId: 应用ID
|
11087
11166
|
# @type BotBizId: String
|
11088
|
-
# @param DocBizId:
|
11167
|
+
# @param DocBizId: 废弃
|
11089
11168
|
# @type DocBizId: String
|
11169
|
+
# @param DocBizIds: 集合最大上限50个,DocBizIds有值使用DocBizIds,为空时则使用DocBizId(兼容废弃字段)
|
11170
|
+
# @type DocBizIds: Array
|
11090
11171
|
|
11091
|
-
attr_accessor :BotBizId, :DocBizId
|
11172
|
+
attr_accessor :BotBizId, :DocBizId, :DocBizIds
|
11092
11173
|
|
11093
|
-
def initialize(botbizid=nil, docbizid=nil)
|
11174
|
+
def initialize(botbizid=nil, docbizid=nil, docbizids=nil)
|
11094
11175
|
@BotBizId = botbizid
|
11095
11176
|
@DocBizId = docbizid
|
11177
|
+
@DocBizIds = docbizids
|
11096
11178
|
end
|
11097
11179
|
|
11098
11180
|
def deserialize(params)
|
11099
11181
|
@BotBizId = params['BotBizId']
|
11100
11182
|
@DocBizId = params['DocBizId']
|
11183
|
+
@DocBizIds = params['DocBizIds']
|
11101
11184
|
end
|
11102
11185
|
end
|
11103
11186
|
|
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.
|
4
|
+
version: 3.0.1150
|
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-
|
11
|
+
date: 2025-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|