tencentcloud-sdk-python 3.0.1381__py2.py3-none-any.whl → 3.0.1382__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1381'
17
+ __version__ = '3.0.1382'
@@ -12274,6 +12274,288 @@ class BatchDeleteStreamLinkFlowResponse(AbstractModel):
12274
12274
  self._RequestId = params.get("RequestId")
12275
12275
 
12276
12276
 
12277
+ class BatchProcessMediaRequest(AbstractModel):
12278
+ """BatchProcessMedia请求参数结构体
12279
+
12280
+ """
12281
+
12282
+ def __init__(self):
12283
+ r"""
12284
+ :param _InputInfo: 媒体处理的文件输入信息。
12285
+ :type InputInfo: list of MediaInputInfo
12286
+ :param _OutputStorage: 媒体处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
12287
+ 注意:当InputInfo.Type为URL时,该参数是必填项
12288
+ :type OutputStorage: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
12289
+ :param _OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
12290
+ 如果不填,表示与 InputInfo 中文件所在的目录一致。
12291
+ :type OutputDir: str
12292
+ :param _SmartSubtitlesTask: 智能字幕
12293
+ :type SmartSubtitlesTask: :class:`tencentcloud.mps.v20190612.models.SmartSubtitlesTaskInput`
12294
+ :param _TaskNotifyConfig: 任务的事件通知信息,不填代表不获取事件通知。
12295
+ :type TaskNotifyConfig: :class:`tencentcloud.mps.v20190612.models.TaskNotifyConfig`
12296
+ :param _TasksPriority: 任务流的优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
12297
+ :type TasksPriority: int
12298
+ :param _SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
12299
+ :type SessionContext: str
12300
+ :param _ResourceId: 资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
12301
+ :type ResourceId: str
12302
+ :param _SkipMateData: 是否跳过元信息获取,可选值:
12303
+ 0:表示不跳过
12304
+ 1:表示跳过
12305
+ 默认值:0
12306
+ :type SkipMateData: int
12307
+ """
12308
+ self._InputInfo = None
12309
+ self._OutputStorage = None
12310
+ self._OutputDir = None
12311
+ self._SmartSubtitlesTask = None
12312
+ self._TaskNotifyConfig = None
12313
+ self._TasksPriority = None
12314
+ self._SessionContext = None
12315
+ self._ResourceId = None
12316
+ self._SkipMateData = None
12317
+
12318
+ @property
12319
+ def InputInfo(self):
12320
+ """媒体处理的文件输入信息。
12321
+ :rtype: list of MediaInputInfo
12322
+ """
12323
+ return self._InputInfo
12324
+
12325
+ @InputInfo.setter
12326
+ def InputInfo(self, InputInfo):
12327
+ self._InputInfo = InputInfo
12328
+
12329
+ @property
12330
+ def OutputStorage(self):
12331
+ """媒体处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
12332
+ 注意:当InputInfo.Type为URL时,该参数是必填项
12333
+ :rtype: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
12334
+ """
12335
+ return self._OutputStorage
12336
+
12337
+ @OutputStorage.setter
12338
+ def OutputStorage(self, OutputStorage):
12339
+ self._OutputStorage = OutputStorage
12340
+
12341
+ @property
12342
+ def OutputDir(self):
12343
+ """媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
12344
+ 如果不填,表示与 InputInfo 中文件所在的目录一致。
12345
+ :rtype: str
12346
+ """
12347
+ return self._OutputDir
12348
+
12349
+ @OutputDir.setter
12350
+ def OutputDir(self, OutputDir):
12351
+ self._OutputDir = OutputDir
12352
+
12353
+ @property
12354
+ def SmartSubtitlesTask(self):
12355
+ """智能字幕
12356
+ :rtype: :class:`tencentcloud.mps.v20190612.models.SmartSubtitlesTaskInput`
12357
+ """
12358
+ return self._SmartSubtitlesTask
12359
+
12360
+ @SmartSubtitlesTask.setter
12361
+ def SmartSubtitlesTask(self, SmartSubtitlesTask):
12362
+ self._SmartSubtitlesTask = SmartSubtitlesTask
12363
+
12364
+ @property
12365
+ def TaskNotifyConfig(self):
12366
+ """任务的事件通知信息,不填代表不获取事件通知。
12367
+ :rtype: :class:`tencentcloud.mps.v20190612.models.TaskNotifyConfig`
12368
+ """
12369
+ return self._TaskNotifyConfig
12370
+
12371
+ @TaskNotifyConfig.setter
12372
+ def TaskNotifyConfig(self, TaskNotifyConfig):
12373
+ self._TaskNotifyConfig = TaskNotifyConfig
12374
+
12375
+ @property
12376
+ def TasksPriority(self):
12377
+ """任务流的优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
12378
+ :rtype: int
12379
+ """
12380
+ return self._TasksPriority
12381
+
12382
+ @TasksPriority.setter
12383
+ def TasksPriority(self, TasksPriority):
12384
+ self._TasksPriority = TasksPriority
12385
+
12386
+ @property
12387
+ def SessionContext(self):
12388
+ """来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
12389
+ :rtype: str
12390
+ """
12391
+ return self._SessionContext
12392
+
12393
+ @SessionContext.setter
12394
+ def SessionContext(self, SessionContext):
12395
+ self._SessionContext = SessionContext
12396
+
12397
+ @property
12398
+ def ResourceId(self):
12399
+ """资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
12400
+ :rtype: str
12401
+ """
12402
+ return self._ResourceId
12403
+
12404
+ @ResourceId.setter
12405
+ def ResourceId(self, ResourceId):
12406
+ self._ResourceId = ResourceId
12407
+
12408
+ @property
12409
+ def SkipMateData(self):
12410
+ """是否跳过元信息获取,可选值:
12411
+ 0:表示不跳过
12412
+ 1:表示跳过
12413
+ 默认值:0
12414
+ :rtype: int
12415
+ """
12416
+ return self._SkipMateData
12417
+
12418
+ @SkipMateData.setter
12419
+ def SkipMateData(self, SkipMateData):
12420
+ self._SkipMateData = SkipMateData
12421
+
12422
+
12423
+ def _deserialize(self, params):
12424
+ if params.get("InputInfo") is not None:
12425
+ self._InputInfo = []
12426
+ for item in params.get("InputInfo"):
12427
+ obj = MediaInputInfo()
12428
+ obj._deserialize(item)
12429
+ self._InputInfo.append(obj)
12430
+ if params.get("OutputStorage") is not None:
12431
+ self._OutputStorage = TaskOutputStorage()
12432
+ self._OutputStorage._deserialize(params.get("OutputStorage"))
12433
+ self._OutputDir = params.get("OutputDir")
12434
+ if params.get("SmartSubtitlesTask") is not None:
12435
+ self._SmartSubtitlesTask = SmartSubtitlesTaskInput()
12436
+ self._SmartSubtitlesTask._deserialize(params.get("SmartSubtitlesTask"))
12437
+ if params.get("TaskNotifyConfig") is not None:
12438
+ self._TaskNotifyConfig = TaskNotifyConfig()
12439
+ self._TaskNotifyConfig._deserialize(params.get("TaskNotifyConfig"))
12440
+ self._TasksPriority = params.get("TasksPriority")
12441
+ self._SessionContext = params.get("SessionContext")
12442
+ self._ResourceId = params.get("ResourceId")
12443
+ self._SkipMateData = params.get("SkipMateData")
12444
+ memeber_set = set(params.keys())
12445
+ for name, value in vars(self).items():
12446
+ property_name = name[1:]
12447
+ if property_name in memeber_set:
12448
+ memeber_set.remove(property_name)
12449
+ if len(memeber_set) > 0:
12450
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12451
+
12452
+
12453
+
12454
+ class BatchProcessMediaResponse(AbstractModel):
12455
+ """BatchProcessMedia返回参数结构体
12456
+
12457
+ """
12458
+
12459
+ def __init__(self):
12460
+ r"""
12461
+ :param _TaskId: 任务 ID。
12462
+ :type TaskId: str
12463
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12464
+ :type RequestId: str
12465
+ """
12466
+ self._TaskId = None
12467
+ self._RequestId = None
12468
+
12469
+ @property
12470
+ def TaskId(self):
12471
+ """任务 ID。
12472
+ :rtype: str
12473
+ """
12474
+ return self._TaskId
12475
+
12476
+ @TaskId.setter
12477
+ def TaskId(self, TaskId):
12478
+ self._TaskId = TaskId
12479
+
12480
+ @property
12481
+ def RequestId(self):
12482
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12483
+ :rtype: str
12484
+ """
12485
+ return self._RequestId
12486
+
12487
+ @RequestId.setter
12488
+ def RequestId(self, RequestId):
12489
+ self._RequestId = RequestId
12490
+
12491
+
12492
+ def _deserialize(self, params):
12493
+ self._TaskId = params.get("TaskId")
12494
+ self._RequestId = params.get("RequestId")
12495
+
12496
+
12497
+ class BatchSmartSubtitlesResult(AbstractModel):
12498
+ """智能字幕结果。
12499
+
12500
+ """
12501
+
12502
+ def __init__(self):
12503
+ r"""
12504
+ :param _Input: 智能字幕任务输入信息。
12505
+ 注意:此字段可能返回 null,表示取不到有效值。
12506
+ :type Input: :class:`tencentcloud.mps.v20190612.models.SmartSubtitleTaskResultInput`
12507
+ :param _Outputs: 智能字幕输出信息
12508
+ 注意:此字段可能返回 null,表示取不到有效值。
12509
+ :type Outputs: list of SmartSubtitleTaskBatchOutput
12510
+ """
12511
+ self._Input = None
12512
+ self._Outputs = None
12513
+
12514
+ @property
12515
+ def Input(self):
12516
+ """智能字幕任务输入信息。
12517
+ 注意:此字段可能返回 null,表示取不到有效值。
12518
+ :rtype: :class:`tencentcloud.mps.v20190612.models.SmartSubtitleTaskResultInput`
12519
+ """
12520
+ return self._Input
12521
+
12522
+ @Input.setter
12523
+ def Input(self, Input):
12524
+ self._Input = Input
12525
+
12526
+ @property
12527
+ def Outputs(self):
12528
+ """智能字幕输出信息
12529
+ 注意:此字段可能返回 null,表示取不到有效值。
12530
+ :rtype: list of SmartSubtitleTaskBatchOutput
12531
+ """
12532
+ return self._Outputs
12533
+
12534
+ @Outputs.setter
12535
+ def Outputs(self, Outputs):
12536
+ self._Outputs = Outputs
12537
+
12538
+
12539
+ def _deserialize(self, params):
12540
+ if params.get("Input") is not None:
12541
+ self._Input = SmartSubtitleTaskResultInput()
12542
+ self._Input._deserialize(params.get("Input"))
12543
+ if params.get("Outputs") is not None:
12544
+ self._Outputs = []
12545
+ for item in params.get("Outputs"):
12546
+ obj = SmartSubtitleTaskBatchOutput()
12547
+ obj._deserialize(item)
12548
+ self._Outputs.append(obj)
12549
+ memeber_set = set(params.keys())
12550
+ for name, value in vars(self).items():
12551
+ property_name = name[1:]
12552
+ if property_name in memeber_set:
12553
+ memeber_set.remove(property_name)
12554
+ if len(memeber_set) > 0:
12555
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12556
+
12557
+
12558
+
12277
12559
  class BatchStartStreamLinkFlowRequest(AbstractModel):
12278
12560
  """BatchStartStreamLinkFlow请求参数结构体
