tccli 3.0.1225.1__py2.py3-none-any.whl → 3.0.1226.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 (33) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/billing/v20180709/api.json +23 -23
  3. tccli/services/billing/v20180709/examples.json +5 -5
  4. tccli/services/cdb/v20170320/api.json +218 -2
  5. tccli/services/cdb/v20170320/examples.json +3 -3
  6. tccli/services/cdwdoris/v20211228/api.json +1 -1
  7. tccli/services/ckafka/v20190819/api.json +791 -679
  8. tccli/services/dts/v20211206/api.json +21 -1
  9. tccli/services/faceid/v20180301/api.json +1 -1
  10. tccli/services/hunyuan/hunyuan_client.py +53 -0
  11. tccli/services/hunyuan/v20230901/api.json +297 -0
  12. tccli/services/hunyuan/v20230901/examples.json +8 -0
  13. tccli/services/ims/v20201229/api.json +2 -2
  14. tccli/services/lcic/v20220817/api.json +1 -1
  15. tccli/services/live/live_client.py +53 -0
  16. tccli/services/live/v20180801/api.json +204 -35
  17. tccli/services/live/v20180801/examples.json +9 -1
  18. tccli/services/lke/v20231130/api.json +1 -1
  19. tccli/services/mps/v20190612/api.json +174 -13
  20. tccli/services/scf/v20180416/api.json +1 -1
  21. tccli/services/trtc/v20190722/api.json +20 -0
  22. tccli/services/tsf/v20180326/api.json +1287 -118
  23. tccli/services/tsf/v20180326/examples.json +5 -5
  24. tccli/services/tts/v20190823/api.json +2 -2
  25. tccli/services/vclm/v20240523/api.json +77 -6
  26. tccli/services/vclm/v20240523/examples.json +9 -1
  27. tccli/services/vclm/vclm_client.py +53 -0
  28. tccli/services/vdb/v20230616/api.json +20 -0
  29. {tccli-3.0.1225.1.dist-info → tccli-3.0.1226.1.dist-info}/METADATA +2 -2
  30. {tccli-3.0.1225.1.dist-info → tccli-3.0.1226.1.dist-info}/RECORD +33 -33
  31. {tccli-3.0.1225.1.dist-info → tccli-3.0.1226.1.dist-info}/WHEEL +0 -0
  32. {tccli-3.0.1225.1.dist-info → tccli-3.0.1226.1.dist-info}/entry_points.txt +0 -0
  33. {tccli-3.0.1225.1.dist-info → tccli-3.0.1226.1.dist-info}/license_files/LICENSE +0 -0
@@ -3249,42 +3249,52 @@
3249
3249
  {
3250
3250
  "disabled": false,
3251
3251
  "document": "识别片段置信度。取值:0~100。",
3252
- "example": "",
3252
+ "example": "100",
3253
3253
  "member": "float",
3254
3254
  "name": "Confidence",
3255
- "required": true,
3255
+ "output_required": true,
3256
3256
  "type": "float",
3257
3257
  "value_allowed_null": false
3258
3258
  },
3259
3259
  {
3260
3260
  "disabled": false,
3261
3261
  "document": "识别片段起始的偏移时间,单位:秒。",
3262
- "example": "",
3262
+ "example": "3.204",
3263
3263
  "member": "float",
3264
3264
  "name": "StartTimeOffset",
3265
- "required": true,
3265
+ "output_required": true,
3266
3266
  "type": "float",
3267
3267
  "value_allowed_null": false
3268
3268
  },
3269
3269
  {
3270
3270
  "disabled": false,
3271
3271
  "document": "识别片段终止的偏移时间,单位:秒。",
3272
- "example": "",
3272
+ "example": "7.204",
3273
3273
  "member": "float",
3274
3274
  "name": "EndTimeOffset",
3275
- "required": true,
3275
+ "output_required": true,
3276
3276
  "type": "float",
3277
3277
  "value_allowed_null": false
3278
3278
  },
