tencentcloud-sdk-python-dataagent 3.1.33__tar.gz → 3.1.60__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/setup.py +1 -1
  3. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud/dataagent/v20250513/models.py +69 -28
  5. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud_sdk_python_dataagent.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_dataagent-3.1.60/tencentcloud_sdk_python_dataagent.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_dataagent-3.1.33/tencentcloud_sdk_python_dataagent.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/README.rst +0 -0
  9. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud/dataagent/__init__.py +0 -0
  11. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud/dataagent/v20250513/__init__.py +0 -0
  12. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud/dataagent/v20250513/dataagent_client.py +0 -0
  13. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud/dataagent/v20250513/dataagent_client_async.py +0 -0
  14. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud/dataagent/v20250513/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud_sdk_python_dataagent.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud_sdk_python_dataagent.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_dataagent-3.1.33 → tencentcloud_sdk_python_dataagent-3.1.60}/tencentcloud_sdk_python_dataagent.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dataagent
3
- Version: 3.1.33
3
+ Version: 3.1.60
4
4
  Summary: Tencent Cloud Dataagent 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<4.0.0,>=3.1.33
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.60
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-dataagent',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.33,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.60,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Dataagent SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.33'
17
+ __version__ = '3.1.60'
@@ -954,9 +954,12 @@ class DeleteDataAgentSessionRequest(AbstractModel):
954
954
  :type InstanceId: str
955
955
  :param _SessionId: 会话ID
956
956
  :type SessionId: str
957
+ :param _SessionIds: 批量删除 会话id 列表
958
+ :type SessionIds: list of str
957
959
  """
958
960
  self._InstanceId = None
959
961
  self._SessionId = None
962
+ self._SessionIds = None
960
963
 
961
964
  @property
962
965
  def InstanceId(self):
@@ -980,10 +983,22 @@ class DeleteDataAgentSessionRequest(AbstractModel):
980
983
  def SessionId(self, SessionId):
981
984
  self._SessionId = SessionId
982
985
 
986
+ @property
987
+ def SessionIds(self):
988
+ r"""批量删除 会话id 列表
989
+ :rtype: list of str
990
+ """
991
+ return self._SessionIds
992
+
993
+ @SessionIds.setter
994
+ def SessionIds(self, SessionIds):
995
+ self._SessionIds = SessionIds
996
+
983
997
 
984
998
  def _deserialize(self, params):
985
999
  self._InstanceId = params.get("InstanceId")
986
1000
  self._SessionId = params.get("SessionId")
1001
+ self._SessionIds = params.get("SessionIds")
987
1002
  memeber_set = set(params.keys())
988
1003
  for name, value in vars(self).items():
989
1004
  property_name = name[1:]
@@ -1003,10 +1018,13 @@ class DeleteDataAgentSessionResponse(AbstractModel):
1003
1018
  r"""
1004
1019
  :param _SessionId: 删除的会话ID
1005
1020
  :type SessionId: str
1021
+ :param _SessionIds: 删除的会话ID列表
1022
+ :type SessionIds: list of str
1006
1023
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1007
1024
  :type RequestId: str
1008
1025
  """
1009
1026
  self._SessionId = None
1027
+ self._SessionIds = None
1010
1028
  self._RequestId = None
1011
1029
 
1012
1030
  @property
@@ -1020,6 +1038,17 @@ class DeleteDataAgentSessionResponse(AbstractModel):
1020
1038
  def SessionId(self, SessionId):
1021
1039
  self._SessionId = SessionId
1022
1040
 
1041
+ @property
1042
+ def SessionIds(self):
1043
+ r"""删除的会话ID列表
1044
+ :rtype: list of str
1045
+ """
1046
+ return self._SessionIds
1047
+
1048
+ @SessionIds.setter
1049
+ def SessionIds(self, SessionIds):
1050
+ self._SessionIds = SessionIds
1051
+
1023
1052
  @property
1024
1053
  def RequestId(self):
1025
1054
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -1034,6 +1063,7 @@ class DeleteDataAgentSessionResponse(AbstractModel):
1034
1063
 
1035
1064
  def _deserialize(self, params):
1036
1065
  self._SessionId = params.get("SessionId")
1066
+ self._SessionIds = params.get("SessionIds")
1037
1067
  self._RequestId = params.get("RequestId")
1038
1068
 
1039
1069
 
@@ -1234,32 +1264,32 @@ class FileInfo(AbstractModel):
1234
1264
 
1235
1265
  def __init__(self):
1236
1266
  r"""
