tencentcloud-sdk-python-intl-en 3.0.1276__py2.py3-none-any.whl → 3.0.1277__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/tione/__init__.py +0 -0
- tencentcloud/tione/v20211111/__init__.py +0 -0
- tencentcloud/tione/v20211111/errorcodes.py +90 -0
- tencentcloud/tione/v20211111/models.py +5096 -0
- tencentcloud/tione/v20211111/tione_client.py +49 -0
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/RECORD +10 -5
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
import json
|
17
|
+
|
18
|
+
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
19
|
+
from tencentcloud.common.abstract_client import AbstractClient
|
20
|
+
from tencentcloud.tione.v20211111 import models
|
21
|
+
|
22
|
+
|
23
|
+
class TioneClient(AbstractClient):
|
24
|
+
_apiVersion = '2021-11-11'
|
25
|
+
_endpoint = 'tione.intl.tencentcloudapi.com'
|
26
|
+
_service = 'tione'
|
27
|
+
|
28
|
+
|
29
|
+
def DescribeModelServiceGroups(self, request):
|
30
|
+
r"""This API is used to list online inference service groups.
|
31
|
+
|
32
|
+
:param request: Request instance for DescribeModelServiceGroups.
|
33
|
+
:type request: :class:`tencentcloud.tione.v20211111.models.DescribeModelServiceGroupsRequest`
|
34
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.DescribeModelServiceGroupsResponse`
|
35
|
+
|
36
|
+
"""
|
37
|
+
try:
|
38
|
+
params = request._serialize()
|
39
|
+
headers = request.headers
|
40
|
+
body = self.call("DescribeModelServiceGroups", params, headers=headers)
|
41
|
+
response = json.loads(body)
|
42
|
+
model = models.DescribeModelServiceGroupsResponse()
|
43
|
+
model._deserialize(response["Response"])
|
44
|
+
return model
|
45
|
+
except Exception as e:
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
47
|
+
raise
|
48
|
+
else:
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
1
|
+
tencentcloud/__init__.py,sha256=5jLdpMjmlbWK7TAUynSTMB0Y-XbE7TUTAJ7FDuHJWp8,630
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=PI6LX0PouoGb8e_ydQ9rATqY795jQh7JPK2COE_oH-Q,2899
|
@@ -596,6 +596,11 @@ tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
596
596
|
tencentcloud/teo/v20220901/errorcodes.py,sha256=y2gj0QLR539a2RMclbJ0baZ2jh-VYJeD9DdovcA5O-s,63754
|
597
597
|
tencentcloud/teo/v20220901/models.py,sha256=XhI7KwfWyWoxPUWUTbCYpMZCD3d9vSKChSYlj6LbAo4,1958137
|
598
598
|
tencentcloud/teo/v20220901/teo_client.py,sha256=Hh7OFhcR5h5jUzarykcITHZ3KbSPx8SyEerv02sTjok,206407
|
599
|
+
tencentcloud/tione/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
600
|
+
tencentcloud/tione/v20211111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
601
|
+
tencentcloud/tione/v20211111/errorcodes.py,sha256=1Pq2FzB1tPF3y62Sz6glNNWo9_9PhntifIredoVAbgs,2844
|
602
|
+
tencentcloud/tione/v20211111/models.py,sha256=sgdbcpUxFbz0J5Rtchjk-rrShg8NcmHbgiIsld7h90g,184309
|
603
|
+
tencentcloud/tione/v20211111/tione_client.py,sha256=tZyYDOEYwhLwkhordIGmi_BDTOXCsxTVQRGWCWoBfgA,1950
|
599
604
|
tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
600
605
|
tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
601
606
|
tencentcloud/tiw/v20190919/errorcodes.py,sha256=hkq51w7EvkmJ3CKnQXiPUgKy6x1ztS8nVjIcNGEeSDc,6334
|
@@ -683,7 +688,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
683
688
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
|
684
689
|
tencentcloud/yunjing/v20180228/models.py,sha256=nivJxxJYNvW-I_WWuoZj5RJaexdeSctX04e7osSjSUo,331388
|
685
690
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=XYRY2x9Bs-06YaFx6swLlxuqhNRuykLZuIte6bc8T2E,67433
|
686
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
687
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
688
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
689
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
691
|
+
tencentcloud_sdk_python_intl_en-3.0.1277.dist-info/METADATA,sha256=5refVpgkZej3vf20oG2KY3TwPoZCxVzaEnUuCBuyz4I,1628
|
692
|
+
tencentcloud_sdk_python_intl_en-3.0.1277.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
693
|
+
tencentcloud_sdk_python_intl_en-3.0.1277.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
694
|
+
tencentcloud_sdk_python_intl_en-3.0.1277.dist-info/RECORD,,
|
File without changes
|