tencentcloud-sdk-python-dataagent 3.1.88__tar.gz → 3.1.99__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.
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/setup.py +1 -1
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud/dataagent/v20250513/dataagent_client.py +23 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud/dataagent/v20250513/dataagent_client_async.py +18 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud/dataagent/v20250513/models.py +34 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud_sdk_python_dataagent.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_dataagent-3.1.99/tencentcloud_sdk_python_dataagent.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_dataagent-3.1.88/tencentcloud_sdk_python_dataagent.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/README.rst +0 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/setup.cfg +0 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud/dataagent/__init__.py +0 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud/dataagent/v20250513/__init__.py +0 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud/dataagent/v20250513/errorcodes.py +0 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud_sdk_python_dataagent.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud_sdk_python_dataagent.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/tencentcloud_sdk_python_dataagent.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-dataagent
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.99
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/setup.py
RENAMED
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.99,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Dataagent SDK for Python',
|
|
@@ -297,6 +297,29 @@ class DataagentClient(AbstractClient):
|
|
|
297
297
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
298
298
|
|
|
299
299
|
|
|
300
|
+
def GetUserInstanceList(self, request):
|
|
301
|
+
r"""获取实例信息列表
|
|
302
|
+
|
|
303
|
+
:param request: Request instance for GetUserInstanceList.
|
|
304
|
+
:type request: :class:`tencentcloud.dataagent.v20250513.models.GetUserInstanceListRequest`
|
|
305
|
+
:rtype: :class:`tencentcloud.dataagent.v20250513.models.GetUserInstanceListResponse`
|
|
306
|
+
|
|
307
|
+
"""
|
|
308
|
+
try:
|
|
309
|
+
params = request._serialize()
|
|
310
|
+
headers = request.headers
|
|
311
|
+
body = self.call("GetUserInstanceList", params, headers=headers)
|
|
312
|
+
response = json.loads(body)
|
|
313
|
+
model = models.GetUserInstanceListResponse()
|
|
314
|
+
model._deserialize(response["Response"])
|
|
315
|
+
return model
|
|
316
|
+
except Exception as e:
|
|
317
|
+
if isinstance(e, TencentCloudSDKException):
|
|
318
|
+
raise
|
|
319
|
+
else:
|
|
320
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
321
|
+
|
|
322
|
+
|
|
300
323
|
def ModifyChunk(self, request):
|
|
301
324
|
r"""编辑修改分片
|
|
302
325
|
|
|
@@ -241,6 +241,24 @@ class DataagentClient(AbstractClient):
|
|
|
241
241
|
|
|
242
242
|
return await self.call_and_deserialize(**kwargs)
|
|
243
243
|
|
|
244
|
+
async def GetUserInstanceList(
|
|
245
|
+
self,
|
|
246
|
+
request: models.GetUserInstanceListRequest,
|
|
247
|
+
opts: Dict = None,
|
|
248
|
+
) -> models.GetUserInstanceListResponse:
|
|
249
|
+
"""
|
|
250
|
+
获取实例信息列表
|
|
251
|
+
"""
|
|
252
|
+
|
|
253
|
+
kwargs = {}
|
|
254
|
+
kwargs["action"] = "GetUserInstanceList"
|
|
255
|
+
kwargs["params"] = request._serialize()
|
|
256
|
+
kwargs["resp_cls"] = models.GetUserInstanceListResponse
|
|
257
|
+
kwargs["headers"] = request.headers
|
|
258
|
+
kwargs["opts"] = opts or {}
|
|
259
|
+
|
|
260
|
+
return await self.call_and_deserialize(**kwargs)
|
|
261
|
+
|
|
244
262
|
async def ModifyChunk(
|
|
245
263
|
self,
|
|
246
264
|
request: models.ModifyChunkRequest,
|
|
@@ -2042,6 +2042,40 @@ class GetUploadJobDetailsResponse(AbstractModel):
|
|
|
2042
2042
|
self._RequestId = params.get("RequestId")
|
|
2043
2043
|
|
|
2044
2044
|
|
|
2045
|
+
class GetUserInstanceListRequest(AbstractModel):
|
|
2046
|
+
r"""GetUserInstanceList请求参数结构体
|
|
2047
|
+
|
|
2048
|
+
"""
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
class GetUserInstanceListResponse(AbstractModel):
|
|
2052
|
+
r"""GetUserInstanceList返回参数结构体
|
|
2053
|
+
|
|
2054
|
+
"""
|
|
2055
|
+
|
|
2056
|
+
def __init__(self):
|
|
2057
|
+
r"""
|
|
2058
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2059
|
+
:type RequestId: str
|
|
2060
|
+
"""
|
|
2061
|
+
self._RequestId = None
|
|
2062
|
+
|
|
2063
|
+
@property
|
|
2064
|
+
def RequestId(self):
|
|
2065
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2066
|
+
:rtype: str
|
|
2067
|
+
"""
|
|
2068
|
+
return self._RequestId
|
|
2069
|
+
|
|
2070
|
+
@RequestId.setter
|
|
2071
|
+
def RequestId(self, RequestId):
|
|
2072
|
+
self._RequestId = RequestId
|
|
2073
|
+
|
|
2074
|
+
|
|
2075
|
+
def _deserialize(self, params):
|
|
2076
|
+
self._RequestId = params.get("RequestId")
|
|
2077
|
+
|
|
2078
|
+
|
|
2045
2079
|
class KnowledgeBase(AbstractModel):
|
|
2046
2080
|
r"""知识库信息
|
|
2047
2081
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-dataagent
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.99
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
tencentcloud_sdk_python_dataagent-3.1.99/tencentcloud_sdk_python_dataagent.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.99
|
tencentcloud_sdk_python_dataagent-3.1.88/tencentcloud_sdk_python_dataagent.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.88
|
{tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/README.rst
RENAMED
|
File without changes
|
{tencentcloud_sdk_python_dataagent-3.1.88 → tencentcloud_sdk_python_dataagent-3.1.99}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|