tencentcloud-sdk-python-lowcode 3.0.1332__tar.gz → 3.0.1351__tar.gz

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.

Potentially problematic release.


This version of tencentcloud-sdk-python-lowcode might be problematic. Click here for more details.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/setup.py +1 -1
  3. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud/lowcode/v20210108/models.py +182 -110
  5. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud_sdk_python_lowcode.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-lowcode-3.0.1351/tencentcloud_sdk_python_lowcode.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-lowcode-3.0.1332/tencentcloud_sdk_python_lowcode.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/README.rst +0 -0
  9. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud/lowcode/__init__.py +0 -0
  11. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud/lowcode/v20210108/__init__.py +0 -0
  12. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud/lowcode/v20210108/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud/lowcode/v20210108/lowcode_client.py +0 -0
  14. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud_sdk_python_lowcode.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud_sdk_python_lowcode.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-lowcode-3.0.1332 → tencentcloud-sdk-python-lowcode-3.0.1351}/tencentcloud_sdk_python_lowcode.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-lowcode
3
- Version: 3.0.1332
3
+ Version: 3.0.1351
4
4
  Summary: Tencent Cloud Lowcode SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-lowcode',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1332"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1351"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Lowcode SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1332'
17
+ __version__ = '3.0.1351'
@@ -25,16 +25,33 @@ class CreateKnowledgeSetRequest(AbstractModel):
25
25
 
26
26
  def __init__(self):
27
27
  r"""
28
+ :param _EnvId: 环境ID
29
+ :type EnvId: str
28
30
  :param _Name: 知识库标识
29
31
  :type Name: str
30
32
  :param _Title: 知识库名称
31
33
  :type Title: str
32
34
  :param _Desc: 描述
33
35
  :type Desc: str
36
+ :param _Meta: 知识库的meta信息
37
+ :type Meta: str
34
38
  """
39
+ self._EnvId = None
35
40
  self._Name = None
36
41
  self._Title = None
37
42
  self._Desc = None
43
+ self._Meta = None
44
+
45
+ @property
46
+ def EnvId(self):
47
+ """环境ID
48
+ :rtype: str
49
+ """
50
+ return self._EnvId
51
+
52
+ @EnvId.setter
53
+ def EnvId(self, EnvId):
54
+ self._EnvId = EnvId
38
55
 
39
56
  @property
40
57
  def Name(self):
@@ -69,11 +86,24 @@ class CreateKnowledgeSetRequest(AbstractModel):
69
86
  def Desc(self, Desc):
70
87
  self._Desc = Desc
71
88
 
89
+ @property
90
+ def Meta(self):
91
+ """知识库的meta信息
92
+ :rtype: str
93
+ """
94
+ return self._Meta
95
+
96
+ @Meta.setter
97
+ def Meta(self, Meta):
98
+ self._Meta = Meta
99
+
72
100
 
73
101
  def _deserialize(self, params):
102
+ self._EnvId = params.get("EnvId")
74
103
  self._Name = params.get("Name")
75
104
  self._Title = params.get("Title")
76
105
  self._Desc = params.get("Desc")
106
+ self._Meta = params.get("Meta")
77
107
  memeber_set = set(params.keys())
78
108
  for name, value in vars(self).items():
79
109
  property_name = name[1:]
@@ -988,14 +1018,28 @@ class DeleteKnowledgeDocumentSetRequest(AbstractModel):
988
1018
 
989
1019
  def __init__(self):
990
1020
  r"""
1021
+ :param _EnvId: 环境ID
1022
+ :type EnvId: str
991
1023
  :param _CollectionView: 知识库标识
992
1024
  :type CollectionView: str
993
1025
  :param _Query: 删除时制定的条件
994
1026
  :type Query: :class:`tencentcloud.lowcode.v20210108.models.DocumentQuery`
995
1027
  """
1028
+ self._EnvId = None
996
1029
  self._CollectionView = None
997
1030
  self._Query = None
998
1031
 
1032
+ @property
1033
+ def EnvId(self):
1034
+ """环境ID
1035
+ :rtype: str
1036
+ """
1037
+ return self._EnvId
1038
+
1039
+ @EnvId.setter
1040
+ def EnvId(self, EnvId):
1041
+ self._EnvId = EnvId
1042
+
999
1043
  @property
1000
1044
  def CollectionView(self):
1001
1045
  """知识库标识
@@ -1020,6 +1064,7 @@ class DeleteKnowledgeDocumentSetRequest(AbstractModel):
1020
1064
 
1021
1065
 
1022
1066
  def _deserialize(self, params):
1067
+ self._EnvId = params.get("EnvId")
1023
1068
  self._CollectionView = params.get("CollectionView")
1024
1069
  if params.get("Query") is not None:
1025
1070
  self._Query = DocumentQuery()
@@ -1087,7 +1132,6 @@ class DeleteKnowledgeDocumentSetRsp(AbstractModel):
1087
1132
  def __init__(self):
1088
1133
  r"""
1089
1134
  :param _AffectedCount: 删除文档数量。
1090
- 注意:此字段可能返回 null,表示取不到有效值。
1091
1135
  :type AffectedCount: int
1092
1136
  """
1093
1137
  self._AffectedCount = None
@@ -1095,7 +1139,6 @@ class DeleteKnowledgeDocumentSetRsp(AbstractModel):
1095
1139
  @property
1096
1140
  def AffectedCount(self):
1097
1141
  """删除文档数量。
1098
- 注意:此字段可能返回 null,表示取不到有效值。
1099
1142
  :rtype: int
1100
1143
  """
1101
1144
  return self._AffectedCount
@@ -1124,11 +1167,25 @@ class DeleteKnowledgeSetRequest(AbstractModel):
1124
1167
 
1125
1168
  def __init__(self):
1126
1169
  r"""
1170
+ :param _EnvId: 环境ID
1171
+ :type EnvId: str
1127
1172
  :param _Name: 知识库标识
1128
1173
  :type Name: str
1129
1174
  """
1175
+ self._EnvId = None
1130
1176
  self._Name = None
1131
1177
 
1178
+ @property
1179
+ def EnvId(self):
1180
+ """环境ID
1181
+ :rtype: str
1182
+ """
1183
+ return self._EnvId
1184
+
1185
+ @EnvId.setter
1186
+ def EnvId(self, EnvId):
1187
+ self._EnvId = EnvId
1188
+
1132
1189
  @property
1133
1190
  def Name(self):
1134
1191
  """知识库标识