12279
12561
 
@@ -12432,6 +12714,90 @@ class BatchStopStreamLinkFlowResponse(AbstractModel):
12432
12714
  self._RequestId = params.get("RequestId")
12433
12715
 
12434
12716
 
12717
+ class BatchSubTaskResult(AbstractModel):
12718
+ """批量任务子任务结果
12719
+
12720
+ """
12721
+
12722
+ def __init__(self):
12723
+ r"""
12724
+ :param _InputInfos: 批量任务输入信息
12725
+ 注意:此字段可能返回 null,表示取不到有效值。
12726
+ :type InputInfos: list of MediaInputInfo
12727
+ :param _Metadatas: 原始视频的元信息。
12728
+ 注意:此字段可能返回 null,表示取不到有效值。
12729
+ :type Metadatas: list of MediaMetaData
12730
+ :param _SmartSubtitlesTaskResult: 智能字幕任务的执行结果
12731
+ 注意:此字段可能返回 null,表示取不到有效值。
12732
+ :type SmartSubtitlesTaskResult: :class:`tencentcloud.mps.v20190612.models.BatchSmartSubtitlesResult`
12733
+ """
12734
+ self._InputInfos = None
12735
+ self._Metadatas = None
12736
+ self._SmartSubtitlesTaskResult = None
12737
+
12738
+ @property
12739
+ def InputInfos(self):
12740
+ """批量任务输入信息
12741
+ 注意:此字段可能返回 null,表示取不到有效值。
12742
+ :rtype: list of MediaInputInfo
12743
+ """
12744
+ return self._InputInfos
12745
+
12746
+ @InputInfos.setter
12747
+ def InputInfos(self, InputInfos):
12748
+ self._InputInfos = InputInfos
12749
+
12750
+ @property
12751
+ def Metadatas(self):
12752
+ """原始视频的元信息。
12753
+ 注意:此字段可能返回 null,表示取不到有效值。
12754
+ :rtype: list of MediaMetaData
12755
+ """
12756
+ return self._Metadatas
12757
+
12758
+ @Metadatas.setter
12759
+ def Metadatas(self, Metadatas):
12760
+ self._Metadatas = Metadatas
12761
+
12762
+ @property
12763
+ def SmartSubtitlesTaskResult(self):
12764
+ """智能字幕任务的执行结果
12765
+ 注意:此字段可能返回 null,表示取不到有效值。
12766
+ :rtype: :class:`tencentcloud.mps.v20190612.models.BatchSmartSubtitlesResult`
12767
+ """
12768
+ return self._SmartSubtitlesTaskResult
12769
+
12770
+ @SmartSubtitlesTaskResult.setter
12771
+ def SmartSubtitlesTaskResult(self, SmartSubtitlesTaskResult):
12772
+ self._SmartSubtitlesTaskResult = SmartSubtitlesTaskResult
12773
+
12774
+
12775
+ def _deserialize(self, params):
12776
+ if params.get("InputInfos") is not None:
12777
+ self._InputInfos = []
12778
+ for item in params.get("InputInfos"):
12779
+ obj = MediaInputInfo()
12780
+ obj._deserialize(item)
12781
+ self._InputInfos.append(obj)
12782
+ if params.get("Metadatas") is not None:
12783
+ self._Metadatas = []
12784
+ for item in params.get("Metadatas"):
12785
+ obj = MediaMetaData()
12786
+ obj._deserialize(item)
12787
+ self._Metadatas.append(obj)
12788
+ if params.get("SmartSubtitlesTaskResult") is not None:
12789
+ self._SmartSubtitlesTaskResult = BatchSmartSubtitlesResult()
12790
+ self._SmartSubtitlesTaskResult._deserialize(params.get("SmartSubtitlesTaskResult"))
12791
+ memeber_set = set(params.keys())
12792
+ for name, value in vars(self).items():
12793
+ property_name = name[1:]
12794
+ if property_name in memeber_set:
12795
+ memeber_set.remove(property_name)
12796
+ if len(memeber_set) > 0:
12797
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12798
+
12799
+
12800
+
12435
12801
  class ClassificationConfigureInfo(AbstractModel):
