tencentcloud-sdk-python-lowcode 3.0.1334__py2.py3-none-any.whl → 3.0.1336__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/lowcode/v20210108/models.py +182 -2
- {tencentcloud_sdk_python_lowcode-3.0.1334.dist-info → tencentcloud_sdk_python_lowcode-3.0.1336.dist-info}/METADATA +2 -2
- {tencentcloud_sdk_python_lowcode-3.0.1334.dist-info → tencentcloud_sdk_python_lowcode-3.0.1336.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_lowcode-3.0.1334.dist-info → tencentcloud_sdk_python_lowcode-3.0.1336.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_lowcode-3.0.1334.dist-info → tencentcloud_sdk_python_lowcode-3.0.1336.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -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()
|
|
@@ -1124,11 +1169,25 @@ class DeleteKnowledgeSetRequest(AbstractModel):
|
|
|
1124
1169
|
|
|
1125
1170
|
def __init__(self):
|
|
1126
1171
|
r"""
|
|
1172
|
+
:param _EnvId: 环境ID
|
|
1173
|
+
:type EnvId: str
|
|
1127
1174
|
:param _Name: 知识库标识
|
|
1128
1175
|
:type Name: str
|
|
1129
1176
|
"""
|
|
1177
|
+
self._EnvId = None
|
|
1130
1178
|
self._Name = None
|
|
1131
1179
|
|
|
1180
|
+
@property
|
|
1181
|
+
def EnvId(self):
|
|
1182
|
+
"""环境ID
|
|
1183
|
+
:rtype: str
|
|
1184
|
+
"""
|
|
1185
|
+
return self._EnvId
|
|
1186
|
+
|
|
1187
|
+
@EnvId.setter
|
|
1188
|
+
def EnvId(self, EnvId):
|
|
1189
|
+
self._EnvId = EnvId
|
|
1190
|
+
|
|
1132
1191
|
@property
|
|
1133
1192
|
def Name(self):
|
|
1134
1193
|
"""知识库标识
|
|
@@ -1142,6 +1201,7 @@ class DeleteKnowledgeSetRequest(AbstractModel):
|
|
|
1142
1201
|
|
|
1143
1202
|
|
|
1144
1203
|
def _deserialize(self, params):
|
|
1204
|
+
self._EnvId = params.get("EnvId")
|
|
1145
1205
|
self._Name = params.get("Name")
|
|
1146
1206
|
memeber_set = set(params.keys())
|
|
1147
1207
|
for name, value in vars(self).items():
|
|
@@ -1526,6 +1586,8 @@ class DescribeKnowledgeDocumentSetDetailRequest(AbstractModel):
|
|
|
1526
1586
|
|
|
1527
1587
|
def __init__(self):
|
|
1528
1588
|
r"""
|
|
1589
|
+
:param _EnvId: 环境ID
|
|
1590
|
+
:type EnvId: str
|
|
1529
1591
|
:param _CollectionView: 知识库标识
|
|
1530
1592
|
:type CollectionView: str
|
|
1531
1593
|
:param _DocumentSetName: 文件名
|
|
@@ -1533,10 +1595,22 @@ class DescribeKnowledgeDocumentSetDetailRequest(AbstractModel):
|
|
|
1533
1595
|
:param _DocumentSetId: 文件id
|
|
1534
1596
|
:type DocumentSetId: str
|
|
1535
1597
|
"""
|
|
1598
|
+
self._EnvId = None
|
|
1536
1599
|
self._CollectionView = None
|
|
1537
1600
|
self._DocumentSetName = None
|
|
1538
1601
|
self._DocumentSetId = None
|
|
1539
1602
|
|
|
1603
|
+
@property
|
|
1604
|
+
def EnvId(self):
|
|
1605
|
+
"""环境ID
|
|
1606
|
+
:rtype: str
|
|
1607
|
+
"""
|
|
1608
|
+
return self._EnvId
|
|
1609
|
+
|
|
1610
|
+
@EnvId.setter
|
|
1611
|
+
def EnvId(self, EnvId):
|
|
1612
|
+
self._EnvId = EnvId
|
|
1613
|
+
|
|
1540
1614
|
@property
|
|
1541
1615
|
def CollectionView(self):
|
|
1542
1616
|
"""知识库标识
|
|
@@ -1572,6 +1646,7 @@ class DescribeKnowledgeDocumentSetDetailRequest(AbstractModel):
|
|
|
1572
1646
|
|
|
1573
1647
|
|
|
1574
1648
|
def _deserialize(self, params):
|
|
1649
|
+
self._EnvId = params.get("EnvId")
|
|
1575
1650
|
self._CollectionView = params.get("CollectionView")
|
|
1576
1651
|
self._DocumentSetName = params.get("DocumentSetName")
|
|
1577
1652
|
self._DocumentSetId = params.get("DocumentSetId")
|
|
@@ -1694,14 +1769,28 @@ class DescribeKnowledgeDocumentSetListRequest(AbstractModel):
|
|
|
1694
1769
|
|
|
1695
1770
|
def __init__(self):
|
|
1696
1771
|
r"""
|
|
1772
|
+
:param _EnvId: 环境ID
|
|
1773
|
+
:type EnvId: str
|
|
1697
1774
|
:param _CollectionView: 知识库标识
|
|
1698
1775
|
:type CollectionView: str
|
|
1699
1776
|
:param _Query: 查询条件
|
|
1700
1777
|
:type Query: :class:`tencentcloud.lowcode.v20210108.models.PageQuery`
|
|
1701
1778
|
"""
|
|
1779
|
+
self._EnvId = None
|
|
1702
1780
|
self._CollectionView = None
|
|
1703
1781
|
self._Query = None
|
|
1704
1782
|
|
|
1783
|
+
@property
|
|
1784
|
+
def EnvId(self):
|
|
1785
|
+
"""环境ID
|
|
1786
|
+
:rtype: str
|
|
1787
|
+
"""
|
|
1788
|
+
return self._EnvId
|
|
1789
|
+
|
|
1790
|
+
@EnvId.setter
|
|
1791
|
+
def EnvId(self, EnvId):
|
|
1792
|
+
self._EnvId = EnvId
|
|
1793
|
+
|
|
1705
1794
|
@property
|
|
1706
1795
|
def CollectionView(self):
|
|
1707
1796
|
"""知识库标识
|
|
@@ -1726,6 +1815,7 @@ class DescribeKnowledgeDocumentSetListRequest(AbstractModel):
|
|
|
1726
1815
|
|
|
1727
1816
|
|
|
1728
1817
|
def _deserialize(self, params):
|
|
1818
|
+
self._EnvId = params.get("EnvId")
|
|
1729
1819
|
self._CollectionView = params.get("CollectionView")
|
|
1730
1820
|
if params.get("Query") is not None:
|
|
1731
1821
|
self._Query = PageQuery()
|
|
@@ -1852,20 +1942,37 @@ class DescribeKnowledgeSetListRequest(AbstractModel):
|
|
|
1852
1942
|
|
|
1853
1943
|
def __init__(self):
|
|
1854
1944
|
r"""
|
|
1945
|
+
:param _EnvId: 环境ID
|
|
1946
|
+
:type EnvId: str
|
|
1855
1947
|
:param _Name: 知识库标识,精准查询
|
|
1856
1948
|
:type Name: str
|
|
1857
1949
|
:param _Title: 知识库名称,精准查询
|
|
1858
1950
|
:type Title: str
|
|
1951
|
+
:param _Offset: 分页起始位
|
|
1952
|
+
:type Offset: int
|
|
1859
1953
|
:param _Limit: 查询条数
|
|
1860
1954
|
:type Limit: int
|
|
1861
1955
|
:param _QueryMode: NoPage标识不分页
|
|
1862
1956
|
:type QueryMode: str
|
|
1863
1957
|
"""
|
|
1958
|
+
self._EnvId = None
|
|
1864
1959
|
self._Name = None
|
|
1865
1960
|
self._Title = None
|
|
1961
|
+
self._Offset = None
|
|
1866
1962
|
self._Limit = None
|
|
1867
1963
|
self._QueryMode = None
|
|
1868
1964
|
|
|
1965
|
+
@property
|
|
1966
|
+
def EnvId(self):
|
|
1967
|
+
"""环境ID
|
|
1968
|
+
:rtype: str
|
|
1969
|
+
"""
|
|
1970
|
+
return self._EnvId
|
|
1971
|
+
|
|
1972
|
+
@EnvId.setter
|
|
1973
|
+
def EnvId(self, EnvId):
|
|
1974
|
+
self._EnvId = EnvId
|
|
1975
|
+
|
|
1869
1976
|
@property
|
|
1870
1977
|
def Name(self):
|
|
1871
1978
|
"""知识库标识,精准查询
|
|
@@ -1888,6 +1995,17 @@ class DescribeKnowledgeSetListRequest(AbstractModel):
|
|
|
1888
1995
|
def Title(self, Title):
|
|
1889
1996
|
self._Title = Title
|
|
1890
1997
|
|
|
1998
|
+
@property
|
|
1999
|
+
def Offset(self):
|
|
2000
|
+
"""分页起始位
|
|
2001
|
+
:rtype: int
|
|
2002
|
+
"""
|
|
2003
|
+
return self._Offset
|
|
2004
|
+
|
|
2005
|
+
@Offset.setter
|
|
2006
|
+
def Offset(self, Offset):
|
|
2007
|
+
self._Offset = Offset
|
|
2008
|
+
|
|
1891
2009
|
@property
|
|
1892
2010
|
def Limit(self):
|
|
1893
2011
|
"""查询条数
|
|
@@ -1912,8 +2030,10 @@ class DescribeKnowledgeSetListRequest(AbstractModel):
|
|
|
1912
2030
|
|
|
1913
2031
|
|
|
1914
2032
|
def _deserialize(self, params):
|
|
2033
|
+
self._EnvId = params.get("EnvId")
|
|
1915
2034
|
self._Name = params.get("Name")
|
|
1916
2035
|
self._Title = params.get("Title")
|
|
2036
|
+
self._Offset = params.get("Offset")
|
|
1917
2037
|
self._Limit = params.get("Limit")
|
|
1918
2038
|
self._QueryMode = params.get("QueryMode")
|
|
1919
2039
|
memeber_set = set(params.keys())
|
|
@@ -2411,6 +2531,8 @@ ENABLED 已启用
|
|
|
2411
2531
|
:param _UpdateTime: 更新时间
|
|
2412
2532
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2413
2533
|
:type UpdateTime: str
|
|
2534
|
+
:param _Meta: 知识库的meta信息
|
|
2535
|
+
:type Meta: str
|
|
2414
2536
|
"""
|
|
2415
2537
|
self._Name = None
|
|
2416
2538
|
self._Title = None
|
|
@@ -2418,6 +2540,7 @@ ENABLED 已启用
|
|
|
2418
2540
|
self._Active = None
|
|
2419
2541
|
self._CreateTime = None
|
|
2420
2542
|
self._UpdateTime = None
|
|
2543
|
+
self._Meta = None
|
|
2421
2544
|
|
|
2422
2545
|
@property
|
|
2423
2546
|
def Name(self):
|
|
@@ -2493,6 +2616,17 @@ ENABLED 已启用
|
|
|
2493
2616
|
def UpdateTime(self, UpdateTime):
|
|
2494
2617
|
self._UpdateTime = UpdateTime
|
|
2495
2618
|
|
|
2619
|
+
@property
|
|
2620
|
+
def Meta(self):
|
|
2621
|
+
"""知识库的meta信息
|
|
2622
|
+
:rtype: str
|
|
2623
|
+
"""
|
|
2624
|
+
return self._Meta
|
|
2625
|
+
|
|
2626
|
+
@Meta.setter
|
|
2627
|
+
def Meta(self, Meta):
|
|
2628
|
+
self._Meta = Meta
|
|
2629
|
+
|
|
2496
2630
|
|
|
2497
2631
|
def _deserialize(self, params):
|
|
2498
2632
|
self._Name = params.get("Name")
|
|
@@ -2501,6 +2635,7 @@ ENABLED 已启用
|
|
|
2501
2635
|
self._Active = params.get("Active")
|
|
2502
2636
|
self._CreateTime = params.get("CreateTime")
|
|
2503
2637
|
self._UpdateTime = params.get("UpdateTime")
|
|
2638
|
+
self._Meta = params.get("Meta")
|
|
2504
2639
|
memeber_set = set(params.keys())
|
|
2505
2640
|
for name, value in vars(self).items():
|
|
2506
2641
|
property_name = name[1:]
|
|
@@ -3564,6 +3699,8 @@ class UpdateKnowledgeSetRequest(AbstractModel):
|
|
|
3564
3699
|
|
|
3565
3700
|
def __init__(self):
|
|
3566
3701
|
r"""
|
|
3702
|
+
:param _EnvId: 环境ID
|
|
3703
|
+
:type EnvId: str
|
|
3567
3704
|
:param _Name: 知识库标识
|
|
3568
3705
|
:type Name: str
|
|
3569
3706
|
:param _Title: 知识库名称
|
|
@@ -3572,11 +3709,26 @@ class UpdateKnowledgeSetRequest(AbstractModel):
|
|
|
3572
3709
|
:type Desc: str
|
|
3573
3710
|
:param _Active: 状态;ENABLED启用;NOT_ENABLED不启用
|
|
3574
3711
|
:type Active: str
|
|
3712
|
+
:param _Meta: 知识库的meta信息
|
|
3713
|
+
:type Meta: str
|
|
3575
3714
|
"""
|
|
3715
|
+
self._EnvId = None
|
|
3576
3716
|
self._Name = None
|
|
3577
3717
|
self._Title = None
|
|
3578
3718
|
self._Desc = None
|
|
3579
3719
|
self._Active = None
|
|
3720
|
+
self._Meta = None
|
|
3721
|
+
|
|
3722
|
+
@property
|
|
3723
|
+
def EnvId(self):
|
|
3724
|
+
"""环境ID
|
|
3725
|
+
:rtype: str
|
|
3726
|
+
"""
|
|
3727
|
+
return self._EnvId
|
|
3728
|
+
|
|
3729
|
+
@EnvId.setter
|
|
3730
|
+
def EnvId(self, EnvId):
|
|
3731
|
+
self._EnvId = EnvId
|
|
3580
3732
|
|
|
3581
3733
|
@property
|
|
3582
3734
|
def Name(self):
|
|
@@ -3622,12 +3774,25 @@ class UpdateKnowledgeSetRequest(AbstractModel):
|
|
|
3622
3774
|
def Active(self, Active):
|
|
3623
3775
|
self._Active = Active
|
|
3624
3776
|
|
|
3777
|
+
@property
|
|
3778
|
+
def Meta(self):
|
|
3779
|
+
"""知识库的meta信息
|
|
3780
|
+
:rtype: str
|
|
3781
|
+
"""
|
|
3782
|
+
return self._Meta
|
|
3783
|
+
|
|
3784
|
+
@Meta.setter
|
|
3785
|
+
def Meta(self, Meta):
|
|
3786
|
+
self._Meta = Meta
|
|
3787
|
+
|
|
3625
3788
|
|
|
3626
3789
|
def _deserialize(self, params):
|
|
3790
|
+
self._EnvId = params.get("EnvId")
|
|
3627
3791
|
self._Name = params.get("Name")
|
|
3628
3792
|
self._Title = params.get("Title")
|
|
3629
3793
|
self._Desc = params.get("Desc")
|
|
3630
3794
|
self._Active = params.get("Active")
|
|
3795
|
+
self._Meta = params.get("Meta")
|
|
3631
3796
|
memeber_set = set(params.keys())
|
|
3632
3797
|
for name, value in vars(self).items():
|
|
3633
3798
|
property_name = name[1:]
|
|
@@ -3673,11 +3838,13 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3673
3838
|
|
|
3674
3839
|
def __init__(self):
|
|
3675
3840
|
r"""
|
|
3841
|
+
:param _EnvId: 环境ID
|
|
3842
|
+
:type EnvId: str
|
|
3676
3843
|
:param _CollectionView: 知识库标识
|
|
3677
3844
|
:type CollectionView: str
|
|
3678
3845
|
:param _FileName: 状态;ENABLED启用;NOT_ENABLED不启用
|
|
3679
3846
|
:type FileName: str
|
|
3680
|
-
:param _CosUrl:
|
|
3847
|
+
:param _CosUrl: 腾讯云文件存储位置的可读地址
|
|
3681
3848
|
:type CosUrl: str
|
|
3682
3849
|
:param _DocumentType: 文件类型,例如: .docx, .md
|
|
3683
3850
|
:type DocumentType: str
|
|
@@ -3690,6 +3857,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3690
3857
|
:param _DocumentSetId: 文件id
|
|
3691
3858
|
:type DocumentSetId: str
|
|
3692
3859
|
"""
|
|
3860
|
+
self._EnvId = None
|
|
3693
3861
|
self._CollectionView = None
|
|
3694
3862
|
self._FileName = None
|
|
3695
3863
|
self._CosUrl = None
|
|
@@ -3699,6 +3867,17 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3699
3867
|
self._FileMetaData = None
|
|
3700
3868
|
self._DocumentSetId = None
|
|
3701
3869
|
|
|
3870
|
+
@property
|
|
3871
|
+
def EnvId(self):
|
|
3872
|
+
"""环境ID
|
|
3873
|
+
:rtype: str
|
|
3874
|
+
"""
|
|
3875
|
+
return self._EnvId
|
|
3876
|
+
|
|
3877
|
+
@EnvId.setter
|
|
3878
|
+
def EnvId(self, EnvId):
|
|
3879
|
+
self._EnvId = EnvId
|
|
3880
|
+
|
|
3702
3881
|
@property
|
|
3703
3882
|
def CollectionView(self):
|
|
3704
3883
|
"""知识库标识
|
|
@@ -3723,7 +3902,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3723
3902
|
|
|
3724
3903
|
@property
|
|
3725
3904
|
def CosUrl(self):
|
|
3726
|
-
"""
|
|
3905
|
+
"""腾讯云文件存储位置的可读地址
|
|
3727
3906
|
:rtype: str
|
|
3728
3907
|
"""
|
|
3729
3908
|
return self._CosUrl
|
|
@@ -3789,6 +3968,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
|
|
|
3789
3968
|
|
|
3790
3969
|
|
|
3791
3970
|
def _deserialize(self, params):
|
|
3971
|
+
self._EnvId = params.get("EnvId")
|
|
3792
3972
|
self._CollectionView = params.get("CollectionView")
|
|
3793
3973
|
self._FileName = params.get("FileName")
|
|
3794
3974
|
self._CosUrl = params.get("CosUrl")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-lowcode
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1336
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1336)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=94mKuLtTEMHlX3haNDa-oyukTTQztQanRFEP9xGpGZQ,631
|
|
2
2
|
tencentcloud/lowcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/lowcode/v20210108/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/lowcode/v20210108/errorcodes.py,sha256=9fR5dwBpeH4aW7koLXFB0WRs6IRQtUjr1AjynC8Hfos,1005
|
|
5
5
|
tencentcloud/lowcode/v20210108/lowcode_client.py,sha256=3H-Se6Ye-r2gtQaz-5GPgNtaHmhgqRpPR53nQaZXTxk,10182
|
|
6
|
-
tencentcloud/lowcode/v20210108/models.py,sha256
|
|
7
|
-
tencentcloud_sdk_python_lowcode-3.0.
|
|
8
|
-
tencentcloud_sdk_python_lowcode-3.0.
|
|
9
|
-
tencentcloud_sdk_python_lowcode-3.0.
|
|
10
|
-
tencentcloud_sdk_python_lowcode-3.0.
|
|
6
|
+
tencentcloud/lowcode/v20210108/models.py,sha256=--xvab30zBRvGvG6llJn_WJthTiQRSWaWeVwg6yTTfc,122574
|
|
7
|
+
tencentcloud_sdk_python_lowcode-3.0.1336.dist-info/METADATA,sha256=0Ql4kZt_KHGQMyQMFzwIJqmvuGtfvyXxlcxeZgdsOYY,1516
|
|
8
|
+
tencentcloud_sdk_python_lowcode-3.0.1336.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_lowcode-3.0.1336.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_lowcode-3.0.1336.dist-info/RECORD,,
|
|
File without changes
|