3279
3279
  {
3280
3280
  "disabled": false,
3281
3281
  "document": "识别文本。",
3282
- "example": "",
3282
+ "example": "腾讯云媒体处理",
3283
3283
  "member": "string",
3284
3284
  "name": "Text",
3285
- "required": true,
3285
+ "output_required": true,
3286
3286
  "type": "string",
3287
3287
  "value_allowed_null": false
3288
+ },
3289
+ {
3290
+ "disabled": false,
3291
+ "document": "字词时间戳信息。",
3292
+ "example": "无",
3293
+ "member": "WordResult",
3294
+ "name": "Wordlist",
3295
+ "output_required": false,
3296
+ "type": "list",
3297
+ "value_allowed_null": false
3288
3298
  }
3289
3299
  ],
3290
3300
  "usage": "out"
@@ -3742,6 +3752,17 @@
3742
3752
  "required": true,
3743
3753
  "type": "int",
3744
3754
  "value_allowed_null": false
3755
+ },
3756
+ {
3757
+ "disabled": false,
3758
+ "document": "用户扩展字段,一般场景不用填。",
3759
+ "example": "无",
3760
+ "member": "string",
3761
+ "name": "UserExtPara",
3762
+ "output_required": false,
3763
+ "required": false,
3764
+ "type": "string",
3765
+ "value_allowed_null": false
3745
3766
  }
3746
3767
  ],
3747
3768
  "usage": "both"
@@ -4373,7 +4394,7 @@
4373
4394
  "example": "100",
4374
4395
  "member": "float",
4375
4396
  "name": "Confidence",
4376
- "required": true,
4397
+ "output_required": true,
4377
4398
  "type": "float",
4378
4399
  "value_allowed_null": false
4379
4400
  },
@@ -4383,7 +4404,7 @@
4383
4404
  "example": "17.45",
4384
4405
  "member": "float",
4385
4406
  "name": "StartTimeOffset",
4386
- "required": true,
4407
+ "output_required": true,
4387
4408
  "type": "float",
4388
4409
  "value_allowed_null": false
4389
4410
  },
@@ -4393,7 +4414,7 @@
4393
4414
  "example": "29.99",
4394
4415
  "member": "float",
4395
4416
  "name": "EndTimeOffset",
4396
- "required": true,
4417
+ "output_required": true,
4397
4418
  "type": "float",
4398
4419
  "value_allowed_null": false
4399
4420
  },
@@ -4403,7 +4424,7 @@
4403
4424
  "example": "你好",
4404
4425
  "member": "string",
4405
4426
  "name": "Text",
4406
- "required": true,
4427
+ "output_required": true,
4407
4428
  "type": "string",
4408
4429
  "value_allowed_null": false
4409
4430
  },
@@ -4413,9 +4434,19 @@
4413
4434
  "example": "Hello",
4414
4435
  "member": "string",
4415
4436
  "name": "Trans",
4416
- "required": true,
4437
+ "output_required": true,
4417
4438
  "type": "string",
4418
4439
  "value_allowed_null": false
4440
+ },
4441
+ {
4442
+ "disabled": false,
4443
+ "document": "字词时间戳信息。",
4444
+ "example": "无",
4445
+ "member": "WordResult",
4446
+ "name": "Wordlist",
4447
+ "output_required": false,
4448
+ "type": "list",
4449
+ "value_allowed_null": false
4419
4450
  }
4420
4451
  ],
4421
4452
  "usage": "out"
@@ -14161,6 +14192,24 @@
14161
14192
  "name": "Name",
14162
14193
  "required": false,
14163
14194
  "type": "string"
