tccli 3.0.1218.1__py2.py3-none-any.whl → 3.0.1219.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/__init__.py +3 -0
  3. tccli/services/af/v20200226/api.json +2 -2
  4. tccli/services/billing/v20180709/api.json +176 -181
  5. tccli/services/billing/v20180709/examples.json +7 -7
  6. tccli/services/ckafka/v20190819/api.json +7 -7
  7. tccli/services/clb/v20180317/api.json +12 -12
  8. tccli/services/cwp/v20180228/api.json +1 -1
  9. tccli/services/es/v20180416/examples.json +2 -2
  10. tccli/services/ess/v20201111/api.json +9 -0
  11. tccli/services/essbasic/v20210526/api.json +9 -0
  12. tccli/services/faceid/v20180301/api.json +2 -2
  13. tccli/services/iai/v20180301/api.json +17 -13
  14. tccli/services/iai/v20200303/examples.json +200 -200
  15. tccli/services/iap/__init__.py +4 -0
  16. tccli/services/iap/iap_client.py +472 -0
  17. tccli/services/iap/v20240713/api.json +471 -0
  18. tccli/services/iap/v20240713/examples.json +59 -0
  19. tccli/services/lcic/v20220817/api.json +3 -3
  20. tccli/services/live/live_client.py +428 -4
  21. tccli/services/live/v20180801/api.json +1070 -68
  22. tccli/services/live/v20180801/examples.json +64 -0
  23. tccli/services/market/v20191010/api.json +4 -4
  24. tccli/services/market/v20191010/examples.json +2 -2
  25. tccli/services/mps/v20190612/api.json +20 -0
  26. tccli/services/partners/v20180321/api.json +4 -4
  27. tccli/services/pts/v20210728/api.json +3 -0
  28. tccli/services/redis/v20180412/api.json +169 -163
  29. tccli/services/redis/v20180412/examples.json +3 -3
  30. tccli/services/svp/v20240125/api.json +27 -27
  31. tccli/services/svp/v20240125/examples.json +1 -1
  32. tccli/services/tat/v20201028/api.json +5 -5
  33. tccli/services/tdmq/v20200217/api.json +1 -1
  34. tccli/services/tke/v20220501/api.json +2 -2
  35. tccli/services/tse/v20201207/api.json +199 -12
  36. tccli/services/vcg/v20240404/api.json +1 -1
  37. tccli/services/vcg/v20240404/examples.json +4 -4
  38. tccli/services/vpc/v20170312/api.json +492 -66
  39. tccli/services/vpc/v20170312/examples.json +59 -21
  40. tccli/services/vpc/vpc_client.py +212 -0
  41. {tccli-3.0.1218.1.dist-info → tccli-3.0.1219.1.dist-info}/METADATA +2 -2
  42. {tccli-3.0.1218.1.dist-info → tccli-3.0.1219.1.dist-info}/RECORD +45 -41
  43. {tccli-3.0.1218.1.dist-info → tccli-3.0.1219.1.dist-info}/WHEEL +0 -0
  44. {tccli-3.0.1218.1.dist-info → tccli-3.0.1219.1.dist-info}/entry_points.txt +0 -0
  45. {tccli-3.0.1218.1.dist-info → tccli-3.0.1219.1.dist-info}/license_files/LICENSE +0 -0
@@ -40,6 +40,22 @@
40
40
  "title": "取消示例"
41
41
  }
42
42
  ],