1237
- :param _FileName: 文件名称
1267
+ :param _FileName: <p>文件名称</p>
1238
1268
  :type FileName: str
1239
- :param _FileSize: 文件大小,字节
1269
+ :param _FileSize: <p>文件大小,字节</p>
1240
1270
  :type FileSize: float
1241
- :param _Type: 文件类型,0=文本,1=表格,默认0
1242
-
1271
+ :param _Type: <p>文件类型,0=文本,1=表格,默认0</p>
1243
1272
  :type Type: int
1244
- :param _FileId: 文件ID
1273
+ :param _FileId: <p>文件ID</p>
1245
1274
  :type FileId: str
1246
- :param _Status: 状态,0:数据处理中 1:可用 -1:错误
1275
+ :param _Status: <p>状态,0:数据处理中 1:可用 -1:错误</p>
1247
1276
  :type Status: int
1248
- :param _CreateUser: 操作者
1249
-
1277
+ :param _CreateUser: <p>操作者</p>
1250
1278
  :type CreateUser: str
1251
- :param _CreateTime: 创建时间
1279
+ :param _CreateTime: <p>创建时间</p>
1252
1280
  :type CreateTime: str
1253
- :param _ChunkConfig: 分片策略
1281
+ :param _ChunkConfig: <p>分片策略</p>
1254
1282
  :type ChunkConfig: :class:`tencentcloud.dataagent.v20250513.models.KnowledgeTaskConfig`
1255
- :param _Source: 文件来源0=unknow,1=user_cos,2=local
1283
+ :param _Source: <p>文件来源0=unknow,1=user_cos,2=local</p>
1256
1284
  :type Source: int
1257
- :param _FileUrl: 文件url
1285
+ :param _FileUrl: <p>文件url</p>
1258
1286
  :type FileUrl: str
1259
- :param _IsShowCase: 是否官方示例,0=否,1=是
1287
+ :param _IsShowCase: <p>是否官方示例,0=否,1=是</p>
1260
1288
  :type IsShowCase: int
1261
- :param _DocumentSummary: 文档摘要
1289
+ :param _DocumentSummary: <p>文档摘要</p>
1262
1290
  :type DocumentSummary: str
1291
+ :param _WebUrl: <p>网页地址</p>
1292
+ :type WebUrl: str
1263
1293
  """
1264
1294
  self._FileName = None
1265
1295
  self._FileSize = None
@@ -1273,10 +1303,11 @@ class FileInfo(AbstractModel):
1273
1303
  self._FileUrl = None
1274
1304
  self._IsShowCase = None
1275
1305
  self._DocumentSummary = None
1306
+ self._WebUrl = None
1276
1307
 
1277
1308
  @property
1278
1309
  def FileName(self):
1279
- r"""文件名称
1310
+ r"""<p>文件名称</p>
1280
1311
  :rtype: str
1281
1312
  """
1282
1313
  return self._FileName
@@ -1287,7 +1318,7 @@ class FileInfo(AbstractModel):
1287
1318
 
1288
1319
  @property
1289
1320
  def FileSize(self):
1290
- r"""文件大小,字节
1321
+ r"""<p>文件大小,字节</p>
1291
1322
  :rtype: float
1292
1323
  """
1293
1324
  return self._FileSize
@@ -1298,8 +1329,7 @@ class FileInfo(AbstractModel):
1298
1329
 
1299
1330
  @property
1300
1331
  def Type(self):
1301
- r"""文件类型,0=文本,1=表格,默认0
1302
-
1332
+ r"""<p>文件类型,0=文本,1=表格,默认0</p>
1303
1333
  :rtype: int
1304
1334
  """
1305
1335
  return self._Type
@@ -1310,7 +1340,7 @@ class FileInfo(AbstractModel):
1310
1340
 
1311
1341
  @property
1312
1342
  def FileId(self):
1313
- r"""文件ID
1343
+ r"""<p>文件ID</p>
1314
1344
  :rtype: str
