tccli 3.0.1172.1__py2.py3-none-any.whl → 3.0.1173.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- tccli/__init__.py +1 -1
- tccli/services/dlc/v20210125/api.json +137 -19
- tccli/services/dlc/v20210125/examples.json +6 -6
- tccli/services/ess/ess_client.py +57 -4
- tccli/services/ess/v20201111/api.json +138 -0
- tccli/services/ess/v20201111/examples.json +8 -0
- tccli/services/essbasic/v20210526/api.json +11 -0
- tccli/services/goosefs/v20220519/api.json +56 -11
- tccli/services/hunyuan/v20230901/api.json +9 -0
- tccli/services/iss/v20230517/api.json +58 -0
- tccli/services/iss/v20230517/examples.json +13 -7
- tccli/services/mna/mna_client.py +53 -0
- tccli/services/mna/v20210119/api.json +80 -0
- tccli/services/mna/v20210119/examples.json +8 -0
- tccli/services/teo/v20220901/api.json +2 -2
- tccli/services/trtc/v20190722/api.json +22 -0
- {tccli-3.0.1172.1.dist-info → tccli-3.0.1173.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1172.1.dist-info → tccli-3.0.1173.1.dist-info}/RECORD +21 -21
- {tccli-3.0.1172.1.dist-info → tccli-3.0.1173.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1172.1.dist-info → tccli-3.0.1173.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1172.1.dist-info → tccli-3.0.1173.1.dist-info}/license_files/LICENSE +0 -0
@@ -231,6 +231,13 @@
|
|
231
231
|
"output": "OrderFlowPackageResponse",
|
232
232
|
"status": "online"
|
233
233
|
},
|
234
|
+
"OrderPerLicense": {
|
235
|
+
"document": "购买一次性授权License",
|
236
|
+
"input": "OrderPerLicenseRequest",
|
237
|
+
"name": "订购一次性授权License",
|
238
|
+
"output": "OrderPerLicenseResponse",
|
239
|
+
"status": "online"
|
240
|
+
},
|
234
241
|
"SetNotifyUrl": {
|
235
242
|
"document": "设置用户流量告警信息接口,通过该接口设置流量包告警阈值以及告警时回调的url和key",
|
236
243
|
"input": "SetNotifyUrlRequest",
|
@@ -3858,6 +3865,79 @@
|
|
3858
3865
|
],
|
3859
3866
|
"type": "object"
|
3860
3867
|
},
|
3868
|
+
"OrderPerLicenseRequest": {
|
3869
|
+
"document": "OrderPerLicense请求参数结构体",
|
3870
|
+
"members": [
|
3871
|
+
{
|
3872
|
+
"disabled": false,
|
3873
|
+
"document": "购买永久授权License的设备ID,如果是厂商未激活设备采用HardwareId",
|
3874
|
+
"example": "\"mna-test1\"",
|
3875
|
+
"member": "string",
|
3876
|
+
"name": "DeviceId",
|
3877
|
+
"required": true,
|
3878
|
+
"type": "string"
|
3879
|
+
},
|
3880
|
+
{
|
3881
|
+
"disabled": false,
|
3882
|
+
"document": "设备类型,0: SDK,1: CPE,作为用户创建或激活设备时传0,作为厂商创建待激活设备时传1",
|
3883
|
+
"example": "0",
|
3884
|
+
"member": "int64",
|
3885
|
+
"name": "Type",
|
3886
|
+
"required": true,
|
3887
|
+
"type": "int"
|
3888
|
+
},
|
3889
|
+
{
|
3890
|
+
"disabled": false,
|
3891
|
+
"document": "购买失败后是否回滚(删除)设备,默认true,如果设备绑定了生效中的流量包则不能回滚。",
|
3892
|
+
"example": "true",
|
3893
|
+
"member": "bool",
|
3894
|
+
"name": "RollBack",
|
3895
|
+
"required": false,
|
3896
|
+
"type": "bool"
|
3897
|
+
},
|
3898
|
+
{
|
3899
|
+
"disabled": false,
|
3900
|
+
"document": "是否自动选择代金券,默认false。\n有多张券时的选择策略:按照可支付订单全部金额的券,先到期的券,可抵扣金额最大的券,余额最小的券,现金券 这个优先级进行扣券,且最多只抵扣一张券。",
|
3901
|
+
"example": "false",
|
3902
|
+
"member": "bool",
|
3903
|
+
"name": "AutoVoucher",
|
3904
|
+
"required": false,
|
3905
|
+
"type": "bool"
|
3906
|
+
},
|
3907
|
+
{
|
3908
|
+
"disabled": false,
|
3909
|
+
"document": "指定代金券ID。自动选择代金券时此参数无效。目前只允许传入一张代金券。\n注:若指定的代金券不符合订单抵扣条件,则正常支付,不扣券",
|
3910
|
+
"example": "[\"OLSKVPGO4KUIU8HFDTEST1\"]",
|
3911
|
+
"member": "string",
|
3912
|
+
"name": "VoucherIds",
|
3913
|
+
"required": false,
|
3914
|
+
"type": "list"
|
3915
|
+
}
|
3916
|
+
],
|
3917
|
+
"type": "object"
|
3918
|
+
},
|
3919
|
+
"OrderPerLicenseResponse": {
|
3920
|
+
"document": "OrderPerLicense返回参数结构体",
|
3921
|
+
"members": [
|
3922
|
+
{
|
3923
|
+
"disabled": false,
|
3924
|
+
"document": "一次性授权License的资源ID",
|
3925
|
+
"example": "56d11777-50f7-4c60-9c89-e7076c8529a9-0",
|
3926
|
+
"member": "string",
|
3927
|
+
"name": "ResourceId",
|
3928
|
+
"output_required": true,
|
3929
|
+
"type": "string",
|
3930
|
+
"value_allowed_null": false
|
3931
|
+
},
|
3932
|
+
{
|
3933
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
3934
|
+
"member": "string",
|
3935
|
+
"name": "RequestId",
|
3936
|
+
"type": "string"
|
3937
|
+
}
|
3938
|
+
],
|
3939
|
+
"type": "object"
|
3940
|
+
},
|
3861
3941
|
"SetNotifyUrlRequest": {
|
3862
3942
|
"document": "SetNotifyUrl请求参数结构体",
|
3863
3943
|
"members": [
|
@@ -282,6 +282,14 @@
|
|
282
282
|
"title": "示例1"
|
283
283
|
}
|
284
284
|
],
|
285
|
+
"OrderPerLicense": [
|
286
|
+
{
|
287
|
+
"document": "",
|
288
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: OrderPerLicense\n<公共请求参数>\n\n{\n \"DeviceId\": \"abc\",\n \"Type\": 0,\n \"AutoVoucher\": true,\n \"VoucherIds\": [\n \"abc\"\n ]\n}",
|
289
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"1206563f-f13f-4647-aaa8-37fa86954cc4-1\",\n \"ResourceId\": \"56d11777-50f7-4c60-9c89-e7076c8529a9-0\"\n }\n}",
|
290
|
+
"title": "示例1"
|
291
|
+
}
|
292
|
+
],
|
285
293
|
"SetNotifyUrl": [
|
286
294
|
{
|
287
295
|
"document": "",
|
@@ -7574,7 +7574,7 @@
|
|
7574
7574
|
"members": [
|
7575
7575
|
{
|
7576
7576
|
"disabled": false,
|
7577
|
-
"document": "站点ID
|
7577
|
+
"document": "站点ID。该参数必填。",
|
7578
7578
|
"example": "zone-xxx",
|
7579
7579
|
"member": "string",
|
7580
7580
|
"name": "ZoneId",
|
@@ -7619,7 +7619,7 @@
|
|
7619
7619
|
},
|
7620
7620
|
{
|
7621
7621
|
"disabled": false,
|
7622
|
-
"document": "过滤条件,Filters.Values的上限为20。详细的过滤条件如下:<li>job-id
|
7622
|
+
"document": "过滤条件,Filters.Values 的上限为 20。详细的过滤条件如下:<li>job-id:按照任务 ID 进行过滤。job-id 形如:1379afjk91u32h,暂不支持多值,不支持模糊查询;</li><li>target:按照目标资源信息进行过滤。target 形如:http://www.qq.com/1.txt,暂不支持多值,不支持模糊查询;</li><li>domains:按照域名行过滤。domains 形如:www.qq.com,不支持模糊查询;</li><li>statuses:按照任务状态进行过滤,不支持模糊查询。可选项:<br> processing:处理中<br> success:成功<br> failed:失败<br> timeout:超时<br> invalid:无效。即源站响应非 2xx 状态码,请检查源站服务。</li>",
|
7623
7623
|
"example": "无",
|
7624
7624
|
"member": "AdvancedFilter",
|
7625
7625
|
"name": "Filters",
|
@@ -525,6 +525,28 @@
|
|
525
525
|
"required": false,
|
526
526
|
"type": "string",
|
527
527
|
"value_allowed_null": true
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"disabled": false,
|
531
|
+
"document": "智能打断模式,默认为0,0表示服务端自动打断,1表示服务端不打断,由端上发送打断信令进行打断\n注意:此字段可能返回 null,表示取不到有效值。",
|
532
|
+
"example": "无",
|
533
|
+
"member": "uint64",
|
534
|
+
"name": "InterruptMode",
|
535
|
+
"output_required": false,
|
536
|
+
"required": false,
|
537
|
+
"type": "int",
|
538
|
+
"value_allowed_null": true
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"disabled": false,
|
542
|
+
"document": "InterruptMode为0时使用,单位为毫秒,默认为500ms。表示服务端检测到持续InterruptSpeechDuration毫秒的人声则进行打断。\n注意:此字段可能返回 null,表示取不到有效值。",
|
543
|
+
"example": "无",
|
544
|
+
"member": "uint64",
|
545
|
+
"name": "InterruptSpeechDuration",
|
546
|
+
"output_required": false,
|
547
|
+
"required": false,
|
548
|
+
"type": "int",
|
549
|
+
"value_allowed_null": true
|
528
550
|
}
|
529
551
|
],
|
530
552
|
"usage": "both"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1173.1
|
4
4
|
Summary: Universal Command Line Environment for Tencent Cloud
|
5
5
|
Project-URL: Bug Tracker, https://github.com/TencentCloud/tencentcloud-cli/issues
|
6
6
|
Project-URL: Homepage, https://github.com/TencentCloud/tencentcloud-cli
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
14
14
|
Requires-Dist: jmespath==0.10.0
|
15
15
|
Requires-Dist: six==1.16.0
|
16
|
-
Requires-Dist: tencentcloud-sdk-python>=3.0.
|
16
|
+
Requires-Dist: tencentcloud-sdk-python>=3.0.1173
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tccli/__init__.py,sha256=
|
1
|
+
tccli/__init__.py,sha256=OScJoZUdLoa1gaYc8S5XC8EA5WjpnJOXu6bu8HxyzQU,27
|
2
2
|
tccli/argparser.py,sha256=iFaw_iIMdyVwUdcv2_2OHQfe7-7j9yGzoOgXgXswoBo,5555
|
3
3
|
tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
|
4
4
|
tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
|
@@ -374,8 +374,8 @@ tccli/services/dcdb/v20180411/api.json,sha256=ivipZmAvOBO9qr1LjWYMWeH677BmAHJDLe
|
|
374
374
|
tccli/services/dcdb/v20180411/examples.json,sha256=UduKGSVdMIb9gd6yOapjaBcJw9J1KR9Towr-UujSl6g,67066
|
375
375
|
tccli/services/dlc/__init__.py,sha256=Pt7cRkf9EvW5Zp2SZeVE-_cF_YHO7ORkFXK7qsTnkiA,85
|
376
376
|
tccli/services/dlc/dlc_client.py,sha256=KNyIodWjpqy2TSkERCqP7u5CLAOci4i4CDfeo1bRBio,442654
|
377
|
-
tccli/services/dlc/v20210125/api.json,sha256=
|
378
|
-
tccli/services/dlc/v20210125/examples.json,sha256=
|
377
|
+
tccli/services/dlc/v20210125/api.json,sha256=K0lMbD97PtP0g7RVSHzv8-WdD9YGrZsJu9A8amUnbgs,644146
|
378
|
+
tccli/services/dlc/v20210125/examples.json,sha256=r1ajMsSU6b2E8SgPK7_p8z-F-agIyPhLw_rWlvNGZVk,185363
|
379
379
|
tccli/services/dnspod/__init__.py,sha256=4t9Zk1hkia8MrDbtWW-XP9aCXYNWqafFaB1NKh5Ebfc,91
|
380
380
|
tccli/services/dnspod/dnspod_client.py,sha256=Xj98z5cLX3blWlCqfk5jw1eWvH_vtmbqxTRMWfya0iA,234848
|
381
381
|
tccli/services/dnspod/v20210323/api.json,sha256=pcqOX33K0NRJU5CKrTdMNgsb6ztGpHBHVP5G1A8CAWk,293164
|
@@ -441,14 +441,14 @@ tccli/services/es/es_client.py,sha256=CafnSOgO1SckwFnNP619y1SuAC4NhGizbq3f5qv0Mu
|
|
441
441
|
tccli/services/es/v20180416/api.json,sha256=0N4S24h7r4o8ev7OjrF14E7lEcCR6DRa2mHWeje823Y,336764
|
442
442
|
tccli/services/es/v20180416/examples.json,sha256=lF0YOqHfEToT1VSVlRBB9UiYIisjnlQJDWMNkyYpoYY,73702
|
443
443
|
tccli/services/ess/__init__.py,sha256=heBHzUKDuNxQ68yNutgyA8stCndyFWqYJqiQFozTiDs,85
|
444
|
-
tccli/services/ess/ess_client.py,sha256=
|
445
|
-
tccli/services/ess/v20201111/api.json,sha256=
|
446
|
-
tccli/services/ess/v20201111/examples.json,sha256=
|
444
|
+
tccli/services/ess/ess_client.py,sha256=0l3_vlC0k6750SD2QBIUDhDxUCbo6iKLaHjVoxSsUj8,286062
|
445
|
+
tccli/services/ess/v20201111/api.json,sha256=U5kkmDncbBy1byaoKikNy3Mvc-riKbCt1yOHEcjCHOg,728205
|
446
|
+
tccli/services/ess/v20201111/examples.json,sha256=XMIbhnqQY8gu1q5y0V5F6KlB5JkBNFmbk66mWYj8btM,572344
|
447
447
|
tccli/services/essbasic/__init__.py,sha256=Uh5kuYtJvJ4F1S2w-19_B6a_JMF1ubh8Se-7p5LA0PE,95
|
448
448
|
tccli/services/essbasic/essbasic_client.py,sha256=HpUoYdfQWVWY4nAI5bPJXQ7BAVVA0uJ3IEVaviW5u_M,407926
|
449
449
|
tccli/services/essbasic/v20201222/api.json,sha256=8yA-0DwpjBAZajDJnp3flQ2xn1sdkZMVQcvegUcemSM,184116
|
450
450
|
tccli/services/essbasic/v20201222/examples.json,sha256=TsEP0F9v4W6KvnFnczr2diMh2NX2Tp7TcCEkoeBw69Q,68751
|
451
|
-
tccli/services/essbasic/v20210526/api.json,sha256=
|
451
|
+
tccli/services/essbasic/v20210526/api.json,sha256=a6v70jpT0qmDvQWPD37HiAT_8XkCh9jv-Jky-8y31uY,652100
|
452
452
|
tccli/services/essbasic/v20210526/examples.json,sha256=cD5ijmOTUgr8llwN-qLRvFwoXKj3vO2dzFRoNr7l5e0,426925
|
453
453
|
tccli/services/facefusion/__init__.py,sha256=5IsXKY7EJG73GoLZDaRk_QwthyDmfes1nKAVdwZETUE,99
|
454
454
|
tccli/services/facefusion/facefusion_client.py,sha256=WOqOQDPKlKpXTGcmw5t5uZKY0VhwRJtud72Vx6CR2h4,18163
|
@@ -478,7 +478,7 @@ tccli/services/gme/v20180711/api.json,sha256=qnRTrjrUwfoeM35gLEUNTvm6zyv21_1w9dx
|
|
478
478
|
tccli/services/gme/v20180711/examples.json,sha256=lqBYHAFzLLmIL5iAfEM8AiNHjjih6mCzSF31fT5W5YE,37372
|
479
479
|
tccli/services/goosefs/__init__.py,sha256=kpSjGCo6__XlnM9TBgEi67FDvAbrnHg9CUUp8h9rzc8,93
|
480
480
|
tccli/services/goosefs/goosefs_client.py,sha256=F50pFhQJTBe7yqWjFUJUQMlnapg_6pwdaAXBtnLgYQQ,68090
|
481
|
-
tccli/services/goosefs/v20220519/api.json,sha256=
|
481
|
+
tccli/services/goosefs/v20220519/api.json,sha256=b6_ZvG2q4tFAdE9BbjQfIb5IZZz1ryCYagnGLxjtZRc,57997
|
482
482
|
tccli/services/goosefs/v20220519/examples.json,sha256=pLgHY0mhJnxK5IXDieLhApkKDLgtljf6_9QoUbXWQmE,16218
|
483
483
|
tccli/services/gpm/__init__.py,sha256=6kqQwpCn3QXvg0kTH3ORxsXW0RptQBy8iKJyXJWLyIM,85
|
484
484
|
tccli/services/gpm/gpm_client.py,sha256=VGrjzqV6-JkOXHwz0s3dSkfHeHnR5PSRXY2QYTcTL1Q,60733
|
@@ -510,7 +510,7 @@ tccli/services/hcm/v20181106/api.json,sha256=9Jxpj-fhbXJGkO_nCVUL4nlhcfMICA3snOG
|
|
510
510
|
tccli/services/hcm/v20181106/examples.json,sha256=TKTLt4hcnqYSjpxTCwtJyoFUc2I23ySZL0Ar-aa6v98,1466
|
511
511
|
tccli/services/hunyuan/__init__.py,sha256=ZWaLaByP6wMQSS7nntZKqol4lzuJKslQFdB4Bv3kYwU,93
|
512
512
|
tccli/services/hunyuan/hunyuan_client.py,sha256=PWIZwVQp0a04vtTXPdTfDOV7M5tPS5bdJSThuUdfFKQ,30218
|
513
|
-
tccli/services/hunyuan/v20230901/api.json,sha256=
|
513
|
+
tccli/services/hunyuan/v20230901/api.json,sha256=Jj7DR7AhOHsskZlNX-2csEdjKGJv1nNq4MH4MNHypxY,50316
|
514
514
|
tccli/services/hunyuan/v20230901/examples.json,sha256=SrPcbBvXrWbRPMyC8sduivzuh2qmownybAYbK5Tld7M,35107
|
515
515
|
tccli/services/iai/__init__.py,sha256=pyYHUQUj82fBZdJ7cEUsTpy6VP8aU0siS32k7-3aM9Q,85
|
516
516
|
tccli/services/iai/iai_client.py,sha256=Heo7mlB-dWK2PDDh7vZnRQsFwGlRVozdo-jk6Hl3pgo,113648
|
@@ -586,8 +586,8 @@ tccli/services/irp/v20220805/api.json,sha256=8IuTarPH5o2qlZYOMc-AmL3uQRrXErKVtRU
|
|
586
586
|
tccli/services/irp/v20220805/examples.json,sha256=uJGF5e7ruKl-Sd4wOnjmJ1TWF4m0NYINbWJzT-K0NHs,9638
|
587
587
|
tccli/services/iss/__init__.py,sha256=NVoSqiEr6LSi4FkSNJu9Umy_kXle33km39CSW45g3so,85
|
588
588
|
tccli/services/iss/iss_client.py,sha256=usbR4HropqWKUTRQa_w5fv1yL_0OxdnvmiyNu7rOoK4,265070
|
589
|
-
tccli/services/iss/v20230517/api.json,sha256=
|
590
|
-
tccli/services/iss/v20230517/examples.json,sha256=
|
589
|
+
tccli/services/iss/v20230517/api.json,sha256=8wUgkw3hX4eNuq2u9nzVa0RfCXdoQpFKqpuvAivpovk,358839
|
590
|
+
tccli/services/iss/v20230517/examples.json,sha256=uDEjsk6UANlnwKelVThLt1TLrVzB2Kmi1hf9n-JsveE,114334
|
591
591
|
tccli/services/ivld/__init__.py,sha256=kohm2-CC27w5MyivVgx973ymg0QkpbAjj_GJm9TN2Z4,87
|
592
592
|
tccli/services/ivld/ivld_client.py,sha256=V9EhXbzRt46McLxZEu1qdqAccXJK_qohfeQpjh1QY4A,91993
|
593
593
|
tccli/services/ivld/v20210903/api.json,sha256=6DJT19VhZ2Z1D9XrTNcWOVcg3TkWs0fR64ueSI7E9Ps,137076
|
@@ -651,9 +651,9 @@ tccli/services/mmps/mmps_client.py,sha256=HtkdtBPGZeY-7T76xY4KxwvWvoOTaDm-6hOkuw
|
|
651
651
|
tccli/services/mmps/v20200710/api.json,sha256=Sz1rhxjhEHqaflcx6dk4IWjMi8R_2b3Y2u3TK4s-GzY,67739
|
652
652
|
tccli/services/mmps/v20200710/examples.json,sha256=6X3HdWCZNGJcKKBLeoR_XIahplSUv926Kjb9A1CDWgQ,12272
|
653
653
|
tccli/services/mna/__init__.py,sha256=LSVBLnv32Zluq214OI9imRQp8ffp314l-4yapy89M2w,85
|
654
|
-
tccli/services/mna/mna_client.py,sha256=
|
655
|
-
tccli/services/mna/v20210119/api.json,sha256=
|
656
|
-
tccli/services/mna/v20210119/examples.json,sha256=
|
654
|
+
tccli/services/mna/mna_client.py,sha256=TaylqLqzViAzTpc2M3hCX68eMerV44xDWOOEX65ESvU,131294
|
655
|
+
tccli/services/mna/v20210119/api.json,sha256=8vkUP9wCYgsJaMQAPbKMQB5FmVMJuwZvPCsxT0wUUEE,148262
|
656
|
+
tccli/services/mna/v20210119/examples.json,sha256=kzhaDQ66uo8Q2Cbqs4mg5hIC7W3j2SMFFgt9PKhbnTU,42886
|
657
657
|
tccli/services/mongodb/__init__.py,sha256=Xj1cMJt16_OaoYzXR0TgIRPw-DADd-yJkmk3CeEpvk0,93
|
658
658
|
tccli/services/mongodb/mongodb_client.py,sha256=0spoHSRt14B4XKjdARXkSwlvc5JhtmymdWA9SxqCyhk,176731
|
659
659
|
tccli/services/mongodb/v20180408/api.json,sha256=l4yqKb-EpX1lQQbdCwh9d2YggVEV6jyVtPLjGl0pIP4,59863
|
@@ -912,7 +912,7 @@ tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAw
|
|
912
912
|
tccli/services/teo/teo_client.py,sha256=5QODiKnC8bi3tAnYNg-ymjLhwyAhPvnVJam8ZdP_QzE,334070
|
913
913
|
tccli/services/teo/v20220106/api.json,sha256=HGvEHEkfctNBazbSyZvWAUPSvYa4c_YxZJ9uW61RD4k,29733
|
914
914
|
tccli/services/teo/v20220106/examples.json,sha256=2s6dgk31pZ26N8hrFLCmQzVocmsC_QK1dO8WVBdJ8A0,5325
|
915
|
-
tccli/services/teo/v20220901/api.json,sha256=
|
915
|
+
tccli/services/teo/v20220901/api.json,sha256=Ym2nXm4O8uPpIzsXVGgD1qUQDEIMjC52WNPC_cuMCA4,655454
|
916
916
|
tccli/services/teo/v20220901/examples.json,sha256=KgpGD-1aeZA1Ockd6oGSouTA77ca5q52bspC9_6m6Gg,205851
|
917
917
|
tccli/services/thpc/__init__.py,sha256=NancJ76I7PbEBt7VJCaGnBsfMEZm2ezBvYqwxyLbLHo,87
|
918
918
|
tccli/services/thpc/thpc_client.py,sha256=GLvjDOBr3m8eg-0Ze38Sxu0Cx1f46B9iFzCHj0K_0lg,67786
|
@@ -998,7 +998,7 @@ tccli/services/trro/v20220325/api.json,sha256=dJZydHE8hmbfBTweDikhd_R8sidA_fWhTR
|
|
998
998
|
tccli/services/trro/v20220325/examples.json,sha256=lwXhGjCkkRl-N8vCGwpYGQUwVMKPPgEdm2CPsDd48KQ,20684
|
999
999
|
tccli/services/trtc/__init__.py,sha256=7xXIF66WdJHGVIhfHKFx2VYimlxZ_z3QOeJBUJ2P_MQ,87
|
1000
1000
|
tccli/services/trtc/trtc_client.py,sha256=OMIG1mQUcvkXtEU1Tan1PsKfVwRaBi9Oa1GewJSWaIc,173196
|
1001
|
-
tccli/services/trtc/v20190722/api.json,sha256=
|
1001
|
+
tccli/services/trtc/v20190722/api.json,sha256=u9UlgMtsCwBLczA3dls1NG6qBluYoXDuBN8FAvzSgD0,309648
|
1002
1002
|
tccli/services/trtc/v20190722/examples.json,sha256=l_Wk983h4ca-5Qpu0NBTEqAqqGXEEHAGd4kNlK83gBk,105306
|
1003
1003
|
tccli/services/tse/__init__.py,sha256=3Y4ZA_IFX8df4-ir1I9p0u4ksAywRrtd2CAvJ5yKyz0,85
|
1004
1004
|
tccli/services/tse/tse_client.py,sha256=FaAw3trxYLWl1wh3aqZeoOPHAjOwUCMToDx63g6gnfE,357796
|
@@ -1104,8 +1104,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
|
|
1104
1104
|
tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
|
1105
1105
|
tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
|
1106
1106
|
tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
|
1107
|
-
tccli-3.0.
|
1108
|
-
tccli-3.0.
|
1109
|
-
tccli-3.0.
|
1110
|
-
tccli-3.0.
|
1111
|
-
tccli-3.0.
|
1107
|
+
tccli-3.0.1173.1.dist-info/METADATA,sha256=Q0jnwPZk-Axe0Y29EebfKL98I7JSSv7PT-NrB0Kpdew,16172
|
1108
|
+
tccli-3.0.1173.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
|
1109
|
+
tccli-3.0.1173.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
|
1110
|
+
tccli-3.0.1173.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
1111
|
+
tccli-3.0.1173.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|