43
+ "CopyCaster": [
44
+ {
45
+ "document": "",
46
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CopyCaster\n<公共请求参数>\n\n{\n \"CasterId\": \"1234\",\n \"OutputStreamId\": \"copy_output_example\",\n \"CasterName\": \"copy_example\"\n}",
47
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\",\n \"CasterId\": 1235\n }\n}",
48
+ "title": "请求示例"
49
+ }
50
+ ],
51
+ "CreateCaster": [
52
+ {
53
+ "document": "请求创建导播台",
54
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateCaster\n<公共请求参数>\n\n{\n \"CasterName\": \"example\"\n}",
55
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\",\n \"CasterId\": 1234\n }\n}",
56
+ "title": "请求示例"
57
+ }
58
+ ],
43
59
  "CreateCommonMixStream": [
44
60
  {
45
61
  "document": "使用混流预置模板混流。",
@@ -224,6 +240,14 @@
224
240
  "title": "示例"
225
241
  }
226
242
  ],
243
+ "DeleteCaster": [
244
+ {
245
+ "document": "删除导播台",
246
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteCaster\n<公共请求参数>\n\n{\n \"CasterId\": \"1234\"\n}",
247
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\"\n }\n}",
248
+ "title": "请求示例"
249
+ }
250
+ ],
227
251
  "DeleteLiveCallbackRule": [
228
252
  {
229
253
  "document": "删除直播回调规则。",
@@ -432,6 +456,22 @@
432
456
  "title": "请求示例"
433
457
  }
434
458
  ],
459
+ "DescribeCaster": [
460
+ {
461
+ "document": "当需要查询一个导播台的信息时,可以按如下调用。",
462
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCaster\n<公共请求参数>\n\n{\n \"CasterId\": \"1234\"\n}",
463
+ "output": "{\n \"Response\": {\n \"CasterInfo\": {\n \"CasterId\": 1234,\n \"CasterName\": \"example\",\n \"StartLiveTime\": 0,\n \"Description\": \"\",\n \"CreateTime\": 1603158528,\n \"Status\": 0,\n \"ExpireTime\": -1,\n \"DelayTime\": 0,\n \"PgmWidth\": 0,\n \"PgmHeight\": 0,\n \"PgmFps\": 0,\n \"PgmBitRate\": 0,\n \"PgmAudioBitRate\": 256,\n \"FeeType\": 0,\n \"RecordTemplateId\": 0,\n \"RecordStatus\": 0,\n \"RecordTaskId\": \"\"\n },\n \"RequestId\": \"bebdd4e4-4087-411b-ab2e-3692dcfba4c3\"\n }\n}",
464
+ "title": "请求示例"
465
+ }
466
+ ],
467
+ "DescribeCasterDisplayInfo": [
468
+ {
469
+ "document": "",
470
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCasterDisplayInfo\n<公共请求参数>\n\n{\n \"CasterId\": 130\n}",
471
+ "output": "{\n \"Response\": {\n \"PvwDisplayInfo\": {\n \"LayoutIndex\": 0,\n \"MarkPicIndexList\": [],\n \"MarkWordIndexList\": [],\n \"TransitionType\": \"\",\n \"AudioIndexList\": []\n },\n \"PgmDisplayInfo\": {\n \"LayoutIndex\": 0,\n \"MarkPicIndexList\": [],\n \"MarkWordIndexList\": [],\n \"TransitionType\": \"\",\n \"AudioIndexList\": []\n },\n \"Status\": 0,\n \"RequestId\": \"uuid\",\n \"StartLiveTime\": 1670309219\n }\n}",
472
+ "title": "查询导播台展示信息"
473
+ }
474
+ ],
435
475
  "DescribeCasterList": [
436
476
  {
437
477
  "document": "获取某个账号下的所有导播台列表",
@@ -440,6 +480,14 @@
440
480
  "title": "请求示例"
441
481
  }
442
482
  ],
483
+ "DescribeCasterPlayUrl": [
484
+ {
485
+ "document": "获取某个输入或者预监、主监的播放地址",
486
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCasterPlayUrl\n<公共请求参数>\n\n{\n \"PlayUrlType\": \"1\",\n \"CasterId\": \"10\",\n \"PlayUrlIndex\": \"1\"\n}",
487
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\",\n \"PlayUrl\": \"http://domain/live/test.flv\",\n \"WebRTCPlayUrl\": \"webrtc://webrtc.domain.com/live/test\"\n }\n}",
488
+ "title": "请求示例"
489
+ }
490
+ ],
443
491
  "DescribeCasterTransitionTypes": [
444
492
  {
445
493
  "document": "",
@@ -800,6 +848,14 @@
800
848
  "title": "请求示例"
801
849
  }
802
850
  ],
851
+ "DescribeLiveTimeShiftWriteSizeInfoList": [
852
+ {
853
+ "document": "",
854
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeLiveTimeShiftWriteSizeInfoList\n<公共请求参数>\n\n{\n \"StartTime\": \"abc\",\n \"EndTime\": \"abc\",\n \"DomainNames\": [\n \"abc\"\n ],\n \"Dimensions\": [\n \"abc\"\n ],\n \"StorageDays\": [\n 0\n ],\n \"Granularity\": 0,\n \"MainlandOrOversea\": \"abc\"\n}",
855
+ "output": "{\n \"Response\": {\n \"DataInfoList\": [\n {\n \"Area\": \"abc\",\n \"Time\": \"abc\",\n \"WriteSize\": 0,\n \"Domain\": \"abc\",\n \"StorageDays\": 0\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
856
+ "title": "请求示例"
857
+ }
858
+ ],
803
859
  "DescribeLiveTranscodeDetailInfo": [
804
860
  {
805
861
  "document": "",
@@ -1080,6 +1136,14 @@
1080
1136
  "title": "请求示例"
1081
1137
  }
1082
1138
  ],
1139
+ "ModifyCaster": [
1140
+ {
1141
+ "document": "请求修改导播台信息",
1142
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyCaster\n<公共请求参数>\n\n{\n \"RecordStatus\": \"1\",\n \"RecordTemplateId\": \"1\",\n \"CasterId\": \"10\",\n \"CasterName\": \"Modify Caster\"\n}",
1143
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\"\n }\n}",
1144
+ "title": "请求示例"
1145
+ }
1146
+ ],
1083
1147
  "ModifyLiveCallbackTemplate": [
1084
1148
  {
1085
1149
  "document": "请求示例",
@@ -8,7 +8,7 @@
8
8
  "status": "online"
9
9
  },
10
10
  "GetUsagePlanUsageAmount": {
11
- "document": "该接口可以根据InstanceId查询实例的api的使用情况。\n",
11
+ "document": "该接口可以根据InstanceId查询实例的api的使用情况。",
12
12
  "input": "GetUsagePlanUsageAmountRequest",
13
13
  "name": "查询使用计划使用量",
14
14
  "output": "GetUsagePlanUsageAmountResponse",
@@ -148,7 +148,7 @@
148
148
  "example": "1000",
149
149
  "member": "int64",
150
150
  "name": "MaxRequestNum",
151
- "required": true,
151
+ "output_required": true,
152
152
  "type": "int",
153
153
  "value_allowed_null": false
154
154
  },
@@ -158,7 +158,7 @@
158
158
  "example": "500",
159
159
  "member": "int64",
160
160
  "name": "InUseRequestNum",
161
- "required": true,
161
+ "output_required": true,
162
162
  "type": "int",
163
163
  "value_allowed_null": false
164
164
  },
@@ -168,7 +168,7 @@
168
168
  "example": "500",
169
169
  "member": "int64",
170
170
  "name": "RemainingRequestNum",
171
- "required": true,
171
+ "output_required": true,
172
172
  "type": "int",
173
173
  "value_allowed_null": false
174
174
  },
@@ -11,8 +11,8 @@
11
11
  "GetUsagePlanUsageAmount": [
12
12
  {
13
13
  "document": "",
14
- "input": "POST / HTTP/1.1\nHost: market.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetUsagePlanUsageAmount\n<公共请求参数>\n\n{\n \"InstanceId\": \"123456789\"\n}",
15
- "output": "{\n \"Response\": {\n \"MaxRequestNum\": 1000,\n \"InUseRequestNum\": 500,\n \"RemainingRequestNum\": 500,\n \"RequestId\": \"xx\"\n }\n}",
14
+ "input": "POST / HTTP/1.1\nHost: market.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetUsagePlanUsageAmount\n<公共请求参数>\n\n{\n \"InstanceId\": \"45419893\"\n}",
15
+ "output": "{\n \"Response\": {\n \"MaxRequestNum\": 1000,\n \"InUseRequestNum\": 500,\n \"RemainingRequestNum\": 500,\n \"RequestId\": \"f598b754-b814-47e7-9052-5848cf9a8862\"\n }\n}",
16
16
  "title": "查询使用计划使用量"
17
17
  }
18
18
  ]
@@ -25553,6 +25553,16 @@
25553
25553
  "type": "string",
25554
25554
  "value_allowed_null": true
25555
25555
  },
25556
+ {
25557
+ "disabled": false,
25558
+ "document": "拆条片段封面。\n注意:此字段可能返回 null,表示取不到有效值。",
25559
+ "example": "无",
25560
+ "member": "string",
25561
+ "name": "CovImgUrl",
25562
+ "output_required": true,
25563
+ "type": "string",
25564
+ "value_allowed_null": true
25565
+ },
25556
25566
  {
25557
25567
  "disabled": false,
25558
25568
  "document": "分段标题。\n注意:此字段可能返回 null,表示取不到有效值。",
@@ -25573,6 +25583,16 @@
25573
25583
  "type": "string",
25574
25584
  "value_allowed_null": true
25575
25585
  },
25586
+ {
25587
+ "disabled": false,
25588
+ "document": "分段关键词。",
25589
+ "example": "无",
25590
+ "member": "string",
25591
+ "name": "Keywords",
25592
+ "output_required": false,
25593
+ "type": "list",
25594
+ "value_allowed_null": false
25595
+ },
25576
25596
  {
25577
25597
  "disabled": false,
25578
25598
  "document": "直播切片对应直播起始时间点,采用 ISO 日期格式。\n注意:此字段可能返回 null,表示取不到有效值。",
@@ -582,7 +582,7 @@
582
582
  {
583
583
  "disabled": false,
584
584
  "document": "订单自增 ID【请勿依赖该字段作为唯一标识】",
585
- "example": "202008124664564",
585
+ "example": "20200812123456",
586
586
  "member": "string",
587
587
  "name": "DealId",
588
588
  "output_required": true,
@@ -592,7 +592,7 @@
592
592
  {
593
593
  "disabled": false,
594
594
  "document": "订单号【订单唯一键】",
595
- "example": "202008124664564",
595
+ "example": "20200812123456",
596
596
  "member": "string",
597
597
  "name": "DealName",
598
598
  "output_required": true,
@@ -762,7 +762,7 @@
762
762
  {
763
763
  "disabled": false,
764
764
  "document": "大订单号",
765
- "example": "202008124664564",
765
+ "example": "20200812123456",
766
766
  "member": "string",
767
767
  "name": "BigDealId",
768
768
  "output_required": true,
@@ -872,7 +872,7 @@
872
872
  {
873
873
  "disabled": false,
874
874
  "document": "退款单的原订单信息。当前仅 DescribeClientDealsByCache 接口会返回该字段",
875
- "example": "[{\"DealName\":\"test\",\"RefundAmount\":10001}]",
875
+ "example": "[{\"DealName\":\"demo\",\"RefundAmount\":10001}]",
876
876
  "member": "RefundMap",
877
877
  "name": "RefundMap",
878
878
  "output_required": false,
@@ -5314,6 +5314,7 @@
5314
5314
  "example": "无",
5315
5315
  "member": "Concurrency",
5316
5316
  "name": "Concurrency",
5317
+ "output_required": true,
5317
5318
  "required": false,
5318
5319
  "type": "object",
5319
5320
  "value_allowed_null": true
@@ -5324,6 +5325,7 @@
5324
5325
  "example": "无",
5325
5326
  "member": "RequestsPerSecond",
5326
5327
  "name": "RequestsPerSecond",
5328
+ "output_required": true,
5327
5329
  "required": false,
5328
5330
  "type": "object",
5329
5331
  "value_allowed_null": true
@@ -5334,6 +5336,7 @@
5334
5336
  "example": "无",
5335
5337
  "member": "ScriptOrigin",
5336
5338
  "name": "ScriptOrigin",
5339
+ "output_required": true,
5337
5340
  "required": false,
5338
5341
  "type": "object",
5339
5342
  "value_allowed_null": true