@@ -1142,6 +1199,7 @@ class DeleteKnowledgeSetRequest(AbstractModel):
1142
1199
 
1143
1200
 
1144
1201
  def _deserialize(self, params):
1202
+ self._EnvId = params.get("EnvId")
1145
1203
  self._Name = params.get("Name")
1146
1204
  memeber_set = set(params.keys())
1147
1205
  for name, value in vars(self).items():
@@ -1526,6 +1584,8 @@ class DescribeKnowledgeDocumentSetDetailRequest(AbstractModel):
1526
1584
 
1527
1585
  def __init__(self):
1528
1586
  r"""
1587
+ :param _EnvId: 环境ID
1588
+ :type EnvId: str
1529
1589
  :param _CollectionView: 知识库标识
1530
1590
  :type CollectionView: str
1531
1591
  :param _DocumentSetName: 文件名
@@ -1533,10 +1593,22 @@ class DescribeKnowledgeDocumentSetDetailRequest(AbstractModel):
1533
1593
  :param _DocumentSetId: 文件id
1534
1594
  :type DocumentSetId: str
1535
1595
  """
1596
+ self._EnvId = None
1536
1597
  self._CollectionView = None
1537
1598
  self._DocumentSetName = None
1538
1599
  self._DocumentSetId = None
1539
1600
 
1601
+ @property
1602
+ def EnvId(self):
1603
+ """环境ID
1604
+ :rtype: str
1605
+ """
1606
+ return self._EnvId
1607
+
1608
+ @EnvId.setter
1609
+ def EnvId(self, EnvId):
1610
+ self._EnvId = EnvId
1611
+
1540
1612
  @property
1541
1613
  def CollectionView(self):
1542
1614
  """知识库标识
@@ -1572,6 +1644,7 @@ class DescribeKnowledgeDocumentSetDetailRequest(AbstractModel):
1572
1644
 
1573
1645
 
1574
1646
  def _deserialize(self, params):
1647
+ self._EnvId = params.get("EnvId")
1575
1648
  self._CollectionView = params.get("CollectionView")
1576
1649
  self._DocumentSetName = params.get("DocumentSetName")
1577
1650
  self._DocumentSetId = params.get("DocumentSetId")
@@ -1638,10 +1711,8 @@ class DescribeKnowledgeDocumentSetDetailRsp(AbstractModel):
1638
1711
  def __init__(self):
1639
1712
  r"""
1640
1713
  :param _Count: 获取的数量。
1641
- 注意:此字段可能返回 null,表示取不到有效值。
1642
1714
  :type Count: int
1643
1715
  :param _DocumentSet: 文档信息
1644
- 注意:此字段可能返回 null,表示取不到有效值。
1645
1716
  :type DocumentSet: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeDocumentSet`
1646
1717
  """
1647
1718
  self._Count = None
@@ -1650,7 +1721,6 @@ class DescribeKnowledgeDocumentSetDetailRsp(AbstractModel):
1650
1721
  @property
1651
1722
  def Count(self):
1652
1723
  """获取的数量。
1653
- 注意:此字段可能返回 null,表示取不到有效值。
1654
1724
  :rtype: int
1655
1725
  """
1656
1726
  return self._Count
@@ -1662,7 +1732,6 @@ class DescribeKnowledgeDocumentSetDetailRsp(AbstractModel):
1662
1732
  @property
1663
1733
  def DocumentSet(self):
1664
1734
  """文档信息
1665
- 注意:此字段可能返回 null,表示取不到有效值。
1666
1735
  :rtype: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeDocumentSet`
1667
1736
  """
1668
1737
  return self._DocumentSet
@@ -1694,14 +1763,28 @@ class DescribeKnowledgeDocumentSetListRequest(AbstractModel):
1694
1763
 
1695
1764
  def __init__(self):
1696
1765
  r"""
1766
+ :param _EnvId: 环境ID
1767
+ :type EnvId: str
1697
1768
  :param _CollectionView: 知识库标识
1698
1769
  :type CollectionView: str
1699
1770
  :param _Query: 查询条件
1700
1771
  :type Query: :class:`tencentcloud.lowcode.v20210108.models.PageQuery`
1701
1772
  """
1773
+ self._EnvId = None
1702
1774
  self._CollectionView = None
1703
1775
  self._Query = None
1704
1776
 
1777
+ @property
1778
+ def EnvId(self):
1779
+ """环境ID
1780
+ :rtype: str
1781
+ """
1782
+ return self._EnvId
1783
+
1784
+ @EnvId.setter
1785
+ def EnvId(self, EnvId):
1786
+ self._EnvId = EnvId
1787
+
1705
1788
  @property
1706
1789
  def CollectionView(self):
1707
1790
  """知识库标识
@@ -1726,6 +1809,7 @@ class DescribeKnowledgeDocumentSetListRequest(AbstractModel):
1726
1809
 
1727
1810
 
1728
1811
  def _deserialize(self, params):
1812
+ self._EnvId = params.get("EnvId")
1729
1813
  self._CollectionView = params.get("CollectionView")
1730
1814
  if params.get("Query") is not None:
1731
1815
  self._Query = PageQuery()
@@ -1793,10 +1877,8 @@ class DescribeKnowledgeDocumentSetListRsp(AbstractModel):
1793
1877
  def __init__(self):
1794
1878
  r"""
1795
1879
  :param _DocumentSets: 文件集
1796
- 注意:此字段可能返回 null,表示取不到有效值。
1797
1880
  :type DocumentSets: list of QureyKnowledgeDocumentSet
1798
1881
  :param _Count: 条数
1799
- 注意:此字段可能返回 null,表示取不到有效值。
1800
1882
  :type Count: int
1801
1883
  """
1802
1884
  self._DocumentSets = None
@@ -1805,7 +1887,6 @@ class DescribeKnowledgeDocumentSetListRsp(AbstractModel):
1805
1887
  @property
1806
1888
  def DocumentSets(self):
1807
1889
  """文件集
1808
- 注意:此字段可能返回 null,表示取不到有效值。
1809
1890
  :rtype: list of QureyKnowledgeDocumentSet
1810
1891
  """
1811
1892
  return self._DocumentSets
@@ -1817,7 +1898,6 @@ class DescribeKnowledgeDocumentSetListRsp(AbstractModel):
1817
1898
  @property
1818
1899
  def Count(self):
