tccli-intl-en 3.0.1264.1__py2.py3-none-any.whl → 3.0.1265.1__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.
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1264.1'
1
+ __version__ = '3.0.1265.1'
@@ -2149,6 +2149,58 @@ def doRollbackDataEngineImage(args, parsed_globals):
2149
2149
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2150
2150
 
2151
2151
 
2152
+ def doDescribeSessionImageVersion(args, parsed_globals):
2153
+ g_param = parse_global_arg(parsed_globals)
2154
+
2155
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
2156
+ cred = credential.CVMRoleCredential()
2157
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
2158
+ cred = credential.STSAssumeRoleCredential(
2159
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
2160
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
2161
+ )
2162
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
2163
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
2164
+ else:
2165
+ cred = credential.Credential(
2166
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
2167
+ )
2168
+ http_profile = HttpProfile(
2169
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
2170
+ reqMethod="POST",
2171
+ endpoint=g_param[OptionsDefine.Endpoint],
2172
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
2173
+ )
2174
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
2175
+ if g_param[OptionsDefine.Language]:
2176
+ profile.language = g_param[OptionsDefine.Language]
2177
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
2178
+ client = mod.DlcClient(cred, g_param[OptionsDefine.Region], profile)
2179
+ client._sdkVersion += ("_CLI_" + __version__)
2180
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
2181
+ model = models.DescribeSessionImageVersionRequest()
2182
+ model.from_json_string(json.dumps(args))
2183
+ start_time = time.time()
2184
+ while True:
2185
+ rsp = client.DescribeSessionImageVersion(model)
2186
+ result = rsp.to_json_string()
2187
+ try:
2188
+ json_obj = json.loads(result)
2189
+ except TypeError as e:
2190
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
2191
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
2192
+ break
2193
+ cur_time = time.time()
2194
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
2195
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
2196
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
2197
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
2198
+ else:
2199
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
2200
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
2201
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2202
+
2203
+
2152
2204
  def doDescribeSubUserAccessPolicy(args, parsed_globals):
2153
2205
  g_param = parse_global_arg(parsed_globals)
2154
2206
 
@@ -5425,6 +5477,7 @@ ACTION_MAP = {
5425
5477
  "CreateSparkApp": doCreateSparkApp,
5426
5478
  "DescribeThirdPartyAccessUser": doDescribeThirdPartyAccessUser,
5427
5479
  "RollbackDataEngineImage": doRollbackDataEngineImage,
5480
+ "DescribeSessionImageVersion": doDescribeSessionImageVersion,
5428
5481
  "DescribeSubUserAccessPolicy": doDescribeSubUserAccessPolicy,
5429
5482
  "DescribeDLCTableList": doDescribeDLCTableList,
5430
5483
  "CreateSparkSessionBatchSQL": doCreateSparkSessionBatchSQL,
@@ -364,6 +364,13 @@
364
364
  "output": "DescribeResultDownloadResponse",
365
365
  "status": "online"
366
366
  },
367
+ "DescribeSessionImageVersion": {
368
+ "document": "This API is used to retrieve all built-in images of all minor versions under a specified major version.",
369
+ "input": "DescribeSessionImageVersionRequest",
370
+ "name": "Retrieve built-in mirror information",
371
+ "output": "DescribeSessionImageVersionResponse",
372
+ "status": "online"
373
+ },
367
374
  "DescribeSparkAppJob": {
368
375
  "document": "u200cThis API is used to query the information of a Spark job.",
369
376
  "input": "DescribeSparkAppJobRequest",
@@ -6326,6 +6333,52 @@
6326
6333
  ],
6327
6334
  "type": "object"
6328
6335
  },