12436
12802
  """智能分类任务控制参数
12437
12803
 
@@ -23683,6 +24049,266 @@ class DescribeAsrHotwordsResponse(AbstractModel):
23683
24049
  self._RequestId = params.get("RequestId")
23684
24050
 
23685
24051
 
24052
+ class DescribeBatchTaskDetailRequest(AbstractModel):
24053
+ """DescribeBatchTaskDetail请求参数结构体
24054
+
24055
+ """
24056
+
24057
+ def __init__(self):
24058
+ r"""
24059
+ :param _TaskId: 视频处理任务的任务 ID。
24060
+ :type TaskId: str
24061
+ """
24062
+ self._TaskId = None
24063
+
24064
+ @property
24065
+ def TaskId(self):
24066
+ """视频处理任务的任务 ID。
24067
+ :rtype: str
24068
+ """
24069
+ return self._TaskId
24070
+
24071
+ @TaskId.setter
24072
+ def TaskId(self, TaskId):
24073
+ self._TaskId = TaskId
24074
+
24075
+
24076
+ def _deserialize(self, params):
24077
+ self._TaskId = params.get("TaskId")
24078
+ memeber_set = set(params.keys())
24079
+ for name, value in vars(self).items():
24080
+ property_name = name[1:]
24081
+ if property_name in memeber_set:
24082
+ memeber_set.remove(property_name)
24083
+ if len(memeber_set) > 0:
24084
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
24085
+
24086
+
24087
+
24088
+ class DescribeBatchTaskDetailResponse(AbstractModel):
24089
+ """DescribeBatchTaskDetail返回参数结构体
24090
+
24091
+ """
24092
+
24093
+ def __init__(self):
24094
+ r"""
24095
+ :param _TaskType: 任务类型,目前取值有:
24096
+ <li>BatchTask:视频工作流批量处理任务。</li>
24097
+ :type TaskType: str
24098
+ :param _Status: 任务状态,取值:
24099
+ <li>WAITING:等待中;</li>
24100
+ <li>PROCESSING:处理中;</li>
24101
+ <li>FINISH:已完成。</li>
24102
+ :type Status: str
24103
+ :param _CreateTime: 任务的创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
24104
+ :type CreateTime: str
24105
+ :param _BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
24106
+ :type BeginProcessTime: str
24107
+ :param _FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
24108
+ :type FinishTime: str
24109
+ :param _TaskId: 媒体处理任务 ID。
24110
+ :type TaskId: str
24111
+ :param _BatchTaskResult: 视频处理任务信息,仅当 TaskType 为 BatchTask,该字段有值。
24112
+ 注意:此字段可能返回 null,表示取不到有效值。
24113
+ :type BatchTaskResult: :class:`tencentcloud.mps.v20190612.models.BatchSubTaskResult`
24114
+ :param _TaskNotifyConfig: 任务的事件通知信息。
24115
+ 注意:此字段可能返回 null,表示取不到有效值。
24116
+ :type TaskNotifyConfig: :class:`tencentcloud.mps.v20190612.models.TaskNotifyConfig`
24117
+ :param _TasksPriority: 任务流的优先级,取值范围为 [-10, 10]。
24118
+ :type TasksPriority: int
24119
+ :param _SessionId: 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
24120
+ :type SessionId: str
24121
+ :param _SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长1000个字符。
24122
+ :type SessionContext: str
24123
+ :param _ExtInfo: 扩展信息字段,仅用于特定场景。
24124
+ :type ExtInfo: str
24125
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
24126
+ :type RequestId: str
24127
+ """
24128
+ self._TaskType = None
24129
+ self._Status = None
24130
+ self._CreateTime = None
24131
+ self._BeginProcessTime = None
24132
+ self._FinishTime = None
24133
+ self._TaskId = None
24134
+ self._BatchTaskResult = None
24135
+ self._TaskNotifyConfig = None
24136
+ self._TasksPriority = None
24137
+ self._SessionId = None
24138
+ self._SessionContext = None
24139
+ self._ExtInfo = None
24140
+ self._RequestId = None
24141
+
24142
+ @property
24143
+ def TaskType(self):
24144
+ """任务类型,目前取值有:
24145
+ <li>BatchTask:视频工作流批量处理任务。</li>
24146
+ :rtype: str
24147
+ """
24148
+ return self._TaskType
24149
+
24150
+ @TaskType.setter
24151
+ def TaskType(self, TaskType):
24152
+ self._TaskType = TaskType
24153
+
24154
+ @property
24155
+ def Status(self):
24156
+ """任务状态,取值:
24157
+ <li>WAITING:等待中;</li>
24158
+ <li>PROCESSING:处理中;</li>
24159
+ <li>FINISH:已完成。</li>
24160
+ :rtype: str
24161
+ """
24162
+ return self._Status
24163
+
24164
+ @Status.setter
24165
+ def Status(self, Status):
24166
+ self._Status = Status
24167
+
24168
+ @property
24169
+ def CreateTime(self):
24170
+ """任务的创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
24171
+ :rtype: str
24172
+ """
24173
+ return self._CreateTime
24174
+
24175
+ @CreateTime.setter
24176
+ def CreateTime(self, CreateTime):
24177
+ self._CreateTime = CreateTime
24178
+
24179
+ @property
24180
+ def BeginProcessTime(self):
24181
+ """任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
24182
+ :rtype: str
24183
+ """
24184
+ return self._BeginProcessTime
24185
+
24186
+ @BeginProcessTime.setter
24187
+ def BeginProcessTime(self, BeginProcessTime):
24188
+ self._BeginProcessTime = BeginProcessTime
24189
+
24190
+ @property
24191
+ def FinishTime(self):
24192
+ """任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
24193
+ :rtype: str
24194
+ """
24195
+ return self._FinishTime
24196
+
24197
+ @FinishTime.setter
24198
+ def FinishTime(self, FinishTime):
24199
+ self._FinishTime = FinishTime
24200
+
24201
+ @property
24202
+ def TaskId(self):
24203
+ """媒体处理任务 ID。
24204
+ :rtype: str
24205
+ """
24206
+ return self._TaskId
24207
+
24208
+ @TaskId.setter
24209
+ def TaskId(self, TaskId):
24210
+ self._TaskId = TaskId
24211
+
24212
+ @property
24213
+ def BatchTaskResult(self):
24214
+ """视频处理任务信息,仅当 TaskType 为 BatchTask,该字段有值。
24215
+ 注意:此字段可能返回 null,表示取不到有效值。
24216
+ :rtype: :class:`tencentcloud.mps.v20190612.models.BatchSubTaskResult`
24217
+ """
24218
+ return self._BatchTaskResult
24219
+
24220
+ @BatchTaskResult.setter
24221
+ def BatchTaskResult(self, BatchTaskResult):
24222
+ self._BatchTaskResult = BatchTaskResult
24223
+
24224
+ @property
24225
+ def TaskNotifyConfig(self):
24226
+ """任务的事件通知信息。
24227
+ 注意:此字段可能返回 null,表示取不到有效值。
24228
+ :rtype: :class:`tencentcloud.mps.v20190612.models.TaskNotifyConfig`
24229
+ """
24230
+ return self._TaskNotifyConfig
24231
+
24232
+ @TaskNotifyConfig.setter
24233
+ def TaskNotifyConfig(self, TaskNotifyConfig):
24234
+ self._TaskNotifyConfig = TaskNotifyConfig
24235
+
24236
+ @property
24237
+ def TasksPriority(self):
24238
+ """任务流的优先级,取值范围为 [-10, 10]。
24239
+ :rtype: int
24240
+ """
24241
+ return self._TasksPriority
24242
+
24243
+ @TasksPriority.setter
24244
+ def TasksPriority(self, TasksPriority):
24245
+ self._TasksPriority = TasksPriority
24246
+
24247
+ @property
24248
+ def SessionId(self):
24249
+ """用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
24250
+ :rtype: str
24251
+ """
24252
+ return self._SessionId
24253
+
24254
+ @SessionId.setter
24255
+ def SessionId(self, SessionId):
24256
+ self._SessionId = SessionId
24257
+
24258
+ @property
24259
+ def SessionContext(self):
24260
+ """来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长1000个字符。
24261
+ :rtype: str
24262
+ """
24263
+ return self._SessionContext
24264
+
24265
+ @SessionContext.setter
24266
+ def SessionContext(self, SessionContext):
24267
+ self._SessionContext = SessionContext
24268
+
24269
+ @property
24270
+ def ExtInfo(self):
24271
+ """扩展信息字段,仅用于特定场景。
24272
+ :rtype: str
24273
+ """
24274
+ return self._ExtInfo
24275
+
24276
+ @ExtInfo.setter
24277
+ def ExtInfo(self, ExtInfo):
24278
+ self._ExtInfo = ExtInfo
24279
+
24280
+ @property
24281
+ def RequestId(self):
24282
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
24283
+ :rtype: str
24284
+ """
24285
+ return self._RequestId
24286
+
24287
+ @RequestId.setter
24288
+ def RequestId(self, RequestId):
24289
+ self._RequestId = RequestId
24290
+
24291
+
24292
+ def _deserialize(self, params):
24293
+ self._TaskType = params.get("TaskType")
24294
+ self._Status = params.get("Status")
24295
+ self._CreateTime = params.get("CreateTime")
24296
+ self._BeginProcessTime = params.get("BeginProcessTime")
24297
+ self._FinishTime = params.get("FinishTime")
24298
+ self._TaskId = params.get("TaskId")
24299
+ if params.get("BatchTaskResult") is not None:
24300
+ self._BatchTaskResult = BatchSubTaskResult()
24301
+ self._BatchTaskResult._deserialize(params.get("BatchTaskResult"))
24302
+ if params.get("TaskNotifyConfig") is not None:
24303
+ self._TaskNotifyConfig = TaskNotifyConfig()
24304
+ self._TaskNotifyConfig._deserialize(params.get("TaskNotifyConfig"))
24305
+ self._TasksPriority = params.get("TasksPriority")
24306
+ self._SessionId = params.get("SessionId")
24307
+ self._SessionContext = params.get("SessionContext")
24308
+ self._ExtInfo = params.get("ExtInfo")
24309
+ self._RequestId = params.get("RequestId")
24310
+
24311
+
23686
24312
  class DescribeContentReviewTemplatesRequest(AbstractModel):