1819
1900
  """条数
1820
- 注意:此字段可能返回 null,表示取不到有效值。
1821
1901
  :rtype: int
1822
1902
  """
1823
1903
  return self._Count
@@ -1852,20 +1932,37 @@ class DescribeKnowledgeSetListRequest(AbstractModel):
1852
1932
 
1853
1933
  def __init__(self):
1854
1934
  r"""
1935
+ :param _EnvId: 环境ID
1936
+ :type EnvId: str
1855
1937
  :param _Name: 知识库标识,精准查询
1856
1938
  :type Name: str
1857
1939
  :param _Title: 知识库名称,精准查询
1858
1940
  :type Title: str
1941
+ :param _Offset: 分页起始位
1942
+ :type Offset: int
1859
1943
  :param _Limit: 查询条数
1860
1944
  :type Limit: int
1861
1945
  :param _QueryMode: NoPage标识不分页
1862
1946
  :type QueryMode: str
1863
1947
  """
1948
+ self._EnvId = None
1864
1949
  self._Name = None
1865
1950
  self._Title = None
1951
+ self._Offset = None
1866
1952
  self._Limit = None
1867
1953
  self._QueryMode = None
1868
1954
 
1955
+ @property
1956
+ def EnvId(self):
1957
+ """环境ID
1958
+ :rtype: str
1959
+ """
1960
+ return self._EnvId
1961
+
1962
+ @EnvId.setter
1963
+ def EnvId(self, EnvId):
1964
+ self._EnvId = EnvId
1965
+
1869
1966
  @property
1870
1967
  def Name(self):
1871
1968
  """知识库标识,精准查询
@@ -1888,6 +1985,17 @@ class DescribeKnowledgeSetListRequest(AbstractModel):
1888
1985
  def Title(self, Title):
1889
1986
  self._Title = Title
1890
1987
 
1988
+ @property
1989
+ def Offset(self):
1990
+ """分页起始位
1991
+ :rtype: int
1992
+ """
1993
+ return self._Offset
1994
+
1995
+ @Offset.setter
1996
+ def Offset(self, Offset):
1997
+ self._Offset = Offset
1998
+
1891
1999
  @property
1892
2000
  def Limit(self):
1893
2001
  """查询条数
@@ -1912,8 +2020,10 @@ class DescribeKnowledgeSetListRequest(AbstractModel):
1912
2020
 
1913
2021
 
1914
2022
  def _deserialize(self, params):
2023
+ self._EnvId = params.get("EnvId")
1915
2024
  self._Name = params.get("Name")
1916
2025
  self._Title = params.get("Title")
2026
+ self._Offset = params.get("Offset")
1917
2027
  self._Limit = params.get("Limit")
1918
2028
  self._QueryMode = params.get("QueryMode")
1919
2029
  memeber_set = set(params.keys())
@@ -1934,7 +2044,6 @@ class DescribeKnowledgeSetListResponse(AbstractModel):
1934
2044
  def __init__(self):
1935
2045
  r"""
1936
2046
  :param _Data: 知识库列表
1937
- 注意:此字段可能返回 null,表示取不到有效值。
1938
2047
  :type Data: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeSetRsp`
1939
2048
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1940
2049
  :type RequestId: str
@@ -1945,7 +2054,6 @@ class DescribeKnowledgeSetListResponse(AbstractModel):
1945
2054
  @property
1946
2055
  def Data(self):
1947
2056
  """知识库列表
1948
- 注意:此字段可能返回 null,表示取不到有效值。
1949
2057
  :rtype: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeSetRsp`
1950
2058
  """
1951
2059
  return self._Data
@@ -2047,34 +2155,24 @@ class KnowledgeDocumentSet(AbstractModel):
2047
2155
  def __init__(self):
2048
2156
  r"""
2049
2157
  :param _DocumentSetId: 文档id
2050
- 注意:此字段可能返回 null,表示取不到有效值。
2051
2158
  :type DocumentSetId: str
2052
2159
  :param _DocumentSetName: 文档名
2053
- 注意:此字段可能返回 null,表示取不到有效值。
2054
2160
  :type DocumentSetName: str
2055
2161
  :param _Text: 文件完整内容。
2056
- 注意:此字段可能返回 null,表示取不到有效值。
2057
2162
  :type Text: str
2058
2163
  :param _TextPrefix: 文件内容前 200个字符。
2059
- 注意:此字段可能返回 null,表示取不到有效值。
2060
2164
  :type TextPrefix: str
2061
2165
  :param _DocumentSetInfo: 文件详情
2062
- 注意:此字段可能返回 null,表示取不到有效值。
2063
2166
  :type DocumentSetInfo: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeDocumentSetInfo`
2064
2167
  :param _SplitterPreprocess: 文件拆分信息
2065
- 注意:此字段可能返回 null,表示取不到有效值。
2066
2168
  :type SplitterPreprocess: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeSplitterPreprocess`
2067
2169
  :param _Name: 未使用
2068
- 注意:此字段可能返回 null,表示取不到有效值。
2069
2170
  :type Name: str
2070
2171
  :param _FileTitle: 文档标题
2071
- 注意:此字段可能返回 null,表示取不到有效值。
2072
2172
  :type FileTitle: str
2073
2173
  :param _FileMetaData: 文档元信息,必须为jsonstring
2074
- 注意:此字段可能返回 null,表示取不到有效值。
2075
2174
  :type FileMetaData: str
2076
2175
  :param _Author: 作者
2077
- 注意:此字段可能返回 null,表示取不到有效值。
2078
2176
  :type Author: str
2079
2177
  """
2080
2178
  self._DocumentSetId = None
@@ -2091,7 +2189,6 @@ class KnowledgeDocumentSet(AbstractModel):
2091
2189
  @property
2092
2190
  def DocumentSetId(self):
2093
2191
  """文档id
2094
- 注意:此字段可能返回 null,表示取不到有效值。
2095
2192
  :rtype: str
2096
2193
  """
2097
2194
  return self._DocumentSetId
@@ -2103,7 +2200,6 @@ class KnowledgeDocumentSet(AbstractModel):
2103
2200
  @property
2104
2201
  def DocumentSetName(self):
2105
2202
  """文档名
2106
- 注意:此字段可能返回 null,表示取不到有效值。
2107
2203
  :rtype: str
2108
2204
  """
2109
2205
  return self._DocumentSetName
@@ -2115,7 +2211,6 @@ class KnowledgeDocumentSet(AbstractModel):
2115
2211
  @property
2116
2212
  def Text(self):
2117
2213
  """文件完整内容。
2118
- 注意:此字段可能返回 null,表示取不到有效值。
2119
2214
  :rtype: str
2120
2215
  """
2121
2216
  return self._Text
@@ -2127,7 +2222,6 @@ class KnowledgeDocumentSet(AbstractModel):
2127
2222
  @property
2128
2223
  def TextPrefix(self):
2129
2224
  """文件内容前 200个字符。
2130
- 注意:此字段可能返回 null,表示取不到有效值。
2131
2225
  :rtype: str
2132
2226
  """
2133
2227
  return self._TextPrefix
@@ -2139,7 +2233,6 @@ class KnowledgeDocumentSet(AbstractModel):
2139
2233
  @property
2140
2234
  def DocumentSetInfo(self):
2141
2235
  """文件详情
2142
- 注意:此字段可能返回 null,表示取不到有效值。
2143
2236
  :rtype: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeDocumentSetInfo`
