tencentcloud-sdk-python-lowcode 3.0.1372__tar.gz → 3.0.1375__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.
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/setup.py +1 -1
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud/lowcode/v20210108/models.py +17 -2
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud_sdk_python_lowcode.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-lowcode-3.0.1375/tencentcloud_sdk_python_lowcode.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-lowcode-3.0.1372/tencentcloud_sdk_python_lowcode.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/README.rst +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/setup.cfg +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud/lowcode/__init__.py +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud/lowcode/v20210108/__init__.py +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud/lowcode/v20210108/errorcodes.py +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud/lowcode/v20210108/lowcode_client.py +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud_sdk_python_lowcode.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud_sdk_python_lowcode.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/tencentcloud_sdk_python_lowcode.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/setup.py
RENAMED
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1375"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Lowcode SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3752,10 +3752,12 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3752
3752
|
:type DocumentDesc: str
|
|
3753
3753
|
:param _FileTitle: 文件标题
|
|
3754
3754
|
:type FileTitle: str
|
|
3755
|
-
:param _FileMetaData:
|
|
3755
|
+
:param _FileMetaData: 文件元信息,为jsonstring
|
|
3756
3756
|
:type FileMetaData: str
|
|
3757
3757
|
:param _DocumentSetId: 文件id
|
|
3758
3758
|
:type DocumentSetId: str
|
|
3759
|
+
:param _Delimiter: 使用 regex 分割文档
|
|
3760
|
+
:type Delimiter: str
|
|
3759
3761
|
"""
|
|
3760
3762
|
self._EnvId = None
|
|
3761
3763
|
self._CollectionView = None
|
|
@@ -3766,6 +3768,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3766
3768
|
self._FileTitle = None
|
|
3767
3769
|
self._FileMetaData = None
|
|
3768
3770
|
self._DocumentSetId = None
|
|
3771
|
+
self._Delimiter = None
|
|
3769
3772
|
|
|
3770
3773
|
@property
|
|
3771
3774
|
def EnvId(self):
|
|
@@ -3846,7 +3849,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3846
3849
|
|
|
3847
3850
|
@property
|
|
3848
3851
|
def FileMetaData(self):
|
|
3849
|
-
"""
|
|
3852
|
+
"""文件元信息,为jsonstring
|
|
3850
3853
|
:rtype: str
|
|
3851
3854
|
"""
|
|
3852
3855
|
return self._FileMetaData
|
|
@@ -3866,6 +3869,17 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3866
3869
|
def DocumentSetId(self, DocumentSetId):
|
|
3867
3870
|
self._DocumentSetId = DocumentSetId
|
|
3868
3871
|
|
|
3872
|
+
@property
|
|
3873
|
+
def Delimiter(self):
|
|
3874
|
+
"""使用 regex 分割文档
|
|
3875
|
+
:rtype: str
|
|
3876
|
+
"""
|
|
3877
|
+
return self._Delimiter
|
|
3878
|
+
|
|
3879
|
+
@Delimiter.setter
|
|
3880
|
+
def Delimiter(self, Delimiter):
|
|
3881
|
+
self._Delimiter = Delimiter
|
|
3882
|
+
|
|
3869
3883
|
|
|
3870
3884
|
def _deserialize(self, params):
|
|
3871
3885
|
self._EnvId = params.get("EnvId")
|
|
@@ -3877,6 +3891,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3877
3891
|
self._FileTitle = params.get("FileTitle")
|
|
3878
3892
|
self._FileMetaData = params.get("FileMetaData")
|
|
3879
3893
|
self._DocumentSetId = params.get("DocumentSetId")
|
|
3894
|
+
self._Delimiter = params.get("Delimiter")
|
|
3880
3895
|
memeber_set = set(params.keys())
|
|
3881
3896
|
for name, value in vars(self).items():
|
|
3882
3897
|
property_name = name[1:]
|
tencentcloud-sdk-python-lowcode-3.0.1375/tencentcloud_sdk_python_lowcode.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1375
|
tencentcloud-sdk-python-lowcode-3.0.1372/tencentcloud_sdk_python_lowcode.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1372
|
{tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-lowcode-3.0.1372 → tencentcloud-sdk-python-lowcode-3.0.1375}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|