tencentcloud-sdk-lowcode 3.0.1013 → 3.0.1014
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/v20210108/models.rb +69 -21
- 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: aa5cfaeb19b9f53784d82f5ab9a2c65949cef11d
|
4
|
+
data.tar.gz: 3d472814b779d71d76e87bd828acaa5c4585c690
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3e3a9edf942972c038b316b84411f943a23bbe6d8de705a293c24e955d3650db394d9f25ddcaf85536b1ad1f8e9a0ab03ce9340eed55ee6b6bc0ad7265a8a22
|
7
|
+
data.tar.gz: a93a3b311655b326ecf5b1d8199697b1394a66459c850d768955a8c5b0da0fc54526a9f9890a2608269b9fe6b3cdf1288258386a154a94435e72038d4fb90523
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1014
|
data/lib/v20210108/models.rb
CHANGED
@@ -19,25 +19,33 @@ module TencentCloud
|
|
19
19
|
module V20210108
|
20
20
|
# CreateKnowledgeSet请求参数结构体
|
21
21
|
class CreateKnowledgeSetRequest < TencentCloud::Common::AbstractModel
|
22
|
+
# @param EnvId: 环境ID
|
23
|
+
# @type EnvId: String
|
22
24
|
# @param Name: 知识库标识
|
23
25
|
# @type Name: String
|
24
26
|
# @param Title: 知识库名称
|
25
27
|
# @type Title: String
|
26
28
|
# @param Desc: 描述
|
27
29
|
# @type Desc: String
|
30
|
+
# @param Meta: 知识库的meta信息
|
31
|
+
# @type Meta: String
|
28
32
|
|
29
|
-
attr_accessor :Name, :Title, :Desc
|
33
|
+
attr_accessor :EnvId, :Name, :Title, :Desc, :Meta
|
30
34
|
|
31
|
-
def initialize(name=nil, title=nil, desc=nil)
|
35
|
+
def initialize(envid=nil, name=nil, title=nil, desc=nil, meta=nil)
|
36
|
+
@EnvId = envid
|
32
37
|
@Name = name
|
33
38
|
@Title = title
|
34
39
|
@Desc = desc
|
40
|
+
@Meta = meta
|
35
41
|
end
|
36
42
|
|
37
43
|
def deserialize(params)
|
44
|
+
@EnvId = params['EnvId']
|
38
45
|
@Name = params['Name']
|
39
46
|
@Title = params['Title']
|
40
47
|
@Desc = params['Desc']
|
48
|
+
@Meta = params['Meta']
|
41
49
|
end
|
42
50
|
end
|
43
51
|
|
@@ -160,8 +168,8 @@ module TencentCloud
|
|
160
168
|
|
161
169
|
attr_accessor :Id, :Title, :Name, :Type, :Description, :Schema, :CmsProject, :PkgId, :SchemaVersion, :CreatorId, :CreatedAt, :UpdatedAt, :EnvId, :DataSourceVersion, :AppUsageList, :PublishedAt, :ChildDataSourceIds, :Fun, :ScfStatus, :Methods, :ChildDataSourceNames, :IsNewDataSource, :ViewId, :Configuration, :TemplateCode, :Source, :PublishVersion, :PublishViewId, :SubType, :AuthStatus, :AuthInfo, :PublishStatus, :UpdateVersion, :RelationFieldList, :DbInstanceType, :PreviewTableName, :PublishedTableName, :DbSourceType
|
162
170
|
extend Gem::Deprecate
|
163
|
-
deprecate :PublishVersion, :none, 2025,
|
164
|
-
deprecate :PublishVersion=, :none, 2025,
|
171
|
+
deprecate :PublishVersion, :none, 2025, 3
|
172
|
+
deprecate :PublishVersion=, :none, 2025, 3
|
165
173
|
|
166
174
|
def initialize(id=nil, title=nil, name=nil, type=nil, description=nil, schema=nil, cmsproject=nil, pkgid=nil, schemaversion=nil, creatorid=nil, createdat=nil, updatedat=nil, envid=nil, datasourceversion=nil, appusagelist=nil, publishedat=nil, childdatasourceids=nil, fun=nil, scfstatus=nil, methods=nil, childdatasourcenames=nil, isnewdatasource=nil, viewid=nil, configuration=nil, templatecode=nil, source=nil, publishversion=nil, publishviewid=nil, subtype=nil, authstatus=nil, authinfo=nil, publishstatus=nil, updateversion=nil, relationfieldlist=nil, dbinstancetype=nil, previewtablename=nil, publishedtablename=nil, dbsourcetype=nil)
|
167
175
|
@Id = id
|
@@ -348,19 +356,23 @@ module TencentCloud
|
|
348
356
|
|
349
357
|
# DeleteKnowledgeDocumentSet请求参数结构体
|
350
358
|
class DeleteKnowledgeDocumentSetRequest < TencentCloud::Common::AbstractModel
|
359
|
+
# @param EnvId: 环境ID
|
360
|
+
# @type EnvId: String
|
351
361
|
# @param CollectionView: 知识库标识
|
352
362
|
# @type CollectionView: String
|
353
363
|
# @param Query: 删除时制定的条件
|
354
364
|
# @type Query: :class:`Tencentcloud::Lowcode.v20210108.models.DocumentQuery`
|
355
365
|
|
356
|
-
attr_accessor :CollectionView, :Query
|
366
|
+
attr_accessor :EnvId, :CollectionView, :Query
|
357
367
|
|
358
|
-
def initialize(collectionview=nil, query=nil)
|
368
|
+
def initialize(envid=nil, collectionview=nil, query=nil)
|
369
|
+
@EnvId = envid
|
359
370
|
@CollectionView = collectionview
|
360
371
|
@Query = query
|
361
372
|
end
|
362
373
|
|
363
374
|
def deserialize(params)
|
375
|
+
@EnvId = params['EnvId']
|
364
376
|
@CollectionView = params['CollectionView']
|
365
377
|
unless params['Query'].nil?
|
366
378
|
@Query = DocumentQuery.new
|
@@ -411,16 +423,20 @@ module TencentCloud
|
|
411
423
|
|
412
424
|
# DeleteKnowledgeSet请求参数结构体
|
413
425
|
class DeleteKnowledgeSetRequest < TencentCloud::Common::AbstractModel
|
426
|
+
# @param EnvId: 环境ID
|
427
|
+
# @type EnvId: String
|
414
428
|
# @param Name: 知识库标识
|
415
429
|
# @type Name: String
|
416
430
|
|
417
|
-
attr_accessor :Name
|
431
|
+
attr_accessor :EnvId, :Name
|
418
432
|
|
419
|
-
def initialize(name=nil)
|
433
|
+
def initialize(envid=nil, name=nil)
|
434
|
+
@EnvId = envid
|
420
435
|
@Name = name
|
421
436
|
end
|
422
437
|
|
423
438
|
def deserialize(params)
|
439
|
+
@EnvId = params['EnvId']
|
424
440
|
@Name = params['Name']
|
425
441
|
end
|
426
442
|
end
|
@@ -553,6 +569,8 @@ module TencentCloud
|
|
553
569
|
|
554
570
|
# DescribeKnowledgeDocumentSetDetail请求参数结构体
|
555
571
|
class DescribeKnowledgeDocumentSetDetailRequest < TencentCloud::Common::AbstractModel
|
572
|
+
# @param EnvId: 环境ID
|
573
|
+
# @type EnvId: String
|
556
574
|
# @param CollectionView: 知识库标识
|
557
575
|
# @type CollectionView: String
|
558
576
|
# @param DocumentSetName: 文件名
|
@@ -560,15 +578,17 @@ module TencentCloud
|
|
560
578
|
# @param DocumentSetId: 文件id
|
561
579
|
# @type DocumentSetId: String
|
562
580
|
|
563
|
-
attr_accessor :CollectionView, :DocumentSetName, :DocumentSetId
|
581
|
+
attr_accessor :EnvId, :CollectionView, :DocumentSetName, :DocumentSetId
|
564
582
|
|
565
|
-
def initialize(collectionview=nil, documentsetname=nil, documentsetid=nil)
|
583
|
+
def initialize(envid=nil, collectionview=nil, documentsetname=nil, documentsetid=nil)
|
584
|
+
@EnvId = envid
|
566
585
|
@CollectionView = collectionview
|
567
586
|
@DocumentSetName = documentsetname
|
568
587
|
@DocumentSetId = documentsetid
|
569
588
|
end
|
570
589
|
|
571
590
|
def deserialize(params)
|
591
|
+
@EnvId = params['EnvId']
|
572
592
|
@CollectionView = params['CollectionView']
|
573
593
|
@DocumentSetName = params['DocumentSetName']
|
574
594
|
@DocumentSetId = params['DocumentSetId']
|
@@ -625,19 +645,23 @@ module TencentCloud
|
|
625
645
|
|
626
646
|
# DescribeKnowledgeDocumentSetList请求参数结构体
|
627
647
|
class DescribeKnowledgeDocumentSetListRequest < TencentCloud::Common::AbstractModel
|
648
|
+
# @param EnvId: 环境ID
|
649
|
+
# @type EnvId: String
|
628
650
|
# @param CollectionView: 知识库标识
|
629
651
|
# @type CollectionView: String
|
630
652
|
# @param Query: 查询条件
|
631
653
|
# @type Query: :class:`Tencentcloud::Lowcode.v20210108.models.PageQuery`
|
632
654
|
|
633
|
-
attr_accessor :CollectionView, :Query
|
655
|
+
attr_accessor :EnvId, :CollectionView, :Query
|
634
656
|
|
635
|
-
def initialize(collectionview=nil, query=nil)
|
657
|
+
def initialize(envid=nil, collectionview=nil, query=nil)
|
658
|
+
@EnvId = envid
|
636
659
|
@CollectionView = collectionview
|
637
660
|
@Query = query
|
638
661
|
end
|
639
662
|
|
640
663
|
def deserialize(params)
|
664
|
+
@EnvId = params['EnvId']
|
641
665
|
@CollectionView = params['CollectionView']
|
642
666
|
unless params['Query'].nil?
|
643
667
|
@Query = PageQuery.new
|
@@ -700,27 +724,35 @@ module TencentCloud
|
|
700
724
|
|
701
725
|
# DescribeKnowledgeSetList请求参数结构体
|
702
726
|
class DescribeKnowledgeSetListRequest < TencentCloud::Common::AbstractModel
|
727
|
+
# @param EnvId: 环境ID
|
728
|
+
# @type EnvId: String
|
703
729
|
# @param Name: 知识库标识,精准查询
|
704
730
|
# @type Name: String
|
705
731
|
# @param Title: 知识库名称,精准查询
|
706
732
|
# @type Title: String
|
733
|
+
# @param Offset: 分页起始位
|
734
|
+
# @type Offset: Integer
|
707
735
|
# @param Limit: 查询条数
|
708
736
|
# @type Limit: Integer
|
709
737
|
# @param QueryMode: NoPage标识不分页
|
710
738
|
# @type QueryMode: String
|
711
739
|
|
712
|
-
attr_accessor :Name, :Title, :Limit, :QueryMode
|
740
|
+
attr_accessor :EnvId, :Name, :Title, :Offset, :Limit, :QueryMode
|
713
741
|
|
714
|
-
def initialize(name=nil, title=nil, limit=nil, querymode=nil)
|
742
|
+
def initialize(envid=nil, name=nil, title=nil, offset=nil, limit=nil, querymode=nil)
|
743
|
+
@EnvId = envid
|
715
744
|
@Name = name
|
716
745
|
@Title = title
|
746
|
+
@Offset = offset
|
717
747
|
@Limit = limit
|
718
748
|
@QueryMode = querymode
|
719
749
|
end
|
720
750
|
|
721
751
|
def deserialize(params)
|
752
|
+
@EnvId = params['EnvId']
|
722
753
|
@Name = params['Name']
|
723
754
|
@Title = params['Title']
|
755
|
+
@Offset = params['Offset']
|
724
756
|
@Limit = params['Limit']
|
725
757
|
@QueryMode = params['QueryMode']
|
726
758
|
end
|
@@ -916,16 +948,19 @@ module TencentCloud
|
|
916
948
|
# @param UpdateTime: 更新时间
|
917
949
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
918
950
|
# @type UpdateTime: String
|
951
|
+
# @param Meta: 知识库的meta信息
|
952
|
+
# @type Meta: String
|
919
953
|
|
920
|
-
attr_accessor :Name, :Title, :Desc, :Active, :CreateTime, :UpdateTime
|
954
|
+
attr_accessor :Name, :Title, :Desc, :Active, :CreateTime, :UpdateTime, :Meta
|
921
955
|
|
922
|
-
def initialize(name=nil, title=nil, desc=nil, active=nil, createtime=nil, updatetime=nil)
|
956
|
+
def initialize(name=nil, title=nil, desc=nil, active=nil, createtime=nil, updatetime=nil, meta=nil)
|
923
957
|
@Name = name
|
924
958
|
@Title = title
|
925
959
|
@Desc = desc
|
926
960
|
@Active = active
|
927
961
|
@CreateTime = createtime
|
928
962
|
@UpdateTime = updatetime
|
963
|
+
@Meta = meta
|
929
964
|
end
|
930
965
|
|
931
966
|
def deserialize(params)
|
@@ -935,6 +970,7 @@ module TencentCloud
|
|
935
970
|
@Active = params['Active']
|
936
971
|
@CreateTime = params['CreateTime']
|
937
972
|
@UpdateTime = params['UpdateTime']
|
973
|
+
@Meta = params['Meta']
|
938
974
|
end
|
939
975
|
end
|
940
976
|
|
@@ -1326,6 +1362,8 @@ module TencentCloud
|
|
1326
1362
|
|
1327
1363
|
# UpdateKnowledgeSet请求参数结构体
|
1328
1364
|
class UpdateKnowledgeSetRequest < TencentCloud::Common::AbstractModel
|
1365
|
+
# @param EnvId: 环境ID
|
1366
|
+
# @type EnvId: String
|
1329
1367
|
# @param Name: 知识库标识
|
1330
1368
|
# @type Name: String
|
1331
1369
|
# @param Title: 知识库名称
|
@@ -1334,21 +1372,27 @@ module TencentCloud
|
|
1334
1372
|
# @type Desc: String
|
1335
1373
|
# @param Active: 状态;ENABLED启用;NOT_ENABLED不启用
|
1336
1374
|
# @type Active: String
|
1375
|
+
# @param Meta: 知识库的meta信息
|
1376
|
+
# @type Meta: String
|
1337
1377
|
|
1338
|
-
attr_accessor :Name, :Title, :Desc, :Active
|
1378
|
+
attr_accessor :EnvId, :Name, :Title, :Desc, :Active, :Meta
|
1339
1379
|
|
1340
|
-
def initialize(name=nil, title=nil, desc=nil, active=nil)
|
1380
|
+
def initialize(envid=nil, name=nil, title=nil, desc=nil, active=nil, meta=nil)
|
1381
|
+
@EnvId = envid
|
1341
1382
|
@Name = name
|
1342
1383
|
@Title = title
|
1343
1384
|
@Desc = desc
|
1344
1385
|
@Active = active
|
1386
|
+
@Meta = meta
|
1345
1387
|
end
|
1346
1388
|
|
1347
1389
|
def deserialize(params)
|
1390
|
+
@EnvId = params['EnvId']
|
1348
1391
|
@Name = params['Name']
|
1349
1392
|
@Title = params['Title']
|
1350
1393
|
@Desc = params['Desc']
|
1351
1394
|
@Active = params['Active']
|
1395
|
+
@Meta = params['Meta']
|
1352
1396
|
end
|
1353
1397
|
end
|
1354
1398
|
|
@@ -1370,11 +1414,13 @@ module TencentCloud
|
|
1370
1414
|
|
1371
1415
|
# UploadKnowledgeDocumentSet请求参数结构体
|
1372
1416
|
class UploadKnowledgeDocumentSetRequest < TencentCloud::Common::AbstractModel
|
1417
|
+
# @param EnvId: 环境ID
|
1418
|
+
# @type EnvId: String
|
1373
1419
|
# @param CollectionView: 知识库标识
|
1374
1420
|
# @type CollectionView: String
|
1375
1421
|
# @param FileName: 状态;ENABLED启用;NOT_ENABLED不启用
|
1376
1422
|
# @type FileName: String
|
1377
|
-
# @param CosUrl:
|
1423
|
+
# @param CosUrl: 腾讯云文件存储位置的可读地址
|
1378
1424
|
# @type CosUrl: String
|
1379
1425
|
# @param DocumentType: 文件类型,例如: .docx, .md
|
1380
1426
|
# @type DocumentType: String
|
@@ -1387,9 +1433,10 @@ module TencentCloud
|
|
1387
1433
|
# @param DocumentSetId: 文件id
|
1388
1434
|
# @type DocumentSetId: String
|
1389
1435
|
|
1390
|
-
attr_accessor :CollectionView, :FileName, :CosUrl, :DocumentType, :DocumentDesc, :FileTitle, :FileMetaData, :DocumentSetId
|
1436
|
+
attr_accessor :EnvId, :CollectionView, :FileName, :CosUrl, :DocumentType, :DocumentDesc, :FileTitle, :FileMetaData, :DocumentSetId
|
1391
1437
|
|
1392
|
-
def initialize(collectionview=nil, filename=nil, cosurl=nil, documenttype=nil, documentdesc=nil, filetitle=nil, filemetadata=nil, documentsetid=nil)
|
1438
|
+
def initialize(envid=nil, collectionview=nil, filename=nil, cosurl=nil, documenttype=nil, documentdesc=nil, filetitle=nil, filemetadata=nil, documentsetid=nil)
|
1439
|
+
@EnvId = envid
|
1393
1440
|
@CollectionView = collectionview
|
1394
1441
|
@FileName = filename
|
1395
1442
|
@CosUrl = cosurl
|
@@ -1401,6 +1448,7 @@ module TencentCloud
|
|
1401
1448
|
end
|
1402
1449
|
|
1403
1450
|
def deserialize(params)
|
1451
|
+
@EnvId = params['EnvId']
|
1404
1452
|
@CollectionView = params['CollectionView']
|
1405
1453
|
@FileName = params['FileName']
|
1406
1454
|
@CosUrl = params['CosUrl']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lowcode
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1014
|
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-03-
|
11
|
+
date: 2025-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|