2144
2237
  """
2145
2238
  return self._DocumentSetInfo
@@ -2151,7 +2244,6 @@ class KnowledgeDocumentSet(AbstractModel):
2151
2244
  @property
2152
2245
  def SplitterPreprocess(self):
2153
2246
  """文件拆分信息
2154
- 注意:此字段可能返回 null,表示取不到有效值。
2155
2247
  :rtype: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeSplitterPreprocess`
2156
2248
  """
2157
2249
  return self._SplitterPreprocess
@@ -2163,7 +2255,6 @@ class KnowledgeDocumentSet(AbstractModel):
2163
2255
  @property
2164
2256
  def Name(self):
2165
2257
  """未使用
2166
- 注意:此字段可能返回 null,表示取不到有效值。
2167
2258
  :rtype: str
2168
2259
  """
2169
2260
  return self._Name
@@ -2175,7 +2266,6 @@ class KnowledgeDocumentSet(AbstractModel):
2175
2266
  @property
2176
2267
  def FileTitle(self):
2177
2268
  """文档标题
2178
- 注意:此字段可能返回 null,表示取不到有效值。
2179
2269
  :rtype: str
2180
2270
  """
2181
2271
  return self._FileTitle
@@ -2187,7 +2277,6 @@ class KnowledgeDocumentSet(AbstractModel):
2187
2277
  @property
2188
2278
  def FileMetaData(self):
2189
2279
  """文档元信息,必须为jsonstring
2190
- 注意:此字段可能返回 null,表示取不到有效值。
2191
2280
  :rtype: str
2192
2281
  """
2193
2282
  return self._FileMetaData
@@ -2199,7 +2288,6 @@ class KnowledgeDocumentSet(AbstractModel):
2199
2288
  @property
2200
2289
  def Author(self):
2201
2290
  """作者
2202
- 注意:此字段可能返回 null,表示取不到有效值。
2203
2291
  :rtype: str
2204
2292
  """
2205
2293
  return self._Author
@@ -2242,13 +2330,10 @@ class KnowledgeDocumentSetInfo(AbstractModel):
2242
2330
  def __init__(self):
2243
2331
  r"""
2244
2332
  :param _TextLength: 文件的字符数。
2245
- 注意:此字段可能返回 null,表示取不到有效值。
2246
2333
  :type TextLength: int
2247
2334
  :param _ByteLength: 文件的字节数。
2248
- 注意:此字段可能返回 null,表示取不到有效值。
2249
2335
  :type ByteLength: int
2250
2336
  :param _IndexedProgress: 文件被预处理、Embedding 向量化的进度。
2251
- 注意:此字段可能返回 null,表示取不到有效值。
2252
2337
  :type IndexedProgress: int
2253
2338
  :param _IndexedStatus: 文件预处理、Embedding 向量化的状态。
2254
2339
  New:等待解析。
@@ -2256,16 +2341,12 @@ Loading:文件解析中。
2256
2341
  Failure:文件解析、写入出错。
2257
2342
  Ready:文件解析、写入完成。
2258
2343
 
2259
- 注意:此字段可能返回 null,表示取不到有效值。
2260
2344
  :type IndexedStatus: str
2261
2345
  :param _CreateTime: 文件创建时间。
2262
- 注意:此字段可能返回 null,表示取不到有效值。
2263
2346
  :type CreateTime: str
2264
2347
  :param _LastUpdateTime: 文件最后更新时间。
2265
- 注意:此字段可能返回 null,表示取不到有效值。
2266
2348
  :type LastUpdateTime: str
2267
2349
  :param _Keywords: 文件关键字。
2268
- 注意:此字段可能返回 null,表示取不到有效值。
2269
2350
  :type Keywords: str
2270
2351
  """
2271
2352
  self._TextLength = None
@@ -2279,7 +2360,6 @@ Ready:文件解析、写入完成。
2279
2360
  @property
2280
2361
  def TextLength(self):
2281
2362
  """文件的字符数。
2282
- 注意:此字段可能返回 null,表示取不到有效值。
2283
2363
  :rtype: int
2284
2364
  """
2285
2365
  return self._TextLength
@@ -2291,7 +2371,6 @@ Ready:文件解析、写入完成。
2291
2371
  @property
2292
2372
  def ByteLength(self):
2293
2373
  """文件的字节数。
2294
- 注意:此字段可能返回 null,表示取不到有效值。
2295
2374
  :rtype: int
2296
2375
  """
2297
2376
  return self._ByteLength
@@ -2303,7 +2382,6 @@ Ready:文件解析、写入完成。
2303
2382
  @property
2304
2383
  def IndexedProgress(self):
2305
2384
  """文件被预处理、Embedding 向量化的进度。
2306
- 注意:此字段可能返回 null,表示取不到有效值。
2307
2385
  :rtype: int
2308
2386
  """
2309
2387
  return self._IndexedProgress
@@ -2320,7 +2398,6 @@ Loading:文件解析中。
2320
2398
  Failure:文件解析、写入出错。
2321
2399
  Ready:文件解析、写入完成。
2322
2400
 
2323
- 注意:此字段可能返回 null,表示取不到有效值。
2324
2401
  :rtype: str
2325
2402
  """
2326
2403
  return self._IndexedStatus
@@ -2332,7 +2409,6 @@ Ready:文件解析、写入完成。
2332
2409
  @property
2333
2410
  def CreateTime(self):
2334
2411
  """文件创建时间。
2335
- 注意:此字段可能返回 null,表示取不到有效值。
2336
2412
  :rtype: str
2337
2413
  """
2338
2414
  return self._CreateTime
@@ -2344,7 +2420,6 @@ Ready:文件解析、写入完成。
2344
2420
  @property
2345
2421
  def LastUpdateTime(self):
2346
2422
  """文件最后更新时间。
2347
- 注意:此字段可能返回 null,表示取不到有效值。
2348
2423
  :rtype: str
2349
2424
  """
2350
2425
  return self._LastUpdateTime
@@ -2356,7 +2431,6 @@ Ready:文件解析、写入完成。
2356
2431
  @property
2357
2432
  def Keywords(self):
2358
2433
  """文件关键字。
2359
- 注意:此字段可能返回 null,表示取不到有效值。
2360
2434
  :rtype: str
2361
2435
  """
2362
2436
  return self._Keywords
@@ -2392,25 +2466,21 @@ class KnowledgeSet(AbstractModel):
2392
2466
  def __init__(self):
2393
2467
  r"""
2394
2468
  :param _Name: 知识库标识
2395
- 注意:此字段可能返回 null,表示取不到有效值。
2396
2469
  :type Name: str
2397
2470
  :param _Title: 知识库名称
2398
- 注意:此字段可能返回 null,表示取不到有效值。
2399
2471
  :type Title: str
2400
2472
  :param _Desc: 描述
2401
- 注意:此字段可能返回 null,表示取不到有效值。
2402
2473
  :type Desc: str
2403
2474
  :param _Active: 状态,
2404
2475
  NOT_ENABLED未启用
2405
2476
  ENABLED 已启用
2406
- 注意:此字段可能返回 null,表示取不到有效值。
2407
2477
  :type Active: str
2408
2478
  :param _CreateTime: 创建时间
2409
- 注意:此字段可能返回 null,表示取不到有效值。
2410
2479
  :type CreateTime: str
2411
2480
  :param _UpdateTime: 更新时间
2412
- 注意:此字段可能返回 null,表示取不到有效值。
2413
2481
  :type UpdateTime: str
2482
+ :param _Meta: 知识库的meta信息
2483
+ :type Meta: str
2414
2484
  """
2415
2485
  self._Name = None
2416
2486
  self._Title = None
@@ -2418,11 +2488,11 @@ ENABLED 已启用
2418
2488
  self._Active = None
2419
2489
  self._CreateTime = None
2420
2490
  self._UpdateTime = None
2491
+ self._Meta = None
2421
2492
 
2422
2493
  @property
2423
2494
  def Name(self):
2424
2495
  """知识库标识
2425
- 注意:此字段可能返回 null,表示取不到有效值。
2426
2496
  :rtype: str
2427
2497
  """
2428
2498
  return self._Name
@@ -2434,7 +2504,6 @@ ENABLED 已启用
2434
2504
  @property
2435
2505
  def Title(self):
2436
2506
  """知识库名称
2437
- 注意:此字段可能返回 null,表示取不到有效值。
2438
2507
  :rtype: str
2439
2508
  """
2440
2509
  return self._Title
@@ -2446,7 +2515,6 @@ ENABLED 已启用
2446
2515
  @property
2447
2516
  def Desc(self):
2448
2517
  """描述
2449
- 注意:此字段可能返回 null,表示取不到有效值。
2450
2518
  :rtype: str
2451
2519
  """
2452
2520
  return self._Desc
@@ -2460,7 +2528,6 @@ ENABLED 已启用
2460
2528
  """状态,
2461
2529
  NOT_ENABLED未启用
2462
2530
  ENABLED 已启用
2463
- 注意:此字段可能返回 null,表示取不到有效值。
2464
2531
  :rtype: str
2465
2532
  """
2466
2533
  return self._Active
@@ -2472,7 +2539,6 @@ ENABLED 已启用
2472
2539
  @property
2473
2540
  def CreateTime(self):
2474
2541
  """创建时间
2475
- 注意:此字段可能返回 null,表示取不到有效值。
2476
2542
  :rtype: str
2477
2543
  """
2478
2544
  return self._CreateTime
@@ -2484,7 +2550,6 @@ ENABLED 已启用
2484
2550
  @property
2485
2551
  def UpdateTime(self):
2486
2552
  """更新时间
2487
- 注意:此字段可能返回 null,表示取不到有效值。
2488
2553
  :rtype: str
2489
2554
  """
2490
2555
  return self._UpdateTime
@@ -2493,6 +2558,17 @@ ENABLED 已启用
2493
2558
  def UpdateTime(self, UpdateTime):
2494
2559
  self._UpdateTime = UpdateTime
2495
2560
 
2561
+ @property
2562
+ def Meta(self):
2563
+ """知识库的meta信息
2564
+ :rtype: str
2565
+ """
2566
+ return self._Meta
2567
+
2568
+ @Meta.setter
2569
+ def Meta(self, Meta):
2570
+ self._Meta = Meta
2571
+
2496
2572
 
2497
2573
  def _deserialize(self, params):
2498
2574
  self._Name = params.get("Name")
@@ -2501,6 +2577,7 @@ ENABLED 已启用
2501
2577
  self._Active = params.get("Active")
2502
2578
  self._CreateTime = params.get("CreateTime")
2503
2579
  self._UpdateTime = params.get("UpdateTime")
2580
+ self._Meta = params.get("Meta")
2504
2581
  memeber_set = set(params.keys())
2505
2582
  for name, value in vars(self).items():
2506
2583
  property_name = name[1:]
@@ -2519,10 +2596,8 @@ class KnowledgeSetRsp(AbstractModel):
2519
2596
  def __init__(self):
2520
2597
  r"""
2521
2598
  :param _Total: 总数
2522
- 注意:此字段可能返回 null,表示取不到有效值。
2523
2599
  :type Total: int
2524
2600
  :param _KnowledgeSets: 知识库列表
2525
- 注意:此字段可能返回 null,表示取不到有效值。
2526
2601
  :type KnowledgeSets: list of KnowledgeSet
2527
2602
  """
2528
2603
  self._Total = None
@@ -2531,7 +2606,6 @@ class KnowledgeSetRsp(AbstractModel):
2531
2606
  @property
2532
2607
  def Total(self):
2533
2608
  """总数
2534
- 注意:此字段可能返回 null,表示取不到有效值。
2535
2609
  :rtype: int
2536
2610
  """
2537
2611
  return self._Total
@@ -2543,7 +2617,6 @@ class KnowledgeSetRsp(AbstractModel):
2543
2617
  @property
2544
2618
  def KnowledgeSets(self):
2545
2619
  """知识库列表
2546
- 注意:此字段可能返回 null,表示取不到有效值。
2547
2620
  :rtype: list of KnowledgeSet
2548
2621
  """
2549
2622
  return self._KnowledgeSets
@@ -2582,13 +2655,11 @@ class KnowledgeSplitterPreprocess(AbstractModel):
2582
2655
  false:不追加。
2583
2656
  true:将段落 Title 追加到切分后的段落。
2584
2657
 
2585
- 注意:此字段可能返回 null,表示取不到有效值。
2586
2658
  :type AppendTitleToChunk: bool
2587
2659
  :param _AppendKeywordsToChunk: 在对文件拆分时,配置是否将关键字 keywords 追加到切分后的段落一并 Embedding。取值如下所示:
2588
2660
  false:不追加。
2589
2661
  true:将全文的 keywords 追加到切分后的段落。
2590
2662
 
2591
- 注意:此字段可能返回 null,表示取不到有效值。
2592
2663
  :type AppendKeywordsToChunk: bool
2593
2664
  """
2594
2665
  self._AppendTitleToChunk = None
@@ -2600,7 +2671,6 @@ true:将全文的 keywords 追加到切分后的段落。
2600
2671
  false:不追加。
2601
2672
  true:将段落 Title 追加到切分后的段落。
2602
2673
 
2603
- 注意:此字段可能返回 null,表示取不到有效值。
2604
2674
  :rtype: bool
2605
2675
  """
2606
2676
  return self._AppendTitleToChunk
@@ -2615,7 +2685,6 @@ true:将段落 Title 追加到切分后的段落。
2615
2685
  false:不追加。
2616
2686
  true:将全文的 keywords 追加到切分后的段落。
2617
2687
 
2618
- 注意:此字段可能返回 null,表示取不到有效值。
2619
2688
  :rtype: bool
2620
2689
  """
2621
2690
  return self._AppendKeywordsToChunk
@@ -2765,31 +2834,22 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2765
2834
  def __init__(self):
2766
2835
  r"""
2767
2836
  :param _DocumentSetId: 文件id
2768
- 注意:此字段可能返回 null,表示取不到有效值。
2769
2837
  :type DocumentSetId: str
2770
2838
  :param _DocumentSetName: 文件名
2771
- 注意:此字段可能返回 null,表示取不到有效值。
2772
2839
  :type DocumentSetName: str
2773
2840
  :param _TextPrefix: 文件内容前 200个字符。
2774
- 注意:此字段可能返回 null,表示取不到有效值。
2775
2841
  :type TextPrefix: str
2776
2842
  :param _SplitterPreprocess: 文件拆分信息
2777
- 注意:此字段可能返回 null,表示取不到有效值。
2778
2843
  :type SplitterPreprocess: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeSplitterPreprocess`