14195
+ },
14196
+ {
14197
+ "disabled": false,
14198
+ "document": "视频场景化,可选值: \nnormal:通用转码场景:通用转码压缩场景。 \npgc:PGC高清影视:压缩时会注重影视剧的观看体验,根据影视剧特性进行ROI编码,同时保留高质量的视频内容和音频。 \nmaterials_video:高清素材:素材资源类场景,对画质要求极高,较多透明画面内容,在压缩的同时接近视觉无损。 \nugc:UGC内容:适用于广泛的UGC/短视频场景,针对短视频的特性优化编码码率, 画质提升,提升业务QOS/QOE指标。 \ne-commerce_video:秀场/电商类:压缩时会强调细节清晰度和ROI区域提升,尤其注重保持人脸区域的画质。 \neducational_video:教育类:压缩时会强调文字和图像的清晰度和可读性,以便学生更好地理解内容,确保讲解内容清晰传达。 \nno_config:未配置。",
14199
+ "example": "normal",
14200
+ "member": "string",
14201
+ "name": "SceneType",
14202
+ "required": false,
14203
+ "type": "string"
14204
+ },
14205
+ {
14206
+ "disabled": false,
14207
+ "document": "转码策略,可选值: \nultra_compress:极致压缩:相比标准压缩,该策略能在保证一定画质的基础上最大限度压缩码率,极大节约带宽和存储成本。 \nstandard_compress:综合最优:平衡压缩率与画质,在保证主观画质没有明显降低的情况下尽可能压缩文件。该策略仅收取音视频极速高清转码费用。 \nhigh_compress:码率优先:优先保证降低文件体积大小,可能有一定画质损失。该策略仅收取音视频极速高清转码费用。 \nlow_compress:画质优先:优先保证画质,压缩出来的文件体积可能相对较大。该策略仅收取音视频极速高清转码费用。 \nno_config:未配置。",
14208
+ "example": "standard_compress",
14209
+ "member": "string",
14210
+ "name": "CompressType",
14211
+ "required": false,
14212
+ "type": "string"
14164
14213
  }
14165
14214
  ],
14166
14215
  "type": "object"
@@ -27208,6 +27257,16 @@
27208
27257
  "output_required": true,
27209
27258
  "type": "object",
27210
27259
  "value_allowed_null": true
27260
+ },
27261
+ {
27262
+ "disabled": false,
27263
+ "document": "转码模板别名称。\n注意:此字段可能返回 null,表示取不到有效值。",
27264
+ "example": "“”",
27265
+ "member": "string",
27266
+ "name": "AliasName",
27267
+ "output_required": false,
27268
+ "type": "string",
27269
+ "value_allowed_null": true
27211
27270
  }
27212
27271
  ],
27213
27272
  "usage": "out"
@@ -28088,6 +28147,39 @@
28088
28147
  "required": false,
28089
28148
  "type": "object",
28090
28149
  "value_allowed_null": true
28150
+ },
28151
+ {
28152
+ "disabled": false,
28153
+ "document": "模版是否开启场景化 \n0:不开启 \n1:开启 \n默认值:0\t\n注意:此字段可能返回 null,表示取不到有效值。",
28154
+ "example": "0",
28155
+ "member": "int64",
28156
+ "name": "ScenarioBased",
28157
+ "output_required": false,
28158
+ "required": false,
28159
+ "type": "int",
28160
+ "value_allowed_null": true
28161
+ },
28162
+ {
28163
+ "disabled": false,
28164
+ "document": "视频场景化,可选值: \nnormal:通用转码场景:通用转码压缩场景。\npgc:PGC高清影视:压缩时会注重影视剧的观看体验,根据影视剧特性进行ROI编码,同时保留高质量的视频内容和音频。 \nmaterials_video:高清素材:素材资源类场景,对画质要求极高,较多透明画面内容,在压缩的同时接近视觉无损。 \nugc:UGC内容:适用于广泛的UGC/短视频场景,针对短视频的特性优化编码码率, 画质提升,提升业务QOS/QOE指标。 \ne-commerce_video:秀场/电商类:压缩时会强调细节清晰度和ROI区域提升,尤其注重保持人脸区域的画质。 \neducational_video:教育类:压缩时会强调文字和图像的清晰度和可读性,以便学生更好地理解内容,确保讲解内容清晰传达。 \n默认值:normal\n注意:此字段可能返回 null,表示取不到有效值。",
28165
+ "example": "normal",
28166
+ "member": "string",
28167
+ "name": "SceneType",
28168
+ "output_required": false,
28169
+ "required": false,
28170
+ "type": "string",
28171
+ "value_allowed_null": true
28172
+ },
28173
+ {
28174
+ "disabled": false,
28175
+ "document": "转码策略,可选值: \nultra_compress:极致压缩:相比标准压缩,该策略能在保证一定画质的基础上最大限度压缩码率,极大节约带宽和存储成本。 \nstandard_compress:综合最优:平衡压缩率与画质,在保证主观画质没有明显降低的情况下尽可能压缩文件。该策略仅收取音视频极速高清转码费用。 \nhigh_compress:码率优先:优先保证降低文件体积大小,可能有一定画质损失。该策略仅收取音视频极速高清转码费用。 \nlow_compress:画质优先:优先保证画质,压缩出来的文件体积可能相对较大。该策略仅收取音视频极速高清转码费用。 \n默认值:standard_compress \n注:若需要在电视上观看视频,不建议使用ultra_compress策略。ultra_compress策略计费标准为极速高清转码 + 音视频增强-去毛刺。\n注意:此字段可能返回 null,表示取不到有效值。",
28176
+ "example": "standard_compress",
28177
+ "member": "string",
28178
+ "name": "CompressType",
28179
+ "output_required": false,
28180
+ "required": false,
28181
+ "type": "string",
28182
+ "value_allowed_null": true
28091
28183
  }