23687
24313
  """DescribeContentReviewTemplates请求参数结构体
23688
24314
 
@@ -24487,6 +25113,148 @@ class DescribeImageSpriteTemplatesResponse(AbstractModel):
24487
25113
  self._RequestId = params.get("RequestId")
24488
25114
 
24489
25115
 
25116
+ class DescribeImageTaskDetailRequest(AbstractModel):
25117
+ """DescribeImageTaskDetail请求参数结构体
25118
+
25119
+ """
25120
+
25121
+ def __init__(self):
25122
+ r"""
25123
+ :param _TaskId: 图片处理任务的任务 ID。
25124
+ :type TaskId: str
25125
+ """
25126
+ self._TaskId = None
25127
+
25128
+ @property
25129
+ def TaskId(self):
25130
+ """图片处理任务的任务 ID。
25131
+ :rtype: str
25132
+ """
25133
+ return self._TaskId
25134
+
25135
+ @TaskId.setter
25136
+ def TaskId(self, TaskId):
25137
+ self._TaskId = TaskId
25138
+
25139
+
25140
+ def _deserialize(self, params):
25141
+ self._TaskId = params.get("TaskId")
25142
+ memeber_set = set(params.keys())
25143
+ for name, value in vars(self).items():
25144
+ property_name = name[1:]
25145
+ if property_name in memeber_set:
25146
+ memeber_set.remove(property_name)
25147
+ if len(memeber_set) > 0:
25148
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
25149
+
25150
+
25151
+
25152
+ class DescribeImageTaskDetailResponse(AbstractModel):
25153
+ """DescribeImageTaskDetail返回参数结构体
25154
+
25155
+ """
25156
+
25157
+ def __init__(self):
25158
+ r"""
25159
+ :param _TaskType: 任务类型,目前取值有:
25160
+ <li>WorkflowTask:工作流处理任务。</li>
25161
+
25162
+ 注意:此字段可能返回 null,表示取不到有效值。
25163
+ :type TaskType: str
25164
+ :param _Status: 任务状态,取值:
25165
+ <li>WAITING:等待中;</li>
25166
+ <li>PROCESSING:处理中;</li>
25167
+ <li>FINISH:已完成。</li>
25168
+ 注意:此字段可能返回 null,表示取不到有效值。
25169
+ :type Status: str
25170
+ :param _CreateTime: 任务的创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
25171
+ 注意:此字段可能返回 null,表示取不到有效值。
25172
+ :type CreateTime: str
25173
+ :param _FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
25174
+ 注意:此字段可能返回 null,表示取不到有效值。
25175
+ :type FinishTime: str
25176
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
25177
+ :type RequestId: str
25178
+ """
25179
+ self._TaskType = None
25180
+ self._Status = None
25181
+ self._CreateTime = None
25182
+ self._FinishTime = None
25183
+ self._RequestId = None
25184
+
25185
+ @property
25186
+ def TaskType(self):
25187
+ """任务类型,目前取值有:
25188
+ <li>WorkflowTask:工作流处理任务。</li>
25189
+
25190
+ 注意:此字段可能返回 null,表示取不到有效值。
25191
+ :rtype: str
25192
+ """
25193
+ return self._TaskType
25194
+
25195
+ @TaskType.setter
25196
+ def TaskType(self, TaskType):
25197
+ self._TaskType = TaskType
25198
+
25199
+ @property
25200
+ def Status(self):
25201
+ """任务状态,取值:
25202
+ <li>WAITING:等待中;</li>
25203
+ <li>PROCESSING:处理中;</li>
25204
+ <li>FINISH:已完成。</li>
25205
+ 注意:此字段可能返回 null,表示取不到有效值。
25206
+ :rtype: str
25207
+ """
25208
+ return self._Status
25209
+
25210
+ @Status.setter
25211
+ def Status(self, Status):
25212
+ self._Status = Status
25213
+
25214
+ @property
25215
+ def CreateTime(self):
25216
+ """任务的创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
25217
+ 注意:此字段可能返回 null,表示取不到有效值。
25218
+ :rtype: str
25219
+ """
25220
+ return self._CreateTime
25221
+
25222
+ @CreateTime.setter
25223
+ def CreateTime(self, CreateTime):
25224
+ self._CreateTime = CreateTime
25225
+
25226
+ @property
25227
+ def FinishTime(self):
25228
+ """任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
25229
+ 注意:此字段可能返回 null,表示取不到有效值。
25230
+ :rtype: str
25231
+ """
25232
+ return self._FinishTime
25233
+
25234
+ @FinishTime.setter
25235
+ def FinishTime(self, FinishTime):
25236
+ self._FinishTime = FinishTime
25237
+
25238
+ @property
25239
+ def RequestId(self):
25240
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
25241
+ :rtype: str
25242
+ """
25243
+ return self._RequestId
25244
+
25245
+ @RequestId.setter
25246
+ def RequestId(self, RequestId):
25247
+ self._RequestId = RequestId
25248
+
25249
+
25250
+ def _deserialize(self, params):
25251
+ self._TaskType = params.get("TaskType")
25252
+ self._Status = params.get("Status")
25253
+ self._CreateTime = params.get("CreateTime")
25254
+ self._FinishTime = params.get("FinishTime")
25255
+ self._RequestId = params.get("RequestId")
25256
+
25257
+
24490
25258
  class DescribeInput(AbstractModel):