1315
1345
  """
1316
1346
  return self._FileId
@@ -1321,7 +1351,7 @@ class FileInfo(AbstractModel):
1321
1351
 
1322
1352
  @property
1323
1353
  def Status(self):
1324
- r"""状态,0:数据处理中 1:可用 -1:错误
1354
+ r"""<p>状态,0:数据处理中 1:可用 -1:错误</p>
1325
1355
  :rtype: int
1326
1356
  """
1327
1357
  return self._Status
@@ -1332,8 +1362,7 @@ class FileInfo(AbstractModel):
1332
1362
 
1333
1363
  @property
1334
1364
  def CreateUser(self):
1335
- r"""操作者
1336
-
1365
+ r"""<p>操作者</p>
1337
1366
  :rtype: str
1338
1367
  """
1339
1368
  return self._CreateUser
@@ -1344,7 +1373,7 @@ class FileInfo(AbstractModel):
1344
1373
 
1345
1374
  @property
1346
1375
  def CreateTime(self):
1347
- r"""创建时间
1376
+ r"""<p>创建时间</p>
1348
1377
  :rtype: str
1349
1378
  """
1350
1379
  return self._CreateTime
@@ -1355,7 +1384,7 @@ class FileInfo(AbstractModel):
1355
1384
 
1356
1385
  @property
1357
1386
  def ChunkConfig(self):
1358
- r"""分片策略
1387
+ r"""<p>分片策略</p>
1359
1388
  :rtype: :class:`tencentcloud.dataagent.v20250513.models.KnowledgeTaskConfig`
1360
1389
  """
1361
1390
  return self._ChunkConfig
@@ -1366,7 +1395,7 @@ class FileInfo(AbstractModel):
1366
1395
 
1367
1396
  @property
1368
1397
  def Source(self):
1369
- r"""文件来源0=unknow,1=user_cos,2=local
1398
+ r"""<p>文件来源0=unknow,1=user_cos,2=local</p>
1370
1399
  :rtype: int
1371
1400
  """
1372
1401
  return self._Source
@@ -1377,7 +1406,7 @@ class FileInfo(AbstractModel):
1377
1406
 
1378
1407
  @property
1379
1408
  def FileUrl(self):
1380
- r"""文件url
1409
+ r"""<p>文件url</p>
1381
1410
  :rtype: str
1382
1411
  """
1383
1412
  return self._FileUrl
@@ -1388,7 +1417,7 @@ class FileInfo(AbstractModel):
1388
1417
 
1389
1418
  @property
1390
1419
  def IsShowCase(self):
1391
- r"""是否官方示例,0=否,1=是
1420
+ r"""<p>是否官方示例,0=否,1=是</p>
1392
1421
  :rtype: int
1393
1422
  """
1394
1423
  return self._IsShowCase
@@ -1399,7 +1428,7 @@ class FileInfo(AbstractModel):
1399
1428
 
1400
1429
  @property
1401
1430
  def DocumentSummary(self):
1402
- r"""文档摘要
1431
+ r"""<p>文档摘要</p>
1403
1432
  :rtype: str
1404
1433
  """
1405
1434
  return self._DocumentSummary
@@ -1408,6 +1437,17 @@ class FileInfo(AbstractModel):
1408
1437
  def DocumentSummary(self, DocumentSummary):
1409
1438
  self._DocumentSummary = DocumentSummary
1410
1439
 
1440
+ @property
1441
+ def WebUrl(self):
1442
+ r"""<p>网页地址</p>
1443
+ :rtype: str
1444
+ """
1445
+ return self._WebUrl
1446
+
1447
+ @WebUrl.setter
1448
+ def WebUrl(self, WebUrl):
1449
+ self._WebUrl = WebUrl
1450
+
1411
1451
 
1412
1452
  def _deserialize(self, params):
1413
1453
  self._FileName = params.get("FileName")
@@ -1424,6 +1464,7 @@ class FileInfo(AbstractModel):
1424
1464
  self._FileUrl = params.get("FileUrl")
1425
1465
  self._IsShowCase = params.get("IsShowCase")
1426
1466
  self._DocumentSummary = params.get("DocumentSummary")
1467
+ self._WebUrl = params.get("WebUrl")
1427
1468
  memeber_set = set(params.keys())
1428
1469
  for name, value in vars(self).items():
1429
1470
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dataagent
3
- Version: 3.1.33
3
+ Version: 3.1.60
4
4
  Summary: Tencent Cloud Dataagent 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<4.0.0,>=3.1.33
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.60
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.60
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.33