6336
+ "DescribeSessionImageVersionRequest": {
6337
+ "document": "DescribeSessionImageVersion request structure.",
6338
+ "members": [
6339
+ {
6340
+ "disabled": false,
6341
+ "document": "Engine Id.",
6342
+ "example": "DataEngine-e482ijv6",
6343
+ "member": "string",
6344
+ "name": "DataEngineId",
6345
+ "required": true,
6346
+ "type": "string"
6347
+ },
6348
+ {
6349
+ "disabled": false,
6350
+ "document": "Framework type: machine-learning, python, spark-ml.",
6351
+ "example": "machine-learning",
6352
+ "member": "string",
6353
+ "name": "FrameworkType",
6354
+ "required": true,
6355
+ "type": "string"
6356
+ }
6357
+ ],
6358
+ "type": "object"
6359
+ },
6360
+ "DescribeSessionImageVersionResponse": {
6361
+ "document": "DescribeSessionImageVersion response structure.",
6362
+ "members": [
6363
+ {
6364
+ "disabled": false,
6365
+ "document": "Expands the image list.\nNote: This field may return null, indicating that no valid values can be obtained.",
6366
+ "example": "无",
6367
+ "member": "EngineSessionImage",
6368
+ "name": "EngineSessionImages",
6369
+ "output_required": true,
6370
+ "type": "list",
6371
+ "value_allowed_null": true
6372
+ },
6373
+ {
6374
+ "document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
6375
+ "member": "string",
6376
+ "name": "RequestId",
6377
+ "type": "string"
6378
+ }
6379
+ ],
6380
+ "type": "object"
6381
+ },
6329
6382
  "DescribeSparkAppJobRequest": {
6330
6383
  "document": "DescribeSparkAppJob request structure.",
6331
6384
  "members": [
@@ -7966,6 +8019,56 @@
7966
8019
  ],
7967
8020
  "type": "object"
7968
8021
  },
8022
+ "EngineSessionImage": {
8023
+ "document": "TensorFlow, Pytorch, SK-learn image information list.",
8024
+ "members": [
8025
+ {
8026
+ "disabled": false,
8027
+ "document": "Specifies the unique id of the Spark mirror.\nNote: This field may return null, indicating that no valid values can be obtained.",
8028
+ "example": "无",
8029
+ "member": "string",
8030
+ "name": "SparkImageId",
8031
+ "output_required": true,
8032
+ "required": false,
8033
+ "type": "string",
8034
+ "value_allowed_null": true
8035
+ },
8036
+ {
8037
+ "disabled": false,
8038
+ "document": "Spark image version name.\nNote: This field may return null, indicating that no valid values can be obtained.",
8039
+ "example": "无",
8040
+ "member": "string",
8041
+ "name": "SparkImageVersion",
8042
+ "output_required": true,
8043
+ "required": false,
8044
+ "type": "string",
8045
+ "value_allowed_null": true
8046
+ },
8047
+ {
8048
+ "disabled": false,
8049
+ "document": "Minor version image type. 1: TensorFlow, 2: Pytorch, 3: SK-learn.\n\nNote: This field may return null, indicating that no valid values can be obtained.",
8050
+ "example": "1",
8051
+ "member": "int64",
8052
+ "name": "SparkImageType",
8053
+ "output_required": true,
8054
+ "required": false,
8055
+ "type": "int",
8056
+ "value_allowed_null": true
8057
+ },
8058
+ {
8059
+ "disabled": false,
8060
+ "document": "Image address.\n\nNote: This field may return null, indicating that no valid values can be obtained.",
8061
+ "example": "无",
8062
+ "member": "string",
8063
+ "name": "SparkImageTag",
8064
+ "output_required": true,
8065
+ "required": false,
8066
+ "type": "string",
8067
+ "value_allowed_null": true
8068
+ }
8069
+ ],
8070
+ "usage": "both"
8071
+ },
7969
8072
  "Execution": {
7970
8073
  "document": "SQL statement objects",
7971
8074
  "members": [
@@ -422,6 +422,14 @@
422
422
  "title": "Example 1"
423
423
  }
424
424
  ],