24491
25259
  """查询输入配置信息。
24492
25260
 
@@ -55952,6 +56720,125 @@ class SmartSubtitleTaskAsrFullTextSegmentItem(AbstractModel):
55952
56720
 
55953
56721
 
55954
56722
 
56723
+ class SmartSubtitleTaskBatchOutput(AbstractModel):
56724
+ """智能字幕输出信息
56725
+
56726
+ """
56727
+
56728
+ def __init__(self):
56729
+ r"""
56730
+ :param _Progress: 任务进度。
56731
+ :type Progress: int
56732
+ :param _Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
56733
+ :type Status: str
56734
+ :param _ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
56735
+ :type ErrCodeExt: str
56736
+ :param _Message: 错误信息。
56737
+ :type Message: str
56738
+ :param _TransTextTask: 翻译任务输出信息。
56739
+ 注意:此字段可能返回 null,表示取不到有效值。
56740
+ :type TransTextTask: :class:`tencentcloud.mps.v20190612.models.SmartSubtitleTaskTransTextResultOutput`
56741
+ :param _AsrFullTextTask: 语音全文识别任务输出信息。
56742
+ 注意:此字段可能返回 null,表示取不到有效值。
56743
+ :type AsrFullTextTask: :class:`tencentcloud.mps.v20190612.models.SmartSubtitleTaskAsrFullTextResultOutput`
56744
+ """
56745
+ self._Progress = None
56746
+ self._Status = None
56747
+ self._ErrCodeExt = None
56748
+ self._Message = None
56749
+ self._TransTextTask = None
56750
+ self._AsrFullTextTask = None
56751
+
56752
+ @property
56753
+ def Progress(self):
56754
+ """任务进度。
56755
+ :rtype: int
56756
+ """
56757
+ return self._Progress
56758
+
56759
+ @Progress.setter
56760
+ def Progress(self, Progress):
56761
+ self._Progress = Progress
56762
+
56763
+ @property
56764
+ def Status(self):
56765
+ """任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
56766
+ :rtype: str
56767
+ """
56768
+ return self._Status
56769
+
56770
+ @Status.setter
56771
+ def Status(self, Status):
56772
+ self._Status = Status
56773
+
56774
+ @property
56775
+ def ErrCodeExt(self):
56776
+ """错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
56777
+ :rtype: str
56778
+ """
56779
+ return self._ErrCodeExt
56780
+
56781
+ @ErrCodeExt.setter
56782
+ def ErrCodeExt(self, ErrCodeExt):
56783
+ self._ErrCodeExt = ErrCodeExt
56784
+
56785
+ @property
56786
+ def Message(self):
56787
+ """错误信息。
56788
+ :rtype: str
56789
+ """
56790
+ return self._Message
56791
+
56792
+ @Message.setter
56793
+ def Message(self, Message):
56794
+ self._Message = Message
56795
+
56796
+ @property
56797
+ def TransTextTask(self):
56798
+ """翻译任务输出信息。
56799
+ 注意:此字段可能返回 null,表示取不到有效值。
56800
+ :rtype: :class:`tencentcloud.mps.v20190612.models.SmartSubtitleTaskTransTextResultOutput`
56801
+ """
56802
+ return self._TransTextTask
56803
+
56804
+ @TransTextTask.setter
56805
+ def TransTextTask(self, TransTextTask):
56806
+ self._TransTextTask = TransTextTask
56807
+
56808
+ @property
56809
+ def AsrFullTextTask(self):
56810
+ """语音全文识别任务输出信息。
56811
+ 注意:此字段可能返回 null,表示取不到有效值。
56812
+ :rtype: :class:`tencentcloud.mps.v20190612.models.SmartSubtitleTaskAsrFullTextResultOutput`
56813
+ """
56814
+ return self._AsrFullTextTask
56815
+
56816
+ @AsrFullTextTask.setter
56817
+ def AsrFullTextTask(self, AsrFullTextTask):
56818
+ self._AsrFullTextTask = AsrFullTextTask
56819
+
56820
+
56821
+ def _deserialize(self, params):
56822
+ self._Progress = params.get("Progress")
56823
+ self._Status = params.get("Status")
56824
+ self._ErrCodeExt = params.get("ErrCodeExt")
56825
+ self._Message = params.get("Message")
56826
+ if params.get("TransTextTask") is not None:
56827
+ self._TransTextTask = SmartSubtitleTaskTransTextResultOutput()
56828
+ self._TransTextTask._deserialize(params.get("TransTextTask"))
56829
+ if params.get("AsrFullTextTask") is not None:
56830
+ self._AsrFullTextTask = SmartSubtitleTaskAsrFullTextResultOutput()
56831
+ self._AsrFullTextTask._deserialize(params.get("AsrFullTextTask"))
56832
+ memeber_set = set(params.keys())
56833
+ for name, value in vars(self).items():
56834
+ property_name = name[1:]
56835
+ if property_name in memeber_set:
56836
+ memeber_set.remove(property_name)
56837
+ if len(memeber_set) > 0:
56838
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
56839
+
56840
+
56841
+
55955
56842
  class SmartSubtitleTaskResultInput(AbstractModel):
55956
56843
  """智能字幕翻译的输入。