2779
2844
  :param _DocumentSetInfo: 文件详情
2780
- 注意:此字段可能返回 null,表示取不到有效值。
2781
2845
  :type DocumentSetInfo: :class:`tencentcloud.lowcode.v20210108.models.QureyKnowledgeDocumentSetInfo`
2782
2846
  :param _FileTitle: 文件标题
2783
- 注意:此字段可能返回 null,表示取不到有效值。
2784
2847
  :type FileTitle: str
2785
2848
  :param _FileMetaData: 文件元信息,必须为jsonstring
2786
- 注意:此字段可能返回 null,表示取不到有效值。
2787
2849
  :type FileMetaData: str
2788
2850
  :param _Name: name
2789
- 注意:此字段可能返回 null,表示取不到有效值。
2790
2851
  :type Name: str
2791
2852
  :param _Author: 作者
2792
- 注意:此字段可能返回 null,表示取不到有效值。
2793
2853
  :type Author: str
2794
2854
  """
2795
2855
  self._DocumentSetId = None
@@ -2805,7 +2865,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2805
2865
  @property
2806
2866
  def DocumentSetId(self):
2807
2867
  """文件id
2808
- 注意:此字段可能返回 null,表示取不到有效值。
2809
2868
  :rtype: str
2810
2869
  """
2811
2870
  return self._DocumentSetId
@@ -2817,7 +2876,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2817
2876
  @property
2818
2877
  def DocumentSetName(self):
2819
2878
  """文件名
