tencentcloud-sdk-python-tokenhub 3.1.128__tar.gz → 3.1.130__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_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/setup.py +1 -1
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud/tokenhub/v20260322/errorcodes.py +3 -0
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud/tokenhub/v20260322/models.py +159 -8
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud/tokenhub/v20260322/tokenhub_client.py +97 -1
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud/tokenhub/v20260322/tokenhub_client_async.py +77 -1
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud_sdk_python_tokenhub.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_tokenhub-3.1.130/tencentcloud_sdk_python_tokenhub.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_tokenhub-3.1.128/tencentcloud_sdk_python_tokenhub.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/README.rst +0 -0
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/setup.cfg +0 -0
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud/tokenhub/__init__.py +0 -0
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud/tokenhub/v20260322/__init__.py +0 -0
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud_sdk_python_tokenhub.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud_sdk_python_tokenhub.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/tencentcloud_sdk_python_tokenhub.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tokenhub
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.130
|
|
4
4
|
Summary: Tencent Cloud Tokenhub 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.130
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-tokenhub',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.130,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Tokenhub SDK for Python',
|
|
@@ -35,6 +35,9 @@ INVALIDPARAMETER_TOOMANYOBJECTS = 'InvalidParameter.TooManyObjects'
|
|
|
35
35
|
# InvalidParameterValue.InvalidParameterValue
|
|
36
36
|
INVALIDPARAMETERVALUE_INVALIDPARAMETERVALUE = 'InvalidParameterValue.InvalidParameterValue'
|
|
37
37
|
|
|
38
|
+
# 超过配额限制。
|
|
39
|
+
LIMITEXCEEDED = 'LimitExceeded'
|
|
40
|
+
|
|
38
41
|
# MissingParameter.MissingParameter
|
|
39
42
|
MISSINGPARAMETER_MISSINGPARAMETER = 'MissingParameter.MissingParameter'
|
|
40
43
|
|
|
@@ -451,6 +451,40 @@ class BindingItem(AbstractModel):
|
|
|
451
451
|
|
|
452
452
|
|
|
453
453
|
|
|
454
|
+
class CreateApiKeyRequest(AbstractModel):
|
|
455
|
+
r"""CreateApiKey请求参数结构体
|
|
456
|
+
|
|
457
|
+
"""
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
class CreateApiKeyResponse(AbstractModel):
|
|
461
|
+
r"""CreateApiKey返回参数结构体
|
|
462
|
+
|
|
463
|
+
"""
|
|
464
|
+
|
|
465
|
+
def __init__(self):
|
|
466
|
+
r"""
|
|
467
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
468
|
+
:type RequestId: str
|
|
469
|
+
"""
|
|
470
|
+
self._RequestId = None
|
|
471
|
+
|
|
472
|
+
@property
|
|
473
|
+
def RequestId(self):
|
|
474
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
475
|
+
:rtype: str
|
|
476
|
+
"""
|
|
477
|
+
return self._RequestId
|
|
478
|
+
|
|
479
|
+
@RequestId.setter
|
|
480
|
+
def RequestId(self, RequestId):
|
|
481
|
+
self._RequestId = RequestId
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
def _deserialize(self, params):
|
|
485
|
+
self._RequestId = params.get("RequestId")
|
|
486
|
+
|
|
487
|
+
|
|
454
488
|
class CreateApiKeysResultItem(AbstractModel):
|
|
455
489
|
r"""批量创建成功项
|
|
456
490
|
|
|
@@ -1086,6 +1120,40 @@ class CreateTokenPlanTeamOrderAndBuyResponse(AbstractModel):
|
|
|
1086
1120
|
self._RequestId = params.get("RequestId")
|
|
1087
1121
|
|
|
1088
1122
|
|
|
1123
|
+
class DeleteApiKeyRequest(AbstractModel):
|
|
1124
|
+
r"""DeleteApiKey请求参数结构体
|
|
1125
|
+
|
|
1126
|
+
"""
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
class DeleteApiKeyResponse(AbstractModel):
|
|
1130
|
+
r"""DeleteApiKey返回参数结构体
|
|
1131
|
+
|
|
1132
|
+
"""
|
|
1133
|
+
|
|
1134
|
+
def __init__(self):
|
|
1135
|
+
r"""
|
|
1136
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1137
|
+
:type RequestId: str
|
|
1138
|
+
"""
|
|
1139
|
+
self._RequestId = None
|
|
1140
|
+
|
|
1141
|
+
@property
|
|
1142
|
+
def RequestId(self):
|
|
1143
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1144
|
+
:rtype: str
|
|
1145
|
+
"""
|
|
1146
|
+
return self._RequestId
|
|
1147
|
+
|
|
1148
|
+
@RequestId.setter
|
|
1149
|
+
def RequestId(self, RequestId):
|
|
1150
|
+
self._RequestId = RequestId
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
def _deserialize(self, params):
|
|
1154
|
+
self._RequestId = params.get("RequestId")
|
|
1155
|
+
|
|
1156
|
+
|
|
1089
1157
|
class DeleteGlossaryEntriesRequest(AbstractModel):
|
|
1090
1158
|
r"""DeleteGlossaryEntries请求参数结构体
|
|
1091
1159
|
|
|
@@ -4580,23 +4648,26 @@ class ModelChargingItem(AbstractModel):
|
|
|
4580
4648
|
|
|
4581
4649
|
def __init__(self):
|
|
4582
4650
|
r"""
|
|
4583
|
-
:param _PriceName:
|
|
4651
|
+
:param _PriceName: <p>价格维度标识。取值:Input(输入)、Output(输出)、Cache(缓存命中)、Thinking(思考)、BatchInput(批量输入)、BatchOutput(批量输出)、BatchCache(批量缓存命中)、ImageInput(输入图片)、ImageOutput(输出图片)、Search(搜索调用)。</p>
|
|
4584
4652
|
:type PriceName: str
|
|
4585
|
-
:param _DisplayName:
|
|
4653
|
+
:param _DisplayName: <p>价格维度展示名,后端直接提供当前语言文本(如 输入、Input),前端无需翻译。</p>
|
|
4586
4654
|
:type DisplayName: str
|
|
4587
|
-
:param _Price:
|
|
4655
|
+
:param _Price: <p>价格数值。</p>
|
|
4588
4656
|
:type Price: str
|
|
4589
|
-
:param _PriceUnit:
|
|
4657
|
+
:param _PriceUnit: <p>价格单位,后端直接提供当前语言文本(如 元/百万tokens、元/张、积分/次)。</p>
|
|
4590
4658
|
:type PriceUnit: str
|
|
4659
|
+
:param _PeakPrice: <p>高峰价格,为空表示无高峰定价</p>
|
|
4660
|
+
:type PeakPrice: str
|
|
4591
4661
|
"""
|
|
4592
4662
|
self._PriceName = None
|
|
4593
4663
|
self._DisplayName = None
|
|
4594
4664
|
self._Price = None
|
|
4595
4665
|
self._PriceUnit = None
|
|
4666
|
+
self._PeakPrice = None
|
|
4596
4667
|
|
|
4597
4668
|
@property
|
|
4598
4669
|
def PriceName(self):
|
|
4599
|
-
r"""
|
|
4670
|
+
r"""<p>价格维度标识。取值:Input(输入)、Output(输出)、Cache(缓存命中)、Thinking(思考)、BatchInput(批量输入)、BatchOutput(批量输出)、BatchCache(批量缓存命中)、ImageInput(输入图片)、ImageOutput(输出图片)、Search(搜索调用)。</p>
|
|
4600
4671
|
:rtype: str
|
|
4601
4672
|
"""
|
|
4602
4673
|
return self._PriceName
|
|
@@ -4607,7 +4678,7 @@ class ModelChargingItem(AbstractModel):
|
|
|
4607
4678
|
|
|
4608
4679
|
@property
|
|
4609
4680
|
def DisplayName(self):
|
|
4610
|
-
r"""
|
|
4681
|
+
r"""<p>价格维度展示名,后端直接提供当前语言文本(如 输入、Input),前端无需翻译。</p>
|
|
4611
4682
|
:rtype: str
|
|
4612
4683
|
"""
|
|
4613
4684
|
return self._DisplayName
|
|
@@ -4618,7 +4689,7 @@ class ModelChargingItem(AbstractModel):
|
|
|
4618
4689
|
|
|
4619
4690
|
@property
|
|
4620
4691
|
def Price(self):
|
|
4621
|
-
r"""
|
|
4692
|
+
r"""<p>价格数值。</p>
|
|
4622
4693
|
:rtype: str
|
|
4623
4694
|
"""
|
|
4624
4695
|
return self._Price
|
|
@@ -4629,7 +4700,7 @@ class ModelChargingItem(AbstractModel):
|
|
|
4629
4700
|
|
|
4630
4701
|
@property
|
|
4631
4702
|
def PriceUnit(self):
|
|
4632
|
-
r"""
|
|
4703
|
+
r"""<p>价格单位,后端直接提供当前语言文本(如 元/百万tokens、元/张、积分/次)。</p>
|
|
4633
4704
|
:rtype: str
|
|
4634
4705
|
"""
|
|
4635
4706
|
return self._PriceUnit
|
|
@@ -4638,12 +4709,24 @@ class ModelChargingItem(AbstractModel):
|
|
|
4638
4709
|
def PriceUnit(self, PriceUnit):
|
|
4639
4710
|
self._PriceUnit = PriceUnit
|
|
4640
4711
|
|
|
4712
|
+
@property
|
|
4713
|
+
def PeakPrice(self):
|
|
4714
|
+
r"""<p>高峰价格,为空表示无高峰定价</p>
|
|
4715
|
+
:rtype: str
|
|
4716
|
+
"""
|
|
4717
|
+
return self._PeakPrice
|
|
4718
|
+
|
|
4719
|
+
@PeakPrice.setter
|
|
4720
|
+
def PeakPrice(self, PeakPrice):
|
|
4721
|
+
self._PeakPrice = PeakPrice
|
|
4722
|
+
|
|
4641
4723
|
|
|
4642
4724
|
def _deserialize(self, params):
|
|
4643
4725
|
self._PriceName = params.get("PriceName")
|
|
4644
4726
|
self._DisplayName = params.get("DisplayName")
|
|
4645
4727
|
self._Price = params.get("Price")
|
|
4646
4728
|
self._PriceUnit = params.get("PriceUnit")
|
|
4729
|
+
self._PeakPrice = params.get("PeakPrice")
|
|
4647
4730
|
memeber_set = set(params.keys())
|
|
4648
4731
|
for name, value in vars(self).items():
|
|
4649
4732
|
property_name = name[1:]
|
|
@@ -4948,6 +5031,74 @@ class ModelSpec(AbstractModel):
|
|
|
4948
5031
|
|
|
4949
5032
|
|
|
4950
5033
|
|
|
5034
|
+
class ModifyApiKeyInfoRequest(AbstractModel):
|
|
5035
|
+
r"""ModifyApiKeyInfo请求参数结构体
|
|
5036
|
+
|
|
5037
|
+
"""
|
|
5038
|
+
|
|
5039
|
+
|
|
5040
|
+
class ModifyApiKeyInfoResponse(AbstractModel):
|
|
5041
|
+
r"""ModifyApiKeyInfo返回参数结构体
|
|
5042
|
+
|
|
5043
|
+
"""
|
|
5044
|
+
|
|
5045
|
+
def __init__(self):
|
|
5046
|
+
r"""
|
|
5047
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5048
|
+
:type RequestId: str
|
|
5049
|
+
"""
|
|
5050
|
+
self._RequestId = None
|
|
5051
|
+
|
|
5052
|
+
@property
|
|
5053
|
+
def RequestId(self):
|
|
5054
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5055
|
+
:rtype: str
|
|
5056
|
+
"""
|
|
5057
|
+
return self._RequestId
|
|
5058
|
+
|
|
5059
|
+
@RequestId.setter
|
|
5060
|
+
def RequestId(self, RequestId):
|
|
5061
|
+
self._RequestId = RequestId
|
|
5062
|
+
|
|
5063
|
+
|
|
5064
|
+
def _deserialize(self, params):
|
|
5065
|
+
self._RequestId = params.get("RequestId")
|
|
5066
|
+
|
|
5067
|
+
|
|
5068
|
+
class ModifyApiKeyStatusRequest(AbstractModel):
|
|
5069
|
+
r"""ModifyApiKeyStatus请求参数结构体
|
|
5070
|
+
|
|
5071
|
+
"""
|
|
5072
|
+
|
|
5073
|
+
|
|
5074
|
+
class ModifyApiKeyStatusResponse(AbstractModel):
|
|
5075
|
+
r"""ModifyApiKeyStatus返回参数结构体
|
|
5076
|
+
|
|
5077
|
+
"""
|
|
5078
|
+
|
|
5079
|
+
def __init__(self):
|
|
5080
|
+
r"""
|
|
5081
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5082
|
+
:type RequestId: str
|
|
5083
|
+
"""
|
|
5084
|
+
self._RequestId = None
|
|
5085
|
+
|
|
5086
|
+
@property
|
|
5087
|
+
def RequestId(self):
|
|
5088
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5089
|
+
:rtype: str
|
|
5090
|
+
"""
|
|
5091
|
+
return self._RequestId
|
|
5092
|
+
|
|
5093
|
+
@RequestId.setter
|
|
5094
|
+
def RequestId(self, RequestId):
|
|
5095
|
+
self._RequestId = RequestId
|
|
5096
|
+
|
|
5097
|
+
|
|
5098
|
+
def _deserialize(self, params):
|
|
5099
|
+
self._RequestId = params.get("RequestId")
|
|
5100
|
+
|
|
5101
|
+
|
|
4951
5102
|
class ModifyGlossaryEntriesRequest(AbstractModel):
|
|
4952
5103
|
r"""ModifyGlossaryEntries请求参数结构体
|
|
4953
5104
|
|
|
@@ -26,6 +26,31 @@ class TokenhubClient(AbstractClient):
|
|
|
26
26
|
_service = 'tokenhub'
|
|
27
27
|
|
|
28
28
|
|
|
29
|
+
def CreateApiKey(self, request):
|
|
30
|
+
r"""创建 API 密钥。
|
|
31
|
+
|
|
32
|
+
创建一个新的 API 密钥,创建成功后返回 API 密钥 ID。需指定平台类型、绑定方式和初始状态。
|
|
33
|
+
|
|
34
|
+
:param request: Request instance for CreateApiKey.
|
|
35
|
+
:type request: :class:`tencentcloud.tokenhub.v20260322.models.CreateApiKeyRequest`
|
|
36
|
+
:rtype: :class:`tencentcloud.tokenhub.v20260322.models.CreateApiKeyResponse`
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
try:
|
|
40
|
+
params = request._serialize()
|
|
41
|
+
headers = request.headers
|
|
42
|
+
body = self.call("CreateApiKey", params, headers=headers)
|
|
43
|
+
response = json.loads(body)
|
|
44
|
+
model = models.CreateApiKeyResponse()
|
|
45
|
+
model._deserialize(response["Response"])
|
|
46
|
+
return model
|
|
47
|
+
except Exception as e:
|
|
48
|
+
if isinstance(e, TencentCloudSDKException):
|
|
49
|
+
raise
|
|
50
|
+
else:
|
|
51
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
52
|
+
|
|
53
|
+
|
|
29
54
|
def CreateGlossary(self, request):
|
|
30
55
|
r"""创建术语库。
|
|
31
56
|
|
|
@@ -126,6 +151,29 @@ class TokenhubClient(AbstractClient):
|
|
|
126
151
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
127
152
|
|
|
128
153
|
|
|
154
|
+
def DeleteApiKey(self, request):
|
|
155
|
+
r"""删除指定的 API 密钥,同时清理关联的模型绑定关系。
|
|
156
|
+
|
|
157
|
+
:param request: Request instance for DeleteApiKey.
|
|
158
|
+
:type request: :class:`tencentcloud.tokenhub.v20260322.models.DeleteApiKeyRequest`
|
|
159
|
+
:rtype: :class:`tencentcloud.tokenhub.v20260322.models.DeleteApiKeyResponse`
|
|
160
|
+
|
|
161
|
+
"""
|
|
162
|
+
try:
|
|
163
|
+
params = request._serialize()
|
|
164
|
+
headers = request.headers
|
|
165
|
+
body = self.call("DeleteApiKey", params, headers=headers)
|
|
166
|
+
response = json.loads(body)
|
|
167
|
+
model = models.DeleteApiKeyResponse()
|
|
168
|
+
model._deserialize(response["Response"])
|
|
169
|
+
return model
|
|
170
|
+
except Exception as e:
|
|
171
|
+
if isinstance(e, TencentCloudSDKException):
|
|
172
|
+
raise
|
|
173
|
+
else:
|
|
174
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
175
|
+
|
|
176
|
+
|
|
129
177
|
def DeleteGlossary(self, request):
|
|
130
178
|
r"""删除术语库。
|
|
131
179
|
|
|
@@ -427,7 +475,7 @@ class TokenhubClient(AbstractClient):
|
|
|
427
475
|
def DescribeTokenPlanApiKeyUsageDetail(self, request):
|
|
428
476
|
r"""查询 TokenPlan APIKey 调用明细。
|
|
429
477
|
|
|
430
|
-
从 CLS 日志服务查询套餐下的调用明细,按
|
|
478
|
+
从 CLS 日志服务查询套餐下的调用明细,按 team_id 过滤,支持游标分页。
|
|
431
479
|
|
|
432
480
|
:param request: Request instance for DescribeTokenPlanApiKeyUsageDetail.
|
|
433
481
|
:type request: :class:`tencentcloud.tokenhub.v20260322.models.DescribeTokenPlanApiKeyUsageDetailRequest`
|
|
@@ -509,6 +557,54 @@ class TokenhubClient(AbstractClient):
|
|
|
509
557
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
510
558
|
|
|
511
559
|
|
|
560
|
+
def ModifyApiKeyInfo(self, request):
|
|
561
|
+
r"""更新 API 密钥信息。
|
|
562
|
+
|
|
563
|
+
更新 API 密钥的备注信息、 IP 白名单和 Token 限额(修改限额推荐使用QuotaDesired参数)。所有可选参数不传表示不修改。
|
|
564
|
+
|
|
565
|
+
:param request: Request instance for ModifyApiKeyInfo.
|
|
566
|
+
:type request: :class:`tencentcloud.tokenhub.v20260322.models.ModifyApiKeyInfoRequest`
|
|
567
|
+
:rtype: :class:`tencentcloud.tokenhub.v20260322.models.ModifyApiKeyInfoResponse`
|
|
568
|
+
|
|
569
|
+
"""
|
|
570
|
+
try:
|
|
571
|
+
params = request._serialize()
|
|
572
|
+
headers = request.headers
|
|
573
|
+
body = self.call("ModifyApiKeyInfo", params, headers=headers)
|
|
574
|
+
response = json.loads(body)
|
|
575
|
+
model = models.ModifyApiKeyInfoResponse()
|
|
576
|
+
model._deserialize(response["Response"])
|
|
577
|
+
return model
|
|
578
|
+
except Exception as e:
|
|
579
|
+
if isinstance(e, TencentCloudSDKException):
|
|
580
|
+
raise
|
|
581
|
+
else:
|
|
582
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
def ModifyApiKeyStatus(self, request):
|
|
586
|
+
r"""更新 API 密钥的启用或禁用状态。
|
|
587
|
+
|
|
588
|
+
:param request: Request instance for ModifyApiKeyStatus.
|
|
589
|
+
:type request: :class:`tencentcloud.tokenhub.v20260322.models.ModifyApiKeyStatusRequest`
|
|
590
|
+
:rtype: :class:`tencentcloud.tokenhub.v20260322.models.ModifyApiKeyStatusResponse`
|
|
591
|
+
|
|
592
|
+
"""
|
|
593
|
+
try:
|
|
594
|
+
params = request._serialize()
|
|
595
|
+
headers = request.headers
|
|
596
|
+
body = self.call("ModifyApiKeyStatus", params, headers=headers)
|
|
597
|
+
response = json.loads(body)
|
|
598
|
+
model = models.ModifyApiKeyStatusResponse()
|
|
599
|
+
model._deserialize(response["Response"])
|
|
600
|
+
return model
|
|
601
|
+
except Exception as e:
|
|
602
|
+
if isinstance(e, TencentCloudSDKException):
|
|
603
|
+
raise
|
|
604
|
+
else:
|
|
605
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
606
|
+
|
|
607
|
+
|
|
512
608
|
def ModifyGlossaryEntries(self, request):
|
|
513
609
|
r"""批量修改术语条目。
|
|
514
610
|
|
|
@@ -25,6 +25,26 @@ class TokenhubClient(AbstractClient):
|
|
|
25
25
|
_endpoint = 'tokenhub.tencentcloudapi.com'
|
|
26
26
|
_service = 'tokenhub'
|
|
27
27
|
|
|
28
|
+
async def CreateApiKey(
|
|
29
|
+
self,
|
|
30
|
+
request: models.CreateApiKeyRequest,
|
|
31
|
+
opts: Dict = None,
|
|
32
|
+
) -> models.CreateApiKeyResponse:
|
|
33
|
+
"""
|
|
34
|
+
创建 API 密钥。
|
|
35
|
+
|
|
36
|
+
创建一个新的 API 密钥,创建成功后返回 API 密钥 ID。需指定平台类型、绑定方式和初始状态。
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
kwargs = {}
|
|
40
|
+
kwargs["action"] = "CreateApiKey"
|
|
41
|
+
kwargs["params"] = request._serialize()
|
|
42
|
+
kwargs["resp_cls"] = models.CreateApiKeyResponse
|
|
43
|
+
kwargs["headers"] = request.headers
|
|
44
|
+
kwargs["opts"] = opts or {}
|
|
45
|
+
|
|
46
|
+
return await self.call_and_deserialize(**kwargs)
|
|
47
|
+
|
|
28
48
|
async def CreateGlossary(
|
|
29
49
|
self,
|
|
30
50
|
request: models.CreateGlossaryRequest,
|
|
@@ -105,6 +125,24 @@ class TokenhubClient(AbstractClient):
|
|
|
105
125
|
|
|
106
126
|
return await self.call_and_deserialize(**kwargs)
|
|
107
127
|
|
|
128
|
+
async def DeleteApiKey(
|
|
129
|
+
self,
|
|
130
|
+
request: models.DeleteApiKeyRequest,
|
|
131
|
+
opts: Dict = None,
|
|
132
|
+
) -> models.DeleteApiKeyResponse:
|
|
133
|
+
"""
|
|
134
|
+
删除指定的 API 密钥,同时清理关联的模型绑定关系。
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
kwargs = {}
|
|
138
|
+
kwargs["action"] = "DeleteApiKey"
|
|
139
|
+
kwargs["params"] = request._serialize()
|
|
140
|
+
kwargs["resp_cls"] = models.DeleteApiKeyResponse
|
|
141
|
+
kwargs["headers"] = request.headers
|
|
142
|
+
kwargs["opts"] = opts or {}
|
|
143
|
+
|
|
144
|
+
return await self.call_and_deserialize(**kwargs)
|
|
145
|
+
|
|
108
146
|
async def DeleteGlossary(
|
|
109
147
|
self,
|
|
110
148
|
request: models.DeleteGlossaryRequest,
|
|
@@ -351,7 +389,7 @@ class TokenhubClient(AbstractClient):
|
|
|
351
389
|
"""
|
|
352
390
|
查询 TokenPlan APIKey 调用明细。
|
|
353
391
|
|
|
354
|
-
从 CLS 日志服务查询套餐下的调用明细,按
|
|
392
|
+
从 CLS 日志服务查询套餐下的调用明细,按 team_id 过滤,支持游标分页。
|
|
355
393
|
"""
|
|
356
394
|
|
|
357
395
|
kwargs = {}
|
|
@@ -413,6 +451,44 @@ class TokenhubClient(AbstractClient):
|
|
|
413
451
|
|
|
414
452
|
return await self.call_and_deserialize(**kwargs)
|
|
415
453
|
|
|
454
|
+
async def ModifyApiKeyInfo(
|
|
455
|
+
self,
|
|
456
|
+
request: models.ModifyApiKeyInfoRequest,
|
|
457
|
+
opts: Dict = None,
|
|
458
|
+
) -> models.ModifyApiKeyInfoResponse:
|
|
459
|
+
"""
|
|
460
|
+
更新 API 密钥信息。
|
|
461
|
+
|
|
462
|
+
更新 API 密钥的备注信息、 IP 白名单和 Token 限额(修改限额推荐使用QuotaDesired参数)。所有可选参数不传表示不修改。
|
|
463
|
+
"""
|
|
464
|
+
|
|
465
|
+
kwargs = {}
|
|
466
|
+
kwargs["action"] = "ModifyApiKeyInfo"
|
|
467
|
+
kwargs["params"] = request._serialize()
|
|
468
|
+
kwargs["resp_cls"] = models.ModifyApiKeyInfoResponse
|
|
469
|
+
kwargs["headers"] = request.headers
|
|
470
|
+
kwargs["opts"] = opts or {}
|
|
471
|
+
|
|
472
|
+
return await self.call_and_deserialize(**kwargs)
|
|
473
|
+
|
|
474
|
+
async def ModifyApiKeyStatus(
|
|
475
|
+
self,
|
|
476
|
+
request: models.ModifyApiKeyStatusRequest,
|
|
477
|
+
opts: Dict = None,
|
|
478
|
+
) -> models.ModifyApiKeyStatusResponse:
|
|
479
|
+
"""
|
|
480
|
+
更新 API 密钥的启用或禁用状态。
|
|
481
|
+
"""
|
|
482
|
+
|
|
483
|
+
kwargs = {}
|
|
484
|
+
kwargs["action"] = "ModifyApiKeyStatus"
|
|
485
|
+
kwargs["params"] = request._serialize()
|
|
486
|
+
kwargs["resp_cls"] = models.ModifyApiKeyStatusResponse
|
|
487
|
+
kwargs["headers"] = request.headers
|
|
488
|
+
kwargs["opts"] = opts or {}
|
|
489
|
+
|
|
490
|
+
return await self.call_and_deserialize(**kwargs)
|
|
491
|
+
|
|
416
492
|
async def ModifyGlossaryEntries(
|
|
417
493
|
self,
|
|
418
494
|
request: models.ModifyGlossaryEntriesRequest,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tokenhub
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.130
|
|
4
4
|
Summary: Tencent Cloud Tokenhub 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.130
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
tencentcloud_sdk_python_tokenhub-3.1.130/tencentcloud_sdk_python_tokenhub.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.130
|
tencentcloud_sdk_python_tokenhub-3.1.128/tencentcloud_sdk_python_tokenhub.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.128
|
{tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/README.rst
RENAMED
|
File without changes
|
{tencentcloud_sdk_python_tokenhub-3.1.128 → tencentcloud_sdk_python_tokenhub-3.1.130}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|