55957
56844
 
@@ -49,6 +49,30 @@ class MpsClient(AbstractClient):
49
49
  raise TencentCloudSDKException(type(e).__name__, str(e))
50
50
 
51
51
 
52
+ def BatchProcessMedia(self, request):
53
+ """对 URL视频链接批量发起处理任务,功能包括:
54
+ 智能字幕(语音全文、语音热词、语音翻译)
55
+
56
+ :param request: Request instance for BatchProcessMedia.
57
+ :type request: :class:`tencentcloud.mps.v20190612.models.BatchProcessMediaRequest`
58
+ :rtype: :class:`tencentcloud.mps.v20190612.models.BatchProcessMediaResponse`
59
+
60
+ """
61
+ try:
62
+ params = request._serialize()
63
+ headers = request.headers
64
+ body = self.call("BatchProcessMedia", params, headers=headers)
65
+ response = json.loads(body)
66
+ model = models.BatchProcessMediaResponse()
67
+ model._deserialize(response["Response"])
68
+ return model
69
+ except Exception as e:
70
+ if isinstance(e, TencentCloudSDKException):
71
+ raise
72
+ else:
73
+ raise TencentCloudSDKException(type(e).__name__, str(e))
74
+
75
+
52
76
  def BatchStartStreamLinkFlow(self, request):
