tencentcloud-sdk-python-tokenhub 3.1.106__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 +17 -0
- tencentcloud/tokenhub/__init__.py +0 -0
- tencentcloud/tokenhub/v20260322/__init__.py +0 -0
- tencentcloud/tokenhub/v20260322/errorcodes.py +51 -0
- tencentcloud/tokenhub/v20260322/models.py +4691 -0
- tencentcloud/tokenhub/v20260322/tokenhub_client.py +426 -0
- tencentcloud/tokenhub/v20260322/tokenhub_client_async.py +346 -0
- tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/METADATA +46 -0
- tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/RECORD +11 -0
- tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/WHEEL +6 -0
- tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,346 @@
|
|
|
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
|
+
|
|
17
|
+
|
|
18
|
+
from tencentcloud.common.abstract_client_async import AbstractClient
|
|
19
|
+
from tencentcloud.tokenhub.v20260322 import models
|
|
20
|
+
from typing import Dict
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class TokenhubClient(AbstractClient):
|
|
24
|
+
_apiVersion = '2026-03-22'
|
|
25
|
+
_endpoint = 'tokenhub.tencentcloudapi.com'
|
|
26
|
+
_service = 'tokenhub'
|
|
27
|
+
|
|
28
|
+
async def CreateTokenPlanApiKeys(
|
|
29
|
+
self,
|
|
30
|
+
request: models.CreateTokenPlanApiKeysRequest,
|
|
31
|
+
opts: Dict = None,
|
|
32
|
+
) -> models.CreateTokenPlanApiKeysResponse:
|
|
33
|
+
"""
|
|
34
|
+
批量创建 TokenPlan APIKey。
|
|
35
|
+
|
|
36
|
+
传入名称前缀和数量,自动按 {ApiKeyName}-{序号} 格式生成名称(如 aaa-1, aaa-2)。允许同名。支持部分成功,最多 100 条。
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
kwargs = {}
|
|
40
|
+
kwargs["action"] = "CreateTokenPlanApiKeys"
|
|
41
|
+
kwargs["params"] = request._serialize()
|
|
42
|
+
kwargs["resp_cls"] = models.CreateTokenPlanApiKeysResponse
|
|
43
|
+
kwargs["headers"] = request.headers
|
|
44
|
+
kwargs["opts"] = opts or {}
|
|
45
|
+
|
|
46
|
+
return await self.call_and_deserialize(**kwargs)
|
|
47
|
+
|
|
48
|
+
async def CreateTokenPlanTeamOrderAndBuy(
|
|
49
|
+
self,
|
|
50
|
+
request: models.CreateTokenPlanTeamOrderAndBuyRequest,
|
|
51
|
+
opts: Dict = None,
|
|
52
|
+
) -> models.CreateTokenPlanTeamOrderAndBuyResponse:
|
|
53
|
+
"""
|
|
54
|
+
购买套餐。
|
|
55
|
+
|
|
56
|
+
发起 TokenPlan 套餐下单并完成支付,成功后返回大订单 ID 及关联的子订单、资源信息。
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
kwargs = {}
|
|
60
|
+
kwargs["action"] = "CreateTokenPlanTeamOrderAndBuy"
|
|
61
|
+
kwargs["params"] = request._serialize()
|
|
62
|
+
kwargs["resp_cls"] = models.CreateTokenPlanTeamOrderAndBuyResponse
|
|
63
|
+
kwargs["headers"] = request.headers
|
|
64
|
+
kwargs["opts"] = opts or {}
|
|
65
|
+
|
|
66
|
+
return await self.call_and_deserialize(**kwargs)
|
|
67
|
+
|
|
68
|
+
async def DeleteTokenPlanApiKey(
|
|
69
|
+
self,
|
|
70
|
+
request: models.DeleteTokenPlanApiKeyRequest,
|
|
71
|
+
opts: Dict = None,
|
|
72
|
+
) -> models.DeleteTokenPlanApiKeyResponse:
|
|
73
|
+
"""
|
|
74
|
+
删除 TokenPlan APIKey。
|
|
75
|
+
|
|
76
|
+
同时删除额度中心子额度包并通知网关清除缓存。
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
kwargs = {}
|
|
80
|
+
kwargs["action"] = "DeleteTokenPlanApiKey"
|
|
81
|
+
kwargs["params"] = request._serialize()
|
|
82
|
+
kwargs["resp_cls"] = models.DeleteTokenPlanApiKeyResponse
|
|
83
|
+
kwargs["headers"] = request.headers
|
|
84
|
+
kwargs["opts"] = opts or {}
|
|
85
|
+
|
|
86
|
+
return await self.call_and_deserialize(**kwargs)
|
|
87
|
+
|
|
88
|
+
async def DescribeApiKey(
|
|
89
|
+
self,
|
|
90
|
+
request: models.DescribeApiKeyRequest,
|
|
91
|
+
opts: Dict = None,
|
|
92
|
+
) -> models.DescribeApiKeyResponse:
|
|
93
|
+
"""
|
|
94
|
+
根据 API 密钥 ID 或密钥值查询 API 密钥详情,返回明文密钥。ApiKeyId 和 ApiKey 至少需传入其一,优先使用 ApiKeyId。
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
kwargs = {}
|
|
98
|
+
kwargs["action"] = "DescribeApiKey"
|
|
99
|
+
kwargs["params"] = request._serialize()
|
|
100
|
+
kwargs["resp_cls"] = models.DescribeApiKeyResponse
|
|
101
|
+
kwargs["headers"] = request.headers
|
|
102
|
+
kwargs["opts"] = opts or {}
|
|
103
|
+
|
|
104
|
+
return await self.call_and_deserialize(**kwargs)
|
|
105
|
+
|
|
106
|
+
async def DescribeApiKeyList(
|
|
107
|
+
self,
|
|
108
|
+
request: models.DescribeApiKeyListRequest,
|
|
109
|
+
opts: Dict = None,
|
|
110
|
+
) -> models.DescribeApiKeyListResponse:
|
|
111
|
+
"""
|
|
112
|
+
查询 API 密钥列表。
|
|
113
|
+
|
|
114
|
+
查询当前用户的 API 密钥列表,密钥值脱敏展示。支持分页、过滤和排序。
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
kwargs = {}
|
|
118
|
+
kwargs["action"] = "DescribeApiKeyList"
|
|
119
|
+
kwargs["params"] = request._serialize()
|
|
120
|
+
kwargs["resp_cls"] = models.DescribeApiKeyListResponse
|
|
121
|
+
kwargs["headers"] = request.headers
|
|
122
|
+
kwargs["opts"] = opts or {}
|
|
123
|
+
|
|
124
|
+
return await self.call_and_deserialize(**kwargs)
|
|
125
|
+
|
|
126
|
+
async def DescribeTokenPlan(
|
|
127
|
+
self,
|
|
128
|
+
request: models.DescribeTokenPlanRequest,
|
|
129
|
+
opts: Dict = None,
|
|
130
|
+
) -> models.DescribeTokenPlanResponse:
|
|
131
|
+
"""
|
|
132
|
+
查询 TokenPlan 套餐详情。
|
|
133
|
+
|
|
134
|
+
返回套餐基本信息及额度中心主额度包余量。
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
kwargs = {}
|
|
138
|
+
kwargs["action"] = "DescribeTokenPlan"
|
|
139
|
+
kwargs["params"] = request._serialize()
|
|
140
|
+
kwargs["resp_cls"] = models.DescribeTokenPlanResponse
|
|
141
|
+
kwargs["headers"] = request.headers
|
|
142
|
+
kwargs["opts"] = opts or {}
|
|
143
|
+
|
|
144
|
+
return await self.call_and_deserialize(**kwargs)
|
|
145
|
+
|
|
146
|
+
async def DescribeTokenPlanApiKey(
|
|
147
|
+
self,
|
|
148
|
+
request: models.DescribeTokenPlanApiKeyRequest,
|
|
149
|
+
opts: Dict = None,
|
|
150
|
+
) -> models.DescribeTokenPlanApiKeyResponse:
|
|
151
|
+
"""
|
|
152
|
+
查询 TokenPlan APIKey 详情。
|
|
153
|
+
|
|
154
|
+
返回 APIKey 完整信息(含明文密钥)及子额度包余量。
|
|
155
|
+
"""
|
|
156
|
+
|
|
157
|
+
kwargs = {}
|
|
158
|
+
kwargs["action"] = "DescribeTokenPlanApiKey"
|
|
159
|
+
kwargs["params"] = request._serialize()
|
|
160
|
+
kwargs["resp_cls"] = models.DescribeTokenPlanApiKeyResponse
|
|
161
|
+
kwargs["headers"] = request.headers
|
|
162
|
+
kwargs["opts"] = opts or {}
|
|
163
|
+
|
|
164
|
+
return await self.call_and_deserialize(**kwargs)
|
|
165
|
+
|
|
166
|
+
async def DescribeTokenPlanApiKeyList(
|
|
167
|
+
self,
|
|
168
|
+
request: models.DescribeTokenPlanApiKeyListRequest,
|
|
169
|
+
opts: Dict = None,
|
|
170
|
+
) -> models.DescribeTokenPlanApiKeyListResponse:
|
|
171
|
+
"""
|
|
172
|
+
查询 TokenPlan APIKey 列表。
|
|
173
|
+
|
|
174
|
+
返回指定套餐下的 APIKey 列表,密钥已脱敏。主账号可查看全部,子账号仅可查看自己创建的。
|
|
175
|
+
"""
|
|
176
|
+
|
|
177
|
+
kwargs = {}
|
|
178
|
+
kwargs["action"] = "DescribeTokenPlanApiKeyList"
|
|
179
|
+
kwargs["params"] = request._serialize()
|
|
180
|
+
kwargs["resp_cls"] = models.DescribeTokenPlanApiKeyListResponse
|
|
181
|
+
kwargs["headers"] = request.headers
|
|
182
|
+
kwargs["opts"] = opts or {}
|
|
183
|
+
|
|
184
|
+
return await self.call_and_deserialize(**kwargs)
|
|
185
|
+
|
|
186
|
+
async def DescribeTokenPlanApiKeySecret(
|
|
187
|
+
self,
|
|
188
|
+
request: models.DescribeTokenPlanApiKeySecretRequest,
|
|
189
|
+
opts: Dict = None,
|
|
190
|
+
) -> models.DescribeTokenPlanApiKeySecretResponse:
|
|
191
|
+
"""
|
|
192
|
+
查询 TokenPlan APIKey 密钥(明文)。
|
|
193
|
+
|
|
194
|
+
返回指定 APIKey 的明文密钥值,请妥善保管。
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
kwargs = {}
|
|
198
|
+
kwargs["action"] = "DescribeTokenPlanApiKeySecret"
|
|
199
|
+
kwargs["params"] = request._serialize()
|
|
200
|
+
kwargs["resp_cls"] = models.DescribeTokenPlanApiKeySecretResponse
|
|
201
|
+
kwargs["headers"] = request.headers
|
|
202
|
+
kwargs["opts"] = opts or {}
|
|
203
|
+
|
|
204
|
+
return await self.call_and_deserialize(**kwargs)
|
|
205
|
+
|
|
206
|
+
async def DescribeTokenPlanApiKeyUsageDetail(
|
|
207
|
+
self,
|
|
208
|
+
request: models.DescribeTokenPlanApiKeyUsageDetailRequest,
|
|
209
|
+
opts: Dict = None,
|
|
210
|
+
) -> models.DescribeTokenPlanApiKeyUsageDetailResponse:
|
|
211
|
+
"""
|
|
212
|
+
查询 TokenPlan APIKey 调用明细。
|
|
213
|
+
|
|
214
|
+
从 CLS 日志服务查询套餐下的调用明细,按 pkg_id 过滤,支持游标分页。
|
|
215
|
+
"""
|
|
216
|
+
|
|
217
|
+
kwargs = {}
|
|
218
|
+
kwargs["action"] = "DescribeTokenPlanApiKeyUsageDetail"
|
|
219
|
+
kwargs["params"] = request._serialize()
|
|
220
|
+
kwargs["resp_cls"] = models.DescribeTokenPlanApiKeyUsageDetailResponse
|
|
221
|
+
kwargs["headers"] = request.headers
|
|
222
|
+
kwargs["opts"] = opts or {}
|
|
223
|
+
|
|
224
|
+
return await self.call_and_deserialize(**kwargs)
|
|
225
|
+
|
|
226
|
+
async def DescribeTokenPlanList(
|
|
227
|
+
self,
|
|
228
|
+
request: models.DescribeTokenPlanListRequest,
|
|
229
|
+
opts: Dict = None,
|
|
230
|
+
) -> models.DescribeTokenPlanListResponse:
|
|
231
|
+
"""
|
|
232
|
+
查询 TokenPlan 套餐列表。
|
|
233
|
+
|
|
234
|
+
支持分页、过滤和排序。主账号可查看全部,子账号仅可查看自己创建的。返回结果包含每个套餐关联的额度中心主额度包详情。
|
|
235
|
+
"""
|
|
236
|
+
|
|
237
|
+
kwargs = {}
|
|
238
|
+
kwargs["action"] = "DescribeTokenPlanList"
|
|
239
|
+
kwargs["params"] = request._serialize()
|
|
240
|
+
kwargs["resp_cls"] = models.DescribeTokenPlanListResponse
|
|
241
|
+
kwargs["headers"] = request.headers
|
|
242
|
+
kwargs["opts"] = opts or {}
|
|
243
|
+
|
|
244
|
+
return await self.call_and_deserialize(**kwargs)
|
|
245
|
+
|
|
246
|
+
async def DescribeUsageRankList(
|
|
247
|
+
self,
|
|
248
|
+
request: models.DescribeUsageRankListRequest,
|
|
249
|
+
opts: Dict = None,
|
|
250
|
+
) -> models.DescribeUsageRankListResponse:
|
|
251
|
+
"""
|
|
252
|
+
查询用量排行列表。
|
|
253
|
+
|
|
254
|
+
按 apikey、endpoint、model 三个维度统计指定时间窗内的用量排行,返回顶部数据卡所需的 PageStats/TotalStats、左侧 Top 列表(含每对象整段累计值)、右侧色块趋势图所需的逐点曲线。前端通过 Offset 翻页、ShowAll 切换 CSV 全量导出模式。
|
|
255
|
+
|
|
256
|
+
MetricType 字段用于切换指标族,本期支持 tokens;接口预留以支持后续指标族扩展。响应回显 MetricType 与 MetricKeys(实际参与渲染的 metric key 列表,顺序固定 [Total, Input, Output]),前端按此渲染顶部数据卡与趋势图,无需硬编码 key 名。
|
|
257
|
+
"""
|
|
258
|
+
|
|
259
|
+
kwargs = {}
|
|
260
|
+
kwargs["action"] = "DescribeUsageRankList"
|
|
261
|
+
kwargs["params"] = request._serialize()
|
|
262
|
+
kwargs["resp_cls"] = models.DescribeUsageRankListResponse
|
|
263
|
+
kwargs["headers"] = request.headers
|
|
264
|
+
kwargs["opts"] = opts or {}
|
|
265
|
+
|
|
266
|
+
return await self.call_and_deserialize(**kwargs)
|
|
267
|
+
|
|
268
|
+
async def ModifyTokenPlanApiKey(
|
|
269
|
+
self,
|
|
270
|
+
request: models.ModifyTokenPlanApiKeyRequest,
|
|
271
|
+
opts: Dict = None,
|
|
272
|
+
) -> models.ModifyTokenPlanApiKeyResponse:
|
|
273
|
+
"""
|
|
274
|
+
修改 TokenPlan APIKey 配置(网关关注字段)。
|
|
275
|
+
|
|
276
|
+
修改后自动通知网关更新缓存并同步额度中心。
|
|
277
|
+
"""
|
|
278
|
+
|
|
279
|
+
kwargs = {}
|
|
280
|
+
kwargs["action"] = "ModifyTokenPlanApiKey"
|
|
281
|
+
kwargs["params"] = request._serialize()
|
|
282
|
+
kwargs["resp_cls"] = models.ModifyTokenPlanApiKeyResponse
|
|
283
|
+
kwargs["headers"] = request.headers
|
|
284
|
+
kwargs["opts"] = opts or {}
|
|
285
|
+
|
|
286
|
+
return await self.call_and_deserialize(**kwargs)
|
|
287
|
+
|
|
288
|
+
async def ModifyTokenPlanApiKeySecret(
|
|
289
|
+
self,
|
|
290
|
+
request: models.ModifyTokenPlanApiKeySecretRequest,
|
|
291
|
+
opts: Dict = None,
|
|
292
|
+
) -> models.ModifyTokenPlanApiKeySecretResponse:
|
|
293
|
+
"""
|
|
294
|
+
重置 TokenPlan APIKey 密钥。
|
|
295
|
+
|
|
296
|
+
重新生成密钥值,密钥版本号递增,旧密钥立即失效。APIKey ID 不变。重置后需通过 DescribeTokenPlanApiKeySecret 查询新密钥。
|
|
297
|
+
"""
|
|
298
|
+
|
|
299
|
+
kwargs = {}
|
|
300
|
+
kwargs["action"] = "ModifyTokenPlanApiKeySecret"
|
|
301
|
+
kwargs["params"] = request._serialize()
|
|
302
|
+
kwargs["resp_cls"] = models.ModifyTokenPlanApiKeySecretResponse
|
|
303
|
+
kwargs["headers"] = request.headers
|
|
304
|
+
kwargs["opts"] = opts or {}
|
|
305
|
+
|
|
306
|
+
return await self.call_and_deserialize(**kwargs)
|
|
307
|
+
|
|
308
|
+
async def RenewTokenPlanTeamOrder(
|
|
309
|
+
self,
|
|
310
|
+
request: models.RenewTokenPlanTeamOrderRequest,
|
|
311
|
+
opts: Dict = None,
|
|
312
|
+
) -> models.RenewTokenPlanTeamOrderResponse:
|
|
313
|
+
"""
|
|
314
|
+
续费套餐。
|
|
315
|
+
|
|
316
|
+
对已有的 TokenPlan 套餐发起续费下单并完成支付,成功后返回大订单 ID 及关联的子订单、资源信息。
|
|
317
|
+
"""
|
|
318
|
+
|
|
319
|
+
kwargs = {}
|
|
320
|
+
kwargs["action"] = "RenewTokenPlanTeamOrder"
|
|
321
|
+
kwargs["params"] = request._serialize()
|
|
322
|
+
kwargs["resp_cls"] = models.RenewTokenPlanTeamOrderResponse
|
|
323
|
+
kwargs["headers"] = request.headers
|
|
324
|
+
kwargs["opts"] = opts or {}
|
|
325
|
+
|
|
326
|
+
return await self.call_and_deserialize(**kwargs)
|
|
327
|
+
|
|
328
|
+
async def UpgradeTokenPlanTeamOrder(
|
|
329
|
+
self,
|
|
330
|
+
request: models.UpgradeTokenPlanTeamOrderRequest,
|
|
331
|
+
opts: Dict = None,
|
|
332
|
+
) -> models.UpgradeTokenPlanTeamOrderResponse:
|
|
333
|
+
"""
|
|
334
|
+
升配套餐。
|
|
335
|
+
|
|
336
|
+
对已有的 TokenPlan 套餐发起升配下单并完成支付,扩容积分或 Token 额度,成功后返回大订单 ID 及关联的子订单、资源信息。新额度必须大于当前额度。
|
|
337
|
+
"""
|
|
338
|
+
|
|
339
|
+
kwargs = {}
|
|
340
|
+
kwargs["action"] = "UpgradeTokenPlanTeamOrder"
|
|
341
|
+
kwargs["params"] = request._serialize()
|
|
342
|
+
kwargs["resp_cls"] = models.UpgradeTokenPlanTeamOrderResponse
|
|
343
|
+
kwargs["headers"] = request.headers
|
|
344
|
+
kwargs["opts"] = opts or {}
|
|
345
|
+
|
|
346
|
+
return await self.call_and_deserialize(**kwargs)
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tencentcloud-sdk-python-tokenhub
|
|
3
|
+
Version: 3.1.106
|
|
4
|
+
Summary: Tencent Cloud Tokenhub SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.106
|
|
19
|
+
|
|
20
|
+
============================
|
|
21
|
+
Tencent Cloud SDK for Python
|
|
22
|
+
============================
|
|
23
|
+
|
|
24
|
+
Tencent Cloud Python Tokenhub SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
25
|
+
The SDK works on Python versions:
|
|
26
|
+
|
|
27
|
+
* 2.7 and greater, including 3.x
|
|
28
|
+
|
|
29
|
+
Quick Start
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
First, install the library:
|
|
33
|
+
|
|
34
|
+
.. code-block:: sh
|
|
35
|
+
|
|
36
|
+
$ pip install tencentcloud-sdk-python-common
|
|
37
|
+
$ pip install tencentcloud-sdk-python-tokenhub
|
|
38
|
+
|
|
39
|
+
or download source code from github and install:
|
|
40
|
+
|
|
41
|
+
.. code-block:: sh
|
|
42
|
+
|
|
43
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
44
|
+
$ cd tencentcloud-sdk-python
|
|
45
|
+
$ python package.py --components common tokenhub
|
|
46
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=NnhqlJlkdALH49n6wVHJgZsZTZ5ZqRT6-bJscLnyLNw,630
|
|
2
|
+
tencentcloud/tokenhub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/tokenhub/v20260322/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/tokenhub/v20260322/errorcodes.py,sha256=LP9PbP5xI6k6L7L1R_XB8T4nC17f-te0kwMvnxN2RaQ,1857
|
|
5
|
+
tencentcloud/tokenhub/v20260322/models.py,sha256=blY6StXHkHX3EzJI6jVOxzEN-CF-Xfc2s3SNAO5I1gE,148717
|
|
6
|
+
tencentcloud/tokenhub/v20260322/tokenhub_client.py,sha256=QhQmXatX4iTfPNP4H_YV6UX-jYZTpbegP00daTuoV9o,18335
|
|
7
|
+
tencentcloud/tokenhub/v20260322/tokenhub_client_async.py,sha256=F7d3G2e9Y_QVBRtZDZi1thjYzFFhgMB73jvmHogfLd8,13206
|
|
8
|
+
tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/METADATA,sha256=A50TcfdSbmPa2g9vgOnA9P7p3WIDf53r-QPCpgzO9xU,1522
|
|
9
|
+
tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
|
|
10
|
+
tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_tokenhub-3.1.106.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud
|