2820
- 注意:此字段可能返回 null,表示取不到有效值。
2821
2879
  :rtype: str
2822
2880
  """
2823
2881
  return self._DocumentSetName
@@ -2829,7 +2887,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2829
2887
  @property
2830
2888
  def TextPrefix(self):
2831
2889
  """文件内容前 200个字符。
2832
- 注意:此字段可能返回 null,表示取不到有效值。
2833
2890
  :rtype: str
2834
2891
  """
2835
2892
  return self._TextPrefix
@@ -2841,7 +2898,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2841
2898
  @property
2842
2899
  def SplitterPreprocess(self):
2843
2900
  """文件拆分信息
2844
- 注意:此字段可能返回 null,表示取不到有效值。
2845
2901
  :rtype: :class:`tencentcloud.lowcode.v20210108.models.KnowledgeSplitterPreprocess`
2846
2902
  """
2847
2903
  return self._SplitterPreprocess
@@ -2853,7 +2909,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2853
2909
  @property
2854
2910
  def DocumentSetInfo(self):
2855
2911
  """文件详情
2856
- 注意:此字段可能返回 null,表示取不到有效值。
2857
2912
  :rtype: :class:`tencentcloud.lowcode.v20210108.models.QureyKnowledgeDocumentSetInfo`
2858
2913
  """
2859
2914
  return self._DocumentSetInfo
@@ -2865,7 +2920,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2865
2920
  @property
2866
2921
  def FileTitle(self):
2867
2922
  """文件标题
2868
- 注意:此字段可能返回 null,表示取不到有效值。
2869
2923
  :rtype: str
2870
2924
  """
2871
2925
  return self._FileTitle
@@ -2877,7 +2931,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2877
2931
  @property
2878
2932
  def FileMetaData(self):
2879
2933
  """文件元信息,必须为jsonstring
2880
- 注意:此字段可能返回 null,表示取不到有效值。
2881
2934
  :rtype: str
2882
2935
  """
2883
2936
  return self._FileMetaData
@@ -2889,7 +2942,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2889
2942
  @property
2890
2943
  def Name(self):
2891
2944
  """name