425
+ "DescribeSessionImageVersion": [
426
+ {
427
+ "document": "Current engine: DataEngine-b0jt6fvk\nThis example shows you how to choose machine-learning as the framework type.",
428
+ "input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeSessionImageVersion\n<Common request parameters>\n\n{\n \"DataEngineId\": \"DataEngine-b0jt6fvk\",\n \"FrameworkType\": \"machine-learning\"\n}",
429
+ "output": "{\n \"Response\": {\n \"EngineSessionImages\": [\n {\n \"SparkImageId\": \"123e4567-e89b-12d3-a456-426614174001\",\n \"SparkImageTag\": \"ccr.ccs.tencentyun.com/dlc_cloud/tensorflow:dev-v20241218\",\n \"SparkImageType\": 1,\n \"SparkImageVersion\": \"tensorflow-v2.18.0\"\n },\n {\n \"SparkImageId\": \"1a2b3c4d-5e6f-7g8h-9i0j-k1l2m3n4o5p6\",\n \"SparkImageTag\": \"ccr.ccs.tencentyun.com/dlc_cloud/scikit-learn:dev-v20241218\",\n \"SparkImageType\": 1,\n \"SparkImageVersion\": \"scikit-learn-v1.6.0\"\n },\n {\n \"SparkImageId\": \"98765432-10fe-bcd1-9a8b-0123456789ab\",\n \"SparkImageTag\": \"ccr.ccs.tencentyun.com/dlc_cloud/pytorch:dev-v20241218\",\n \"SparkImageType\": 1,\n \"SparkImageVersion\": \"pytorch-v2.5.1\"\n }\n ],\n \"RequestId\": \"c06478c4-bbc6-4cec-934b-6f9e2ff121ae\"\n }\n}",
430
+ "title": "Built-In Image"
431
+ }
432
+ ],
425
433
  "DescribeSparkAppJob": [
426
434
  {
427
435
  "document": "This example shows you how to query the information of a Spark job.",
@@ -4708,7 +4708,7 @@
4708
4708
  {
4709
4709
  "disabled": false,
4710
4710
  "document": "Initiate fuzzy recognition to replace additional language types. Fill in up to 3 language types. Note: When Language is specified as \"zh-dialect\", fuzzy recognition is not supported and this field is invalid.",
4711
- "example": "",
4711
+ "example": "[\"en\",\"jp\"]",
4712
4712
  "member": "string",
4713
4713
  "name": "AlternativeLanguage",
4714
4714
  "required": false,
@@ -5416,7 +5416,7 @@
5416
5416
  {
5417
5417
  "disabled": false,
5418
5418
  "document": "TRTC's [SdkAppId](https://cloud.tencent.com/document/product/647/46351#sdkappid) is the same as the SdkAppId used by the room that starts the transcription task.",
5419
- "example": "",
5419
+ "example": "14600000",
5420
5420
  "member": "uint64",
5421
5421
  "name": "SdkAppId",
5422
5422
  "required": true,
@@ -5425,7 +5425,7 @@
5425
5425
  {
5426
5426
  "disabled": false,
5427
5427
  "document": "TRTC's [RoomId](https://cloud.tencent.com/document/product/647/46351#roomid), which indicates the room number where the transcription task is started.",
5428
- "example": "",
5428
+ "example": "11",
5429
5429
  "member": "string",
5430
5430
  "name": "RoomId",
5431
5431
  "required": true,
@@ -5443,7 +5443,7 @@
5443
5443
  {
5444
5444
  "disabled": false,
5445
5445
  "document": "The unique ID passed by the caller is used by the server to deduplicate. Note: If this parameter is passed, the server will use it first to deduplicate. If this parameter is not passed, the server's deduplication strategy is as follows: \n- If the TranscriptionMode field is 0, only one task can be opened in a room\n- If the TranscriptionMode field is 1, only one task can be opened in a TargetUserId",
5446
- "example": "",
5446
+ "example": "session_1",
5447
5447
  "member": "string",
5448
5448
  "name": "SessionId",
5449
5449
  "required": false,
@@ -5452,7 +5452,7 @@
5452
5452
  {
5453
5453
  "disabled": false,
5454
5454
  "document": "The type of TRTC room number. 0 represents a numeric room number, and 1 represents a string room number. If not filled in, the default is a numeric room number.",
5455
- "example": "",
5455
+ "example": "0",
5456
5456
  "member": "uint64",
5457
5457
  "name": "RoomIdType",
5458
5458
  "required": false,
@@ -5466,6 +5466,15 @@
5466
5466
  "name": "RecognizeConfig",
5467
5467
  "required": false,
5468
5468
  "type": "object"
5469
+ },
5470
+ {
5471
+ "disabled": false,
5472
+ "document": "Translation config.",
5473
+ "example": "无",
5474
+ "member": "TranslationConfig",
5475
+ "name": "TranslationConfig",
5476
+ "required": false,
5477
+ "type": "object"
5469
5478
  }
5470
5479
  ],
5471
5480
  "type": "object"
@@ -6261,6 +6270,23 @@
6261
6270
  ],
6262
6271
  "usage": "out"
6263
6272
  },
6273
+ "TTSConfig": {
6274
+ "document": "",
6275
+ "members": [
6276
+ {
6277
+ "disabled": false,
6278
+ "document": "",
6279
+ "example": "xiaoming",
6280
+ "member": "string",
6281
+ "name": "VoiceId",
6282
+ "output_required": false,
6283
+ "required": true,
6284
+ "type": "string",
6285
+ "value_allowed_null": false
6286
+ }
6287
+ ],
6288
+ "usage": "both"
6289
+ },
6264
6290
  "TencentVod": {
6265
6291
  "document": "The Tencent Cloud VOD parameters.",
6266
6292
  "members": [
@@ -6348,6 +6374,34 @@
6348
6374
  ],
6349
6375
  "usage": "in"
6350
6376
  },
6377
+ "Terminology": {
6378
+ "document": "Translation terminology",
6379
+ "members": [
6380
+ {
6381
+ "disabled": false,
6382
+ "document": "Source terminology",
6383
+ "example": "腾讯云",
6384
+ "member": "string",
6385
+ "name": "Source",
6386
+ "output_required": false,
6387
+ "required": true,
6388
+ "type": "string",
6389
+ "value_allowed_null": false
6390
+ },
6391
+ {
6392
+ "disabled": false,
6393
+ "document": "Target terminology",
6394
+ "example": "Tencent Cloud",
6395
+ "member": "string",
6396
+ "name": "Target",
6397
+ "output_required": false,
6398
+ "required": true,
6399
+ "type": "string",
6400
+ "value_allowed_null": false
6401
+ }
6402
+ ],
6403
+ "usage": "both"
6404
+ },
6351
6405
  "TimeValue": {
6352
6406
  "document": "The quality data, which consists of the `time` and `value` parameters.",
6353
6407
  "members": [
@@ -6380,7 +6434,7 @@
6380
6434
  {
6381
6435
  "disabled": false,
6382
6436
  "document": "The robot's UserId is used to enter a room and initiate tasks. [Note] This UserId cannot be repeated with the host viewer [UserId](https://cloud.tencent.com/document/product/647/46351#userid) in the current room. If multiple tasks are initiated in a room, the robot's UserId cannot be repeated, otherwise the previous task will be interrupted. The robot's UserId must be unique in the room.",
6383
- "example": "user123",
6437
+ "example": "user329",
6384
6438
  "member": "string",
6385
6439
  "name": "UserId",
6386
6440
  "required": true,
@@ -6389,7 +6443,7 @@
6389
6443
  {
6390
6444
  "disabled": false,
6391
6445
  "document": "The verification signature corresponding to the robot's UserId, that is, UserId and UserSig are equivalent to the robot's login password to enter the room. For the specific calculation method, please refer to the TRTC calculation [UserSig](https://cloud.tencent.com/document/product/647/45910#UserSig) solution.",
6392
- "example": "",
6446
+ "example": "egjirneiwrwq",
6393
6447
  "member": "string",
6394
6448
  "name": "UserSig",
6395
6449
  "required": true,
@@ -6398,7 +6452,7 @@
6398
6452
  {
6399
6453
  "disabled": false,
6400
6454
  "document": "If there is no streaming in the room for more than MaxIdleTime, the background will automatically close the task. The default value is 60s.",
6401
- "example": "",
6455
+ "example": "60",
6402
6456
  "member": "uint64",
6403
6457
  "name": "MaxIdleTime",
6404
6458
  "required": false,
@@ -6407,7 +6461,7 @@
6407
6461
  {
6408
6462
  "disabled": false,
6409
6463
  "document": "1 means the robot subscribes to the stream of only one person, 0 means the robot subscribes to the stream of the entire room. If it is not filled in, the robot subscribes to the stream of the entire room by default.",
6410
- "example": "",
6464
+ "example": "1",
6411
6465
  "member": "uint64",
6412
6466
  "name": "TranscriptionMode",
6413
6467
  "required": false,
@@ -6416,7 +6470,7 @@
6416
6470
  {
6417
6471
  "disabled": false,
6418
6472
  "document": "Required when TranscriptionMode is 1. The robot will only pull the stream of the userid and ignore other users in the room.",
6419
- "example": "",
6473
+ "example": "user219",
6420
6474
  "member": "string",
6421
6475
  "name": "TargetUserId",
6422
6476
  "required": false,
@@ -6425,6 +6479,56 @@
6425
6479
  ],
6426
6480
  "usage": "in"
6427
6481
  },
6482
+ "TranslationConfig": {
6483
+ "document": "Translation config",
6484
+ "members": [
6485
+ {
6486
+ "disabled": false,
6487
+ "document": "Target language, target language list (ISO 639-1).",
6488
+ "example": "[\"en\", \"ja\"]",
6489
+ "member": "string",
6490
+ "name": "TargetLanguages",
6491
+ "output_required": false,
6492
+ "required": true,
6493
+ "type": "list",
6494
+ "value_allowed_null": false
6495
+ },
6496
+ {
6497
+ "disabled": false,
6498
+ "document": "1: Only text translation, 2: Voice simultaneous interpretation.",
6499
+ "example": "2",
6500
+ "member": "uint64",
6501
+ "name": "Mode",
6502
+ "output_required": false,
6503
+ "required": false,
6504
+ "type": "int",
6505
+ "value_allowed_null": false
6506
+ },
6507
+ {
6508
+ "disabled": false,
6509
+ "document": "Voice simultaneous interpretation configuration: When enabling simultaneous interpretation, this parameter needs to be passed.",
6510
+ "example": "无",
6511
+ "member": "TTSConfig",
6512
+ "name": "TTSConfig",
6513
+ "output_required": false,
6514
+ "required": false,
6515
+ "type": "object",
6516
+ "value_allowed_null": false
6517
+ },
6518
+ {
6519
+ "disabled": false,
6520
+ "document": "Translation terminology.",
6521
+ "example": "无",
6522
+ "member": "Terminology",
6523
+ "name": "Terminology",
6524
+ "output_required": false,
6525
+ "required": false,
6526
+ "type": "list",
6527
+ "value_allowed_null": false
6528
+ }
6529
+ ],
6530
+ "usage": "both"
6531
+ },
6428
6532
  "TrtcUsage": {
6429
6533
  "document": "The TRTC audio/video duration generated in a certain time period.",
6430
6534
  "members": [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli-intl-en
3
- Version: 3.0.1264.1
3
+ Version: 3.0.1265.1
4
4
  Summary: Universal Command Line Environment for Tencent Cloud
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-cli-intl-en.git
6
6
  Author: Tencent Cloud
@@ -22,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.4
22
22
  Classifier: Programming Language :: Python :: 3.5
23
23
  Classifier: Programming Language :: Python :: 3.6
24
24
  License-File: LICENSE
25
- Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.1264)
25
+ Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.1265)
26
26
  Requires-Dist: jmespath (==0.10.0)
27
27
  Requires-Dist: six (==1.16.0)
28
28
 
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=NVBIE1Ikjj8bgpo4DK4ss48hqpRN5Aw7SEqPrd4tZyk,28
1
+ tccli/__init__.py,sha256=zlS7BO_BfmfkoFF24Vxn6IPYf23PXsvuwthh5NWSfrE,28
2
2
  tccli/argparser.py,sha256=WtfpBhj2R6JHSzagy6w6Q4y3YVmyIC_yK80w3tqBPgU,5589
3
3
  tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
4
4
  tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
@@ -231,9 +231,9 @@ tccli/services/dcdb/dcdb_client.py,sha256=e_yRwF1h9V4QLq6GsAQswSr5zuVNoPWK3wFScJ
231
231
  tccli/services/dcdb/v20180411/api.json,sha256=selQohyR_GwMEPGeqE2lVZwAM2AQ30OYZBITl_Nk_O8,281685
232
232
  tccli/services/dcdb/v20180411/examples.json,sha256=dCi7LgfeCNnkctIS5i318JzC_Miey6_nk8OJYahzq8Y,59180
233
233
  tccli/services/dlc/__init__.py,sha256=Pt7cRkf9EvW5Zp2SZeVE-_cF_YHO7ORkFXK7qsTnkiA,85
234
- tccli/services/dlc/dlc_client.py,sha256=jMW0qYusGdzzkeDz7LL3xHj1yUSs0Bb-kAxvKcBDxYw,325072
235
- tccli/services/dlc/v20210125/api.json,sha256=PAKRda6wTOB44GukllqiM4Puc2V4ll5MPbsJSKRokW8,477846
236
- tccli/services/dlc/v20210125/examples.json,sha256=mS2rC4INpV6387cbVQd8AC-Fcl9ien8eZ_Caty8hoC8,121394
234
+ tccli/services/dlc/dlc_client.py,sha256=oBNRtWqKZeDtaKKzGXnMLNlhTAiaf5mS3kYvsafJL8c,328204
235
+ tccli/services/dlc/v20210125/api.json,sha256=OVOj5MeIftp8U2mJsy6vaqJY8vvZtOtIc51g6SwH3aw,481674
236
+ tccli/services/dlc/v20210125/examples.json,sha256=NUiI_voFGFGaXwTjiVIWKCZdsw0NLq18iixK_JZ6cyY,122988
237
237
  tccli/services/dms/__init__.py,sha256=kN-W4gKbBYr7EYBQdeWGtOgloxgIavhEH0jMyPd5ooY,85
238
238
  tccli/services/dms/dms_client.py,sha256=mti8mlqbMM8ZE7XcHHYTz_tQFTujRLuf56dw4TOJ9nw,12250
239
239
  tccli/services/dms/v20200819/api.json,sha256=MJC2K2Fhnml5wKyYMhXOuzaLwgdPF2nlToyn60PX-ZA,4582
@@ -548,7 +548,7 @@ tccli/services/trro/v20220325/api.json,sha256=sKxoJp0XV6RfdPHSvJjA6c-HbR1Sp5WU63
548
548
  tccli/services/trro/v20220325/examples.json,sha256=15rCCu2A8zMG3EE5G5SJ1GBq-Rokk1XTR2DATNB_Ja0,16031
549
549
  tccli/services/trtc/__init__.py,sha256=7xXIF66WdJHGVIhfHKFx2VYimlxZ_z3QOeJBUJ2P_MQ,87
550
550
  tccli/services/trtc/trtc_client.py,sha256=bXKlxAuDobWLSirxbOWQda6Wg_HuAfX8upEij9G6ydg,164136
551
- tccli/services/trtc/v20190722/api.json,sha256=MHGsauv9bs85K5WNCf7-dSO_WJyF08heK32jlK0rtzI,315493
551
+ tccli/services/trtc/v20190722/api.json,sha256=SmMw3n7ic-tNh231O8Km5PbPTDbVxuhfA7uzEbwbF00,318519
552
552
  tccli/services/trtc/v20190722/examples.json,sha256=5wcLsply74krqIQ93SveAIeEoGDmnEptLxjhWQu3s4Q,96797
553
553
  tccli/services/tts/__init__.py,sha256=W0RaInrUSxJI_CjeXr9PUINXeopAR8LUj72n-p8UhII,85
554
554
  tccli/services/tts/tts_client.py,sha256=pOi-StGWpyn_-USp_DtUqXla6sF0FZcfc3_6PcJptKE,9173
@@ -586,9 +586,9 @@ tccli/services/yunjing/__init__.py,sha256=8HTKN8_ow1j67tspqAbBMQgeteXAagLvtb9WAf
586
586
  tccli/services/yunjing/yunjing_client.py,sha256=Vh5vFOLjDJ53q_RX9WADwLT610kGcUxwCmtny95k3js,226485
587
587
  tccli/services/yunjing/v20180228/api.json,sha256=zYojacZyPgPCi71CLBjuHsQR9mIxcZjCX5JwA9TYr1s,173428
588
588
  tccli/services/yunjing/v20180228/examples.json,sha256=j3GL3TtNTkZpNLlksz0nJNCVDxYGUqfRqOt94Y-P8OE,58723
589
- tccli_intl_en-3.0.1264.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
590
- tccli_intl_en-3.0.1264.1.dist-info/METADATA,sha256=sKObIz-VMvWvago-64RgW6CxgitUPrUv45m3a2Ajh6U,3092
591
- tccli_intl_en-3.0.1264.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
592
- tccli_intl_en-3.0.1264.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
593
- tccli_intl_en-3.0.1264.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
594
- tccli_intl_en-3.0.1264.1.dist-info/RECORD,,
589
+ tccli_intl_en-3.0.1265.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
590
+ tccli_intl_en-3.0.1265.1.dist-info/METADATA,sha256=z7dujzjrZw-GKmj5DU6OPyE4n4BTOZArooUbNHGNA3g,3092
591
+ tccli_intl_en-3.0.1265.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
592
+ tccli_intl_en-3.0.1265.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
593
+ tccli_intl_en-3.0.1265.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
594
+ tccli_intl_en-3.0.1265.1.dist-info/RECORD,,