53
77
  """批量启动媒体传输流。
54
78
 
@@ -1339,6 +1363,29 @@ class MpsClient(AbstractClient):
1339
1363
  raise TencentCloudSDKException(type(e).__name__, str(e))
1340
1364
 
1341
1365
 
1366
+ def DescribeBatchTaskDetail(self, request):
1367
+ """通过任务 ID 查询任务的执行状态和结果的详细信息(最多可以查询7天之内提交的任务)。
1368
+
1369
+ :param request: Request instance for DescribeBatchTaskDetail.
1370
+ :type request: :class:`tencentcloud.mps.v20190612.models.DescribeBatchTaskDetailRequest`
1371
+ :rtype: :class:`tencentcloud.mps.v20190612.models.DescribeBatchTaskDetailResponse`
1372
+
1373
+ """
1374
+ try:
1375
+ params = request._serialize()
1376
+ headers = request.headers
1377
+ body = self.call("DescribeBatchTaskDetail", params, headers=headers)
1378
+ response = json.loads(body)
1379
+ model = models.DescribeBatchTaskDetailResponse()
1380
+ model._deserialize(response["Response"])
1381
+ return model
1382
+ except Exception as e:
1383
+ if isinstance(e, TencentCloudSDKException):
1384
+ raise
1385
+ else:
1386
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1387
+
1388
+
1342
1389
  def DescribeContentReviewTemplates(self, request):
1343
1390
  """根据智能审核模板唯一标识,获取智能审核模板详情列表。返回结果包含符合条件的所有用户自定义模板及系统预置智能审核模板。