2892
- 注意:此字段可能返回 null,表示取不到有效值。
2893
2945
  :rtype: str
2894
2946
  """
2895
2947
  return self._Name
@@ -2901,7 +2953,6 @@ class QureyKnowledgeDocumentSet(AbstractModel):
2901
2953
  @property
2902
2954
  def Author(self):
2903
2955
  """作者
2904
- 注意:此字段可能返回 null,表示取不到有效值。
2905
2956
  :rtype: str
2906
2957
  """
2907
2958
  return self._Author
@@ -2943,13 +2994,10 @@ class QureyKnowledgeDocumentSetInfo(AbstractModel):
2943
2994
  def __init__(self):
2944
2995
  r"""
2945
2996
  :param _TextLength: 文件的字符数。
2946
- 注意:此字段可能返回 null,表示取不到有效值。
2947
2997
  :type TextLength: int
2948
2998
  :param _ByteLength: 文件的字节数。
2949
- 注意:此字段可能返回 null,表示取不到有效值。
2950
2999
  :type ByteLength: int
2951
3000
  :param _IndexedProgress: 文件被预处理、Embedding 向量化的进度。
2952
- 注意:此字段可能返回 null,表示取不到有效值。
2953
3001
  :type IndexedProgress: int
2954
3002
  :param _IndexedStatus: 文件预处理、Embedding 向量化的状态。
2955
3003
  New:等待解析。
@@ -2957,19 +3005,14 @@ Loading:文件解析中。
2957
3005
  Failure:文件解析、写入出错。
2958
3006
  Ready:文件解析、写入完成。
2959
3007
 
2960
- 注意:此字段可能返回 null,表示取不到有效值。
2961
3008
  :type IndexedStatus: str
2962
3009
  :param _IndexedErrorMsg: 错误信息
2963
- 注意:此字段可能返回 null,表示取不到有效值。
2964
3010
  :type IndexedErrorMsg: str
2965
3011
  :param _CreateTime: 文件创建时间。
2966
- 注意:此字段可能返回 null,表示取不到有效值。
2967
3012
  :type CreateTime: str
2968
3013
  :param _LastUpdateTime: 文件最后更新时间。
2969
- 注意:此字段可能返回 null,表示取不到有效值。
2970
3014
  :type LastUpdateTime: str
2971
3015
  :param _Keywords: 文件关键字。
2972
- 注意:此字段可能返回 null,表示取不到有效值。
2973
3016
  :type Keywords: str
2974
3017
  """
2975
3018
  self._TextLength = None
@@ -2984,7 +3027,6 @@ Ready:文件解析、写入完成。
2984
3027
  @property
2985
3028
  def TextLength(self):
2986
3029
  """文件的字符数。
2987
- 注意:此字段可能返回 null,表示取不到有效值。
2988
3030
  :rtype: int
2989
3031
  """
2990
3032
  return self._TextLength
@@ -2996,7 +3038,6 @@ Ready:文件解析、写入完成。
2996
3038
  @property
2997
3039
  def ByteLength(self):
2998
3040
  """文件的字节数。
2999
- 注意:此字段可能返回 null,表示取不到有效值。
3000
3041
  :rtype: int
3001
3042
  """
3002
3043
  return self._ByteLength
@@ -3008,7 +3049,6 @@ Ready:文件解析、写入完成。
3008
3049
  @property
3009
3050
  def IndexedProgress(self):
3010
3051
  """文件被预处理、Embedding 向量化的进度。
3011
- 注意:此字段可能返回 null,表示取不到有效值。
3012
3052
  :rtype: int
3013
3053
  """
3014
3054
  return self._IndexedProgress
@@ -3025,7 +3065,6 @@ Loading:文件解析中。
3025
3065
  Failure:文件解析、写入出错。
3026
3066
  Ready:文件解析、写入完成。
3027
3067
 
3028
- 注意:此字段可能返回 null,表示取不到有效值。
3029
3068
  :rtype: str
3030
3069
  """
3031
3070
  return self._IndexedStatus
@@ -3037,7 +3076,6 @@ Ready:文件解析、写入完成。
3037
3076
  @property
3038
3077
  def IndexedErrorMsg(self):
3039
3078
  """错误信息
3040
- 注意:此字段可能返回 null,表示取不到有效值。
3041
3079
  :rtype: str
3042
3080
  """
3043
3081
  return self._IndexedErrorMsg
@@ -3049,7 +3087,6 @@ Ready:文件解析、写入完成。
3049
3087
  @property
3050
3088
  def CreateTime(self):
3051
3089
  """文件创建时间。
3052
- 注意:此字段可能返回 null,表示取不到有效值。
3053
3090
  :rtype: str
3054
3091
  """
3055
3092
  return self._CreateTime
@@ -3061,7 +3098,6 @@ Ready:文件解析、写入完成。
3061
3098
  @property
3062
3099
  def LastUpdateTime(self):
3063
3100
  """文件最后更新时间。
3064
- 注意:此字段可能返回 null,表示取不到有效值。
3065
3101
  :rtype: str
3066
3102
  """
3067
3103
  return self._LastUpdateTime
@@ -3073,7 +3109,6 @@ Ready:文件解析、写入完成。
3073
3109
  @property
3074
3110
  def Keywords(self):
3075
3111
  """文件关键字。
3076
- 注意:此字段可能返回 null,表示取不到有效值。
3077
3112
  :rtype: str
3078
3113
  """
3079
3114
  return self._Keywords
@@ -3564,6 +3599,8 @@ class UpdateKnowledgeSetRequest(AbstractModel):
3564
3599
 
3565
3600
  def __init__(self):
3566
3601
  r"""
3602
+ :param _EnvId: 环境ID
3603
+ :type EnvId: str
3567
3604
  :param _Name: 知识库标识
3568
3605
  :type Name: str
3569
3606
  :param _Title: 知识库名称
@@ -3572,11 +3609,26 @@ class UpdateKnowledgeSetRequest(AbstractModel):
3572
3609
  :type Desc: str
3573
3610
  :param _Active: 状态;ENABLED启用;NOT_ENABLED不启用
3574
3611
  :type Active: str
3612
+ :param _Meta: 知识库的meta信息
3613
+ :type Meta: str
3575
3614
  """
3615
+ self._EnvId = None
3576
3616
  self._Name = None
3577
3617
  self._Title = None
3578
3618
  self._Desc = None
3579
3619
  self._Active = None