28092
28184
  ],
28093
28185
  "usage": "both"
@@ -28369,6 +28461,39 @@
28369
28461
  "required": false,
28370
28462
  "type": "object",
28371
28463
  "value_allowed_null": true
28464
+ },
28465
+ {
28466
+ "disabled": false,
28467
+ "document": "模版是否开启场景化 \n0:不开启 \n1:开启 \n默认值:0\t\n注意:此字段可能返回 null,表示取不到有效值。",
28468
+ "example": "0",
28469
+ "member": "int64",
28470
+ "name": "ScenarioBased",
28471
+ "output_required": false,
28472
+ "required": false,
28473
+ "type": "int",
28474
+ "value_allowed_null": true
28475
+ },
28476
+ {
28477
+ "disabled": false,
28478
+ "document": "视频场景化,可选值: \nnormal:通用转码场景:通用转码压缩场景 pgc:PGC高清影视:压缩时会注重影视剧的观看体验,根据影视剧特性进行ROI编码,同时保留高质量的视频内容和音频。 \nmaterials_video:高清素材:素材资源类场景,对画质要求极高,较多透明画面内容,在压缩的同时接近视觉无损。 \nugc:UGC内容:适用于广泛的UGC/短视频场景,针对短视频的特性优化编码码率, 画质提升,提升业务QOS/QOE指标。 \ne-commerce_video:秀场/电商类:压缩时会强调细节清晰度和ROI区域提升,尤其注重保持人脸区域的画质。 \neducational_video:教育类:压缩时会强调文字和图像的清晰度和可读性,以便学生更好地理解内容,确保讲解内容清晰传达。\n默认值:normal\n注意:此字段可能返回 null,表示取不到有效值。",
28479
+ "example": "normal",
28480
+ "member": "string",
28481
+ "name": "SceneType",
28482
+ "output_required": false,
28483
+ "required": false,
28484
+ "type": "string",
28485
+ "value_allowed_null": true
28486
+ },
28487
+ {
28488
+ "disabled": false,
28489
+ "document": "转码策略,可选值: \nultra_compress:极致压缩:相比标准压缩,该策略能在保证一定画质的基础上最大限度压缩码率,极大节约带宽和存储成本。 \nstandard_compress:综合最优:平衡压缩率与画质,在保证主观画质没有明显降低的情况下尽可能压缩文件。该策略仅收取音视频极速高清转码费用。 \nhigh_compress:码率优先:优先保证降低文件体积大小,可能有一定画质损失。该策略仅收取音视频极速高清转码费用。 \nlow_compress:画质优先:优先保证画质,压缩出来的文件体积可能相对较大。该策略仅收取音视频极速高清转码费用。 \n默认值:standard_compress \n注:若需要在电视上观看视频,不建议使用ultra_compress策略。ultra_compress策略计费标准为极速高清转码 + 音视频增强-去毛刺。\n注意:此字段可能返回 null,表示取不到有效值。",
28490
+ "example": "standard_compress",
28491
+ "member": "string",
28492
+ "name": "CompressType",
28493
+ "output_required": false,
28494
+ "required": false,
28495
+ "type": "string",
28496
+ "value_allowed_null": true
28372
28497
  }