1344
1391
 
@@ -1408,6 +1455,29 @@ class MpsClient(AbstractClient):
1408
1455
  raise TencentCloudSDKException(type(e).__name__, str(e))
1409
1456
 
1410
1457
 
1458
+ def DescribeImageTaskDetail(self, request):
1459
+ """通过任务 ID 查询任务的执行状态和结果的详细信息(最多可以查询7天之内提交的任务)。
1460
+
1461
+ :param request: Request instance for DescribeImageTaskDetail.
1462
+ :type request: :class:`tencentcloud.mps.v20190612.models.DescribeImageTaskDetailRequest`
1463
+ :rtype: :class:`tencentcloud.mps.v20190612.models.DescribeImageTaskDetailResponse`
1464
+
1465
+ """
1466
+ try:
1467
+ params = request._serialize()
1468
+ headers = request.headers
1469
+ body = self.call("DescribeImageTaskDetail", params, headers=headers)
1470
+ response = json.loads(body)
1471
+ model = models.DescribeImageTaskDetailResponse()
1472
+ model._deserialize(response["Response"])
1473
+ return model
1474
+ except Exception as e:
1475
+ if isinstance(e, TencentCloudSDKException):
1476
+ raise
1477
+ else:
1478
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1479
+
1480
+
1411
1481
  def DescribeLiveRecordTemplates(self, request):
1412
1482
  """获取直播录制模板
1413
1483
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1381
3
+ Version: 3.0.1382
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
50
50
  QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
51
51
  QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
52
52
  QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
53
- tencentcloud/__init__.py,sha256=GhoOav0ABYf6QpO2QMA01Gas5XzLKJzbbsSo66F0_oU,631
53
+ tencentcloud/__init__.py,sha256=xTwniTdAh9AhDHgxriM2UbC0qwU76gqUKxAZ_QT8rfc,631
54
54
  tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  tencentcloud/aai/v20180522/aai_client.py,sha256=UNkXLBkE-C-wBaan9RD0U4t2H-XCJDTPgWDFYzUitgE,5497
@@ -925,8 +925,8 @@ tencentcloud/monitor/v20230616/monitor_client.py,sha256=4yo6-frhbUpRJ_zbHR5CGa5H
925
925
  tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
926
926
  tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
927
927
  tencentcloud/mps/v20190612/errorcodes.py,sha256=wx4ZpyS-O21p75AdK5JY47D7vHqYOdJ0fMHyvvS9Dtk,15756
928
- tencentcloud/mps/v20190612/models.py,sha256=iL1ndemgJBB7QBNlWoEmVicIbuNGKeRP_UJiTnH0z5c,2163167
929
- tencentcloud/mps/v20190612/mps_client.py,sha256=2Q5VTyvI__Y7obZis2naRPAEKKOzNNyyU50w3SGVnbs,127148
928
+ tencentcloud/mps/v20190612/models.py,sha256=e8x8imNLljb7ERmEoGrpDlfCE9psvoeutPmsR9Gr8t0,2194544
929
+ tencentcloud/mps/v20190612/mps_client.py,sha256=sXNHHbJlF2Cd7EdwKb5DUWImm9XHD9Zwq60SeaYRB0c,130141
930
930
  tencentcloud/mqtt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
931
931
  tencentcloud/mqtt/v20240516/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
932
932
  tencentcloud/mqtt/v20240516/errorcodes.py,sha256=ruQ-PnFAi9wKAU3FQ7DEOukeu62XEkOTw4L-Wdky-d0,2713
@@ -1507,8 +1507,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1507
1507
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
1508
1508
  tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
1509
1509
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
1510
- tencentcloud_sdk_python-3.0.1381.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1511
- tencentcloud_sdk_python-3.0.1381.dist-info/METADATA,sha256=P19xpMUDzst55kDvM_tNt3vQvC7XQHS_4YAbST5KW24,1613
1512
- tencentcloud_sdk_python-3.0.1381.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1513
- tencentcloud_sdk_python-3.0.1381.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1514
- tencentcloud_sdk_python-3.0.1381.dist-info/RECORD,,
1510
+ tencentcloud_sdk_python-3.0.1382.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1511
+ tencentcloud_sdk_python-3.0.1382.dist-info/METADATA,sha256=oZAF8TAfPRRuhECKhfY7vccJ540V2yPc7YGesZxRFnU,1613
1512
+ tencentcloud_sdk_python-3.0.1382.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1513
+ tencentcloud_sdk_python-3.0.1382.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1514
+ tencentcloud_sdk_python-3.0.1382.dist-info/RECORD,,