3620
+ self._Meta = None
3621
+
3622
+ @property
3623
+ def EnvId(self):
3624
+ """环境ID
3625
+ :rtype: str
3626
+ """
3627
+ return self._EnvId
3628
+
3629
+ @EnvId.setter
3630
+ def EnvId(self, EnvId):
3631
+ self._EnvId = EnvId
3580
3632
 
3581
3633
  @property
3582
3634
  def Name(self):
@@ -3622,12 +3674,25 @@ class UpdateKnowledgeSetRequest(AbstractModel):
3622
3674
  def Active(self, Active):
3623
3675
  self._Active = Active
3624
3676
 
3677
+ @property
3678
+ def Meta(self):
3679
+ """知识库的meta信息
3680
+ :rtype: str
3681
+ """
3682
+ return self._Meta
3683
+
3684
+ @Meta.setter
3685
+ def Meta(self, Meta):
3686
+ self._Meta = Meta
3687
+
3625
3688
 
3626
3689
  def _deserialize(self, params):
3690
+ self._EnvId = params.get("EnvId")
3627
3691
  self._Name = params.get("Name")
3628
3692
  self._Title = params.get("Title")
3629
3693
  self._Desc = params.get("Desc")
3630
3694
  self._Active = params.get("Active")
3695
+ self._Meta = params.get("Meta")
3631
3696
  memeber_set = set(params.keys())
3632
3697
  for name, value in vars(self).items():
3633
3698
  property_name = name[1:]
@@ -3673,11 +3738,13 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3673
3738
 
3674
3739
  def __init__(self):
3675
3740
  r"""
3741
+ :param _EnvId: 环境ID
3742
+ :type EnvId: str
3676
3743
  :param _CollectionView: 知识库标识
3677
3744
  :type CollectionView: str
3678
3745
  :param _FileName: 状态;ENABLED启用;NOT_ENABLED不启用
3679
3746
  :type FileName: str
3680
- :param _CosUrl: 文件存储位置的可读地址
3747
+ :param _CosUrl: 腾讯云文件存储位置的可读地址
3681
3748
  :type CosUrl: str
3682
3749
  :param _DocumentType: 文件类型,例如: .docx, .md
3683
3750
  :type DocumentType: str
@@ -3690,6 +3757,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3690
3757
  :param _DocumentSetId: 文件id
3691
3758
  :type DocumentSetId: str
3692
3759
  """
3760
+ self._EnvId = None
3693
3761
  self._CollectionView = None
3694
3762
  self._FileName = None
3695
3763
  self._CosUrl = None
@@ -3699,6 +3767,17 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3699
3767
  self._FileMetaData = None
3700
3768
  self._DocumentSetId = None
3701
3769
 
3770
+ @property
3771
+ def EnvId(self):
3772
+ """环境ID
3773
+ :rtype: str
3774
+ """
3775
+ return self._EnvId
3776
+
3777
+ @EnvId.setter
3778
+ def EnvId(self, EnvId):
3779
+ self._EnvId = EnvId
3780
+
3702
3781
  @property
3703
3782
  def CollectionView(self):
3704
3783
  """知识库标识
@@ -3723,7 +3802,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3723
3802
 
3724
3803
  @property
3725
3804
  def CosUrl(self):
3726
- """文件存储位置的可读地址
3805
+ """腾讯云文件存储位置的可读地址
3727
3806
  :rtype: str
3728
3807
  """
3729
3808
  return self._CosUrl
@@ -3789,6 +3868,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3789
3868
 
3790
3869
 
3791
3870
  def _deserialize(self, params):
3871
+ self._EnvId = params.get("EnvId")
3792
3872
  self._CollectionView = params.get("CollectionView")
3793
3873
  self._FileName = params.get("FileName")
3794
3874
  self._CosUrl = params.get("CosUrl")
@@ -3860,16 +3940,12 @@ class UploadKnowledgeDocumentSetRsp(AbstractModel):
3860
3940
  def __init__(self):
3861
3941
  r"""
3862
3942
  :param _DocumentSetId: 给文件分配的 ID 信息。
3863
- 注意:此字段可能返回 null,表示取不到有效值。
3864
3943
  :type DocumentSetId: str
3865
3944
  :param _DocumentSetName: 文件名
3866
- 注意:此字段可能返回 null,表示取不到有效值。
3867
3945
  :type DocumentSetName: str
3868
3946
  :param _FileTitle: 文件标题
3869
- 注意:此字段可能返回 null,表示取不到有效值。
3870
3947
  :type FileTitle: str
3871
3948
  :param _FileMetaData: 文件元信息,为jsonstring
3872
- 注意:此字段可能返回 null,表示取不到有效值。
3873
3949
  :type FileMetaData: str
3874
3950
  """
3875
3951
  self._DocumentSetId = None
@@ -3880,7 +3956,6 @@ class UploadKnowledgeDocumentSetRsp(AbstractModel):
3880
3956
  @property
3881
3957
  def DocumentSetId(self):
3882
3958
  """给文件分配的 ID 信息。
3883
- 注意:此字段可能返回 null,表示取不到有效值。
3884
3959
  :rtype: str
3885
3960
  """
3886
3961
  return self._DocumentSetId
@@ -3892,7 +3967,6 @@ class UploadKnowledgeDocumentSetRsp(AbstractModel):
3892
3967
  @property
3893
3968
  def DocumentSetName(self):
3894
3969
  """文件名
3895
- 注意:此字段可能返回 null,表示取不到有效值。
3896
3970
  :rtype: str
3897
3971
  """
3898
3972
  return self._DocumentSetName
@@ -3904,7 +3978,6 @@ class UploadKnowledgeDocumentSetRsp(AbstractModel):
3904
3978
  @property
3905
3979
  def FileTitle(self):
3906
3980
  """文件标题
3907
- 注意:此字段可能返回 null,表示取不到有效值。
3908
3981
  :rtype: str
3909
3982
  """
3910
3983
  return self._FileTitle
@@ -3916,7 +3989,6 @@ class UploadKnowledgeDocumentSetRsp(AbstractModel):
3916
3989
  @property
3917
3990
  def FileMetaData(self):
3918
3991
  """文件元信息,为jsonstring
3919
- 注意:此字段可能返回 null,表示取不到有效值。
3920
3992
  :rtype: str
3921
3993
  """
3922
3994
  return self._FileMetaData
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-lowcode
3
- Version: 3.0.1332
3
+ Version: 3.0.1351
4
4
  Summary: Tencent Cloud Lowcode SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1351
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1332