28373
28498
  ],
28374
28499
  "usage": "both"
@@ -28654,6 +28779,42 @@
28654
28779
  ],
28655
28780
  "type": "object"
28656
28781
  },
28782
+ "WordResult": {
28783
+ "document": "字词信息。",
28784
+ "members": [
28785
+ {
28786
+ "disabled": false,
28787
+ "document": "字词文本。",
28788
+ "example": "腾讯云",
28789
+ "member": "string",
28790
+ "name": "Word",
28791
+ "output_required": true,
28792
+ "type": "string",
28793
+ "value_allowed_null": false
28794
+ },
28795
+ {
28796
+ "disabled": false,
28797
+ "document": "字词起始时间戳,单位秒。",
28798
+ "example": "3.204",
28799
+ "member": "float",
28800
+ "name": "Start",
28801
+ "output_required": false,
28802
+ "type": "float",
28803
+ "value_allowed_null": false
28804
+ },
28805
+ {
28806
+ "disabled": false,
28807
+ "document": "字词结束时间戳,单位秒。",
28808
+ "example": "5.404",
28809
+ "member": "float",
28810
+ "name": "End",
28811
+ "output_required": false,
28812
+ "type": "float",
28813
+ "value_allowed_null": false
28814
+ }
28815
+ ],
28816
+ "usage": "out"
28817
+ },
28657
28818
  "WorkflowInfo": {
28658
28819
  "document": "工作流信息详情。",
28659
28820
  "members": [
@@ -7104,7 +7104,7 @@
7104
7104
  },
7105
7105
  {
7106
7106
  "disabled": false,
7107
- "document": "\t路由配置",
7107
+ "document": "路由配置",
7108
7108
  "example": "无",
7109
7109
  "member": "EndpointsConf",
7110
7110
  "name": "EndpointsConfig",
@@ -568,6 +568,17 @@
568
568
  "required": false,
569
569
  "type": "int",
570
570
  "value_allowed_null": false
571
+ },
572
+ {
573
+ "disabled": false,
574
+ "document": "控制新一轮对话的触发方式,默认为0。\n- 0表示当服务端语音识别检测出的完整一句话后,自动触发一轮新的对话。\n- 1表示客户端在收到字幕消息后,自行决定是否手动发送聊天信令触发一轮新的对话。",
575
+ "example": "无",
576
+ "member": "uint64",
577
+ "name": "TurnDetectionMode",
578
+ "output_required": false,
579
+ "required": false,
580
+ "type": "int",
581
+ "value_allowed_null": false
571
582
  }
572
583
  ],
573
584
  "usage": "both"
@@ -5907,6 +5918,15 @@
5907
5918
  "name": "StopAfterPlay",
5908
5919
  "required": false,
5909
5920
  "type": "bool"
5921
+ },
5922
+ {
5923
+ "disabled": false,
5924
+ "document": "服务端推送播报音频\n 格式说明:音频以16KHz采样率的单声道格式提供,编码为Base64字符串。\n 输入规则:当提供Audio字段时,将不接受Text字段的输入。系统将直接播放Audio字段中的音频内容。",
5925
+ "example": "无",
5926
+ "member": "string",
5927
+ "name": "Audio",
5928
+ "required": false,
5929
+ "type": "string"
5910
5930
  }
5911
5931
  ],
5912
5932
  "usage": "in"