tencentcloud-sdk-python-mps 3.1.138__py2.py3-none-any.whl → 3.1.140__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.1.138'
17
+ __version__ = '3.1.140'
@@ -44,6 +44,9 @@ FAILEDOPERATION_INVALIDUSER = 'FailedOperation.InvalidUser'
44
44
  # 操作失败:网络错误。
45
45
  FAILEDOPERATION_NETWORKERROR = 'FailedOperation.NetWorkError'
46
46
 
47
+ # 查询任务发生错误
48
+ FAILEDOPERATION_QUERYAIGCTASKFAILED = 'FailedOperation.QueryAIGCTaskFailed'
49
+
47
50
  # 操作失败:设置源通知错误。
48
51
  FAILEDOPERATION_SETSOURCENOTIFY = 'FailedOperation.SetSourceNotify'
49
52
 
@@ -578,6 +581,9 @@ RESOURCENOTFOUND_DOWNLOADERROR = 'ResourceNotFound.DownloadError'
578
581
  # 资源不存在:人物。
579
582
  RESOURCENOTFOUND_PERSON = 'ResourceNotFound.Person'
580
583
 
584
+ # 任务不存在
585
+ RESOURCENOTFOUND_TASKNOTFOUND = 'ResourceNotFound.TaskNotFound'
586
+
581
587
  # 资源不存在:模板不存在。
582
588
  RESOURCENOTFOUND_TEMPLATENOTEXIST = 'ResourceNotFound.TemplateNotExist'
583
589
 
@@ -22544,6 +22544,87 @@ class CreateDocToVideoTaskResponse(AbstractModel):
22544
22544
  self._RequestId = params.get("RequestId")
22545
22545
 
22546
22546
 
22547
+ class CreateImageConfig(AbstractModel):
22548
+ r"""生图任务。
22549
+
22550
+ """
22551
+
22552
+ def __init__(self):
22553
+ r"""
22554
+ :param _Model: <p>生图模型</p><p>枚举值:</p><ul><li>WAND-create-1.0-lite: 轻量生图模型</li><li>WAND-create-1.0-flash: 质量-速度平衡生图模型</li><li>WAND-create-1.0-pro: 高质量生图模型</li></ul>
22555
+ :type Model: str
22556
+ :param _Prompt: <p>生图指令</p>
22557
+ :type Prompt: str
22558
+ :param _Resolution: <p>输出图片的分辨率</p><p>枚举值:</p><ul><li>1K: 短边分辨率 1080</li><li>2K: 短边分辨率 1440</li><li>4K: 短边分辨率 2160</li></ul><p>默认值:1K</p>
22559
+ :type Resolution: str
22560
+ :param _AspectRatio: <p>输出图片的宽高比</p><p>枚举值:</p><ul><li>1:1: 宽高比 1:1</li><li>2:3: 宽高比 2:3</li><li>3:2: 宽高比 3:2</li><li>3:4: 宽高比 3:4</li><li>4:3: 宽高比 4:3</li><li>9:16: 宽高比 9:16</li><li>16:9: 宽高比 16:9</li></ul><p>默认值:1:1</p>
22561
+ :type AspectRatio: str
22562
+ """
22563
+ self._Model = None
22564
+ self._Prompt = None
22565
+ self._Resolution = None
22566
+ self._AspectRatio = None
22567
+
22568
+ @property
22569
+ def Model(self):
22570
+ r"""<p>生图模型</p><p>枚举值:</p><ul><li>WAND-create-1.0-lite: 轻量生图模型</li><li>WAND-create-1.0-flash: 质量-速度平衡生图模型</li><li>WAND-create-1.0-pro: 高质量生图模型</li></ul>
22571
+ :rtype: str
22572
+ """
22573
+ return self._Model
22574
+
22575
+ @Model.setter
22576
+ def Model(self, Model):
22577
+ self._Model = Model
22578
+
22579
+ @property
22580
+ def Prompt(self):
22581
+ r"""<p>生图指令</p>
22582
+ :rtype: str
22583
+ """
22584
+ return self._Prompt
22585
+
22586
+ @Prompt.setter
22587
+ def Prompt(self, Prompt):
22588
+ self._Prompt = Prompt
22589
+
22590
+ @property
22591
+ def Resolution(self):
22592
+ r"""<p>输出图片的分辨率</p><p>枚举值:</p><ul><li>1K: 短边分辨率 1080</li><li>2K: 短边分辨率 1440</li><li>4K: 短边分辨率 2160</li></ul><p>默认值:1K</p>
22593
+ :rtype: str
22594
+ """
22595
+ return self._Resolution
22596
+
22597
+ @Resolution.setter
22598
+ def Resolution(self, Resolution):
22599
+ self._Resolution = Resolution
22600
+
22601
+ @property
22602
+ def AspectRatio(self):
22603
+ r"""<p>输出图片的宽高比</p><p>枚举值:</p><ul><li>1:1: 宽高比 1:1</li><li>2:3: 宽高比 2:3</li><li>3:2: 宽高比 3:2</li><li>3:4: 宽高比 3:4</li><li>4:3: 宽高比 4:3</li><li>9:16: 宽高比 9:16</li><li>16:9: 宽高比 16:9</li></ul><p>默认值:1:1</p>
22604
+ :rtype: str
22605
+ """
22606
+ return self._AspectRatio
22607
+
22608
+ @AspectRatio.setter
22609
+ def AspectRatio(self, AspectRatio):
22610
+ self._AspectRatio = AspectRatio
22611
+
22612
+
22613
+ def _deserialize(self, params):
22614
+ self._Model = params.get("Model")
22615
+ self._Prompt = params.get("Prompt")
22616
+ self._Resolution = params.get("Resolution")
22617
+ self._AspectRatio = params.get("AspectRatio")
22618
+ memeber_set = set(params.keys())
22619
+ for name, value in vars(self).items():
22620
+ property_name = name[1:]
22621
+ if property_name in memeber_set:
22622
+ memeber_set.remove(property_name)
22623
+ if len(memeber_set) > 0:
22624
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
22625
+
22626
+
22627
+
22547
22628
  class CreateImageSpriteTemplateRequest(AbstractModel):
22548
22629
  r"""CreateImageSpriteTemplate请求参数结构体
22549
22630
 
@@ -32101,6 +32182,222 @@ class DescribeAigcImageTaskResponse(AbstractModel):
32101
32182
  self._RequestId = params.get("RequestId")
32102
32183
 
32103
32184
 
32185
+ class DescribeAigcTaskStatusRequest(AbstractModel):
32186
+ r"""DescribeAigcTaskStatus请求参数结构体
32187
+
32188
+ """
32189
+
32190
+ def __init__(self):
32191
+ r"""
32192
+ :param _TaskId: <p>任务ID</p>
32193
+ :type TaskId: str
32194
+ """
32195
+ self._TaskId = None
32196
+
32197
+ @property
32198
+ def TaskId(self):
32199
+ r"""<p>任务ID</p>
32200
+ :rtype: str
32201
+ """
32202
+ return self._TaskId
32203
+
32204
+ @TaskId.setter
32205
+ def TaskId(self, TaskId):
32206
+ self._TaskId = TaskId
32207
+
32208
+
32209
+ def _deserialize(self, params):
32210
+ self._TaskId = params.get("TaskId")
32211
+ memeber_set = set(params.keys())
32212
+ for name, value in vars(self).items():
32213
+ property_name = name[1:]
32214
+ if property_name in memeber_set:
32215
+ memeber_set.remove(property_name)
32216
+ if len(memeber_set) > 0:
32217
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
32218
+
32219
+
32220
+
32221
+ class DescribeAigcTaskStatusResponse(AbstractModel):
32222
+ r"""DescribeAigcTaskStatus返回参数结构体
32223
+
32224
+ """
32225
+
32226
+ def __init__(self):
32227
+ r"""
32228
+ :param _TaskId: <p>任务ID</p>
32229
+ :type TaskId: str
32230
+ :param _TaskStatus: <p>任务状态描述</p><p>枚举值:</p><ul><li>PENDING: 任务等待调度</li><li>RUNNING: 任务运行中</li><li>FINISHED: 任务执行成功</li><li>STOP: 任务被中止</li><li>FAILED: 任务失败</li><li>TIMEOUT: 任务超时</li></ul>
32231
+ :type TaskStatus: str
32232
+ :param _OutputUrl: <p>输出url</p>
32233
+ 注意:此字段可能返回 null,表示取不到有效值。
32234
+ :type OutputUrl: str
32235
+ :param _CreateTime: <p>任务创建时间</p>
32236
+ :type CreateTime: str
32237
+ :param _ScheduledTime: <p>任务调度时间</p>
32238
+ :type ScheduledTime: str
32239
+ :param _FinishedTime: <p>任务完成时间</p>
32240
+ :type FinishedTime: str
32241
+ :param _TaskResultCode: <p>任务错误码</p>
32242
+ :type TaskResultCode: int
32243
+ :param _TaskResultMsg: <p>任务返回错误信息</p>
32244
+ :type TaskResultMsg: str
32245
+ :param _RequestBody: <p>请求结构体</p>
32246
+ :type RequestBody: str
32247
+ :param _TaskType: <p>任务类型</p>
32248
+ :type TaskType: str
32249
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
32250
+ :type RequestId: str
32251
+ """
32252
+ self._TaskId = None
32253
+ self._TaskStatus = None
32254
+ self._OutputUrl = None
32255
+ self._CreateTime = None
32256
+ self._ScheduledTime = None
32257
+ self._FinishedTime = None
32258
+ self._TaskResultCode = None
32259
+ self._TaskResultMsg = None
32260
+ self._RequestBody = None
32261
+ self._TaskType = None
32262
+ self._RequestId = None
32263
+
32264
+ @property
32265
+ def TaskId(self):
32266
+ r"""<p>任务ID</p>
32267
+ :rtype: str
32268
+ """
32269
+ return self._TaskId
32270
+
32271
+ @TaskId.setter
32272
+ def TaskId(self, TaskId):
32273
+ self._TaskId = TaskId
32274
+
32275
+ @property
32276
+ def TaskStatus(self):
32277
+ r"""<p>任务状态描述</p><p>枚举值:</p><ul><li>PENDING: 任务等待调度</li><li>RUNNING: 任务运行中</li><li>FINISHED: 任务执行成功</li><li>STOP: 任务被中止</li><li>FAILED: 任务失败</li><li>TIMEOUT: 任务超时</li></ul>
32278
+ :rtype: str
32279
+ """
32280
+ return self._TaskStatus
32281
+
32282
+ @TaskStatus.setter
32283
+ def TaskStatus(self, TaskStatus):
32284
+ self._TaskStatus = TaskStatus
32285
+
32286
+ @property
32287
+ def OutputUrl(self):
32288
+ r"""<p>输出url</p>
32289
+ 注意:此字段可能返回 null,表示取不到有效值。
32290
+ :rtype: str
32291
+ """
32292
+ return self._OutputUrl
32293
+
32294
+ @OutputUrl.setter
32295
+ def OutputUrl(self, OutputUrl):
32296
+ self._OutputUrl = OutputUrl
32297
+
32298
+ @property
32299
+ def CreateTime(self):
32300
+ r"""<p>任务创建时间</p>
32301
+ :rtype: str
32302
+ """
32303
+ return self._CreateTime
32304
+
32305
+ @CreateTime.setter
32306
+ def CreateTime(self, CreateTime):
32307
+ self._CreateTime = CreateTime
32308
+
32309
+ @property
32310
+ def ScheduledTime(self):
32311
+ r"""<p>任务调度时间</p>
32312
+ :rtype: str
32313
+ """
32314
+ return self._ScheduledTime
32315
+
32316
+ @ScheduledTime.setter
32317
+ def ScheduledTime(self, ScheduledTime):
32318
+ self._ScheduledTime = ScheduledTime
32319
+
32320
+ @property
32321
+ def FinishedTime(self):
32322
+ r"""<p>任务完成时间</p>
32323
+ :rtype: str
32324
+ """
32325
+ return self._FinishedTime
32326
+
32327
+ @FinishedTime.setter
32328
+ def FinishedTime(self, FinishedTime):
32329
+ self._FinishedTime = FinishedTime
32330
+
32331
+ @property
32332
+ def TaskResultCode(self):
32333
+ r"""<p>任务错误码</p>
32334
+ :rtype: int
32335
+ """
32336
+ return self._TaskResultCode
32337
+
32338
+ @TaskResultCode.setter
32339
+ def TaskResultCode(self, TaskResultCode):
32340
+ self._TaskResultCode = TaskResultCode
32341
+
32342
+ @property
32343
+ def TaskResultMsg(self):
32344
+ r"""<p>任务返回错误信息</p>
32345
+ :rtype: str
32346
+ """
32347
+ return self._TaskResultMsg
32348
+
32349
+ @TaskResultMsg.setter
32350
+ def TaskResultMsg(self, TaskResultMsg):
32351
+ self._TaskResultMsg = TaskResultMsg
32352
+
32353
+ @property
32354
+ def RequestBody(self):
32355
+ r"""<p>请求结构体</p>
32356
+ :rtype: str
32357
+ """
32358
+ return self._RequestBody
32359
+
32360
+ @RequestBody.setter
32361
+ def RequestBody(self, RequestBody):
32362
+ self._RequestBody = RequestBody
32363
+
32364
+ @property
32365
+ def TaskType(self):
32366
+ r"""<p>任务类型</p>
32367
+ :rtype: str
32368
+ """
32369
+ return self._TaskType
32370
+
32371
+ @TaskType.setter
32372
+ def TaskType(self, TaskType):
32373
+ self._TaskType = TaskType
32374
+
32375
+ @property
32376
+ def RequestId(self):
32377
+ r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
32378
+ :rtype: str
32379
+ """
32380
+ return self._RequestId
32381
+
32382
+ @RequestId.setter
32383
+ def RequestId(self, RequestId):
32384
+ self._RequestId = RequestId
32385
+
32386
+
32387
+ def _deserialize(self, params):
32388
+ self._TaskId = params.get("TaskId")
32389
+ self._TaskStatus = params.get("TaskStatus")
32390
+ self._OutputUrl = params.get("OutputUrl")
32391
+ self._CreateTime = params.get("CreateTime")
32392
+ self._ScheduledTime = params.get("ScheduledTime")
32393
+ self._FinishedTime = params.get("FinishedTime")
32394
+ self._TaskResultCode = params.get("TaskResultCode")
32395
+ self._TaskResultMsg = params.get("TaskResultMsg")
32396
+ self._RequestBody = params.get("RequestBody")
32397
+ self._TaskType = params.get("TaskType")
32398
+ self._RequestId = params.get("RequestId")
32399
+
32400
+
32104
32401
  class DescribeAigcVideoTaskRequest(AbstractModel):
32105
32402
  r"""DescribeAigcVideoTask请求参数结构体
32106
32403
 
@@ -44069,6 +44366,8 @@ class DescribeVoicesResponse(AbstractModel):
44069
44366
  :type ErrorCode: int
44070
44367
  :param _Msg: <p>错误信息,成功时返回success</p>
44071
44368
  :type Msg: str
44369
+ :param _TotalCount: <p>符合查询条件的音色总数</p>
44370
+ :type TotalCount: int
44072
44371
  :param _Voices: <p>可用音色列表</p>
44073
44372
  注意:此字段可能返回 null,表示取不到有效值。
44074
44373
  :type Voices: list of VoiceInfo
@@ -44077,6 +44376,7 @@ class DescribeVoicesResponse(AbstractModel):
44077
44376
  """
44078
44377
  self._ErrorCode = None
44079
44378
  self._Msg = None
44379
+ self._TotalCount = None
44080
44380
  self._Voices = None
44081
44381
  self._RequestId = None
44082
44382
 
@@ -44102,6 +44402,17 @@ class DescribeVoicesResponse(AbstractModel):
44102
44402
  def Msg(self, Msg):
44103
44403
  self._Msg = Msg
44104
44404
 
44405
+ @property
44406
+ def TotalCount(self):
44407
+ r"""<p>符合查询条件的音色总数</p>
44408
+ :rtype: int
44409
+ """
44410
+ return self._TotalCount
44411
+
44412
+ @TotalCount.setter
44413
+ def TotalCount(self, TotalCount):
44414
+ self._TotalCount = TotalCount
44415
+
44105
44416
  @property
44106
44417
  def Voices(self):
44107
44418
  r"""<p>可用音色列表</p>
@@ -44129,6 +44440,7 @@ class DescribeVoicesResponse(AbstractModel):
44129
44440
  def _deserialize(self, params):
44130
44441
  self._ErrorCode = params.get("ErrorCode")
44131
44442
  self._Msg = params.get("Msg")
44443
+ self._TotalCount = params.get("TotalCount")
44132
44444
  if params.get("Voices") is not None:
44133
44445
  self._Voices = []
44134
44446
  for item in params.get("Voices"):
@@ -52321,6 +52633,8 @@ class ImageTaskInput(AbstractModel):
52321
52633
  :type AiTryOnConfig: :class:`tencentcloud.mps.v20190612.models.AiTryOnConfig`
52322
52634
  :param _AiPosterSuiteConfig: <p>Ai套图配置。</p>
52323
52635
  :type AiPosterSuiteConfig: :class:`tencentcloud.mps.v20190612.models.AiPosterSuiteConfig`
52636
+ :param _CreateImageConfig: <p>生图任务配置</p>
52637
+ :type CreateImageConfig: :class:`tencentcloud.mps.v20190612.models.CreateImageConfig`
52324
52638
  """
52325
52639
  self._EncodeConfig = None
52326
52640
  self._EnhanceConfig = None
@@ -52330,6 +52644,7 @@ class ImageTaskInput(AbstractModel):
52330
52644
  self._TransformConfig = None
52331
52645
  self._AiTryOnConfig = None
52332
52646
  self._AiPosterSuiteConfig = None
52647
+ self._CreateImageConfig = None
52333
52648
 
52334
52649
  @property
52335
52650
  def EncodeConfig(self):
@@ -52423,6 +52738,17 @@ class ImageTaskInput(AbstractModel):
52423
52738
  def AiPosterSuiteConfig(self, AiPosterSuiteConfig):
52424
52739
  self._AiPosterSuiteConfig = AiPosterSuiteConfig
52425
52740
 
52741
+ @property
52742
+ def CreateImageConfig(self):
52743
+ r"""<p>生图任务配置</p>
52744
+ :rtype: :class:`tencentcloud.mps.v20190612.models.CreateImageConfig`
52745
+ """
52746
+ return self._CreateImageConfig
52747
+
52748
+ @CreateImageConfig.setter
52749
+ def CreateImageConfig(self, CreateImageConfig):
52750
+ self._CreateImageConfig = CreateImageConfig
52751
+
52426
52752
 
52427
52753
  def _deserialize(self, params):
52428
52754
  if params.get("EncodeConfig") is not None:
@@ -52449,6 +52775,9 @@ class ImageTaskInput(AbstractModel):
52449
52775
  if params.get("AiPosterSuiteConfig") is not None:
52450
52776
  self._AiPosterSuiteConfig = AiPosterSuiteConfig()
52451
52777
  self._AiPosterSuiteConfig._deserialize(params.get("AiPosterSuiteConfig"))
52778
+ if params.get("CreateImageConfig") is not None:
52779
+ self._CreateImageConfig = CreateImageConfig()
52780
+ self._CreateImageConfig._deserialize(params.get("CreateImageConfig"))
52452
52781
  memeber_set = set(params.keys())
52453
52782
  for name, value in vars(self).items():
52454
52783
  property_name = name[1:]
@@ -2105,6 +2105,29 @@ class MpsClient(AbstractClient):
2105
2105
  raise TencentCloudSDKException(type(e).__name__, str(e))
2106
2106
 
2107
2107
 
2108
+ def DescribeAigcTaskStatus(self, request):
2109
+ r"""查询AIGC场景任务接口
2110
+
2111
+ :param request: Request instance for DescribeAigcTaskStatus.
2112
+ :type request: :class:`tencentcloud.mps.v20190612.models.DescribeAigcTaskStatusRequest`
2113
+ :rtype: :class:`tencentcloud.mps.v20190612.models.DescribeAigcTaskStatusResponse`
2114
+
2115
+ """
2116
+ try:
2117
+ params = request._serialize()
2118
+ headers = request.headers
2119
+ body = self.call("DescribeAigcTaskStatus", params, headers=headers)
2120
+ response = json.loads(body)
2121
+ model = models.DescribeAigcTaskStatusResponse()
2122
+ model._deserialize(response["Response"])
2123
+ return model
2124
+ except Exception as e:
2125
+ if isinstance(e, TencentCloudSDKException):
2126
+ raise
2127
+ else:
2128
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2129
+
2130
+
2108
2131
  def DescribeAigcVideoTask(self, request):
2109
2132
  r"""调用该接口,用于查询AIGC生视频任务的进度以及获取生成结果。
2110
2133
 
@@ -4683,6 +4706,8 @@ class MpsClient(AbstractClient):
4683
4706
  1. 格式转换;
4684
4707
  2. 图像增强;
4685
4708
  3. 图像擦除;
4709
+ 4. 数字水印;
4710
+ 5. 美颜滤镜;
4686
4711
 
4687
4712
  :param request: Request instance for ProcessImage.
4688
4713
  :type request: :class:`tencentcloud.mps.v20190612.models.ProcessImageRequest`
@@ -1659,6 +1659,24 @@ class MpsClient(AbstractClient):
1659
1659
 
1660
1660
  return await self.call_and_deserialize(**kwargs)
1661
1661
 
1662
+ async def DescribeAigcTaskStatus(
1663
+ self,
1664
+ request: models.DescribeAigcTaskStatusRequest,
1665
+ opts: Dict = None,
1666
+ ) -> models.DescribeAigcTaskStatusResponse:
1667
+ """
1668
+ 查询AIGC场景任务接口
1669
+ """
1670
+
1671
+ kwargs = {}
1672
+ kwargs["action"] = "DescribeAigcTaskStatus"
1673
+ kwargs["params"] = request._serialize()
1674
+ kwargs["resp_cls"] = models.DescribeAigcTaskStatusResponse
1675
+ kwargs["headers"] = request.headers
1676
+ kwargs["opts"] = opts or {}
1677
+
1678
+ return await self.call_and_deserialize(**kwargs)
1679
+
1662
1680
  async def DescribeAigcVideoTask(
1663
1681
  self,
1664
1682
  request: models.DescribeAigcVideoTaskRequest,
@@ -3687,6 +3705,8 @@ class MpsClient(AbstractClient):
3687
3705
  1. 格式转换;
3688
3706
  2. 图像增强;
3689
3707
  3. 图像擦除;
3708
+ 4. 数字水印;
3709
+ 5. 美颜滤镜;
3690
3710
  """
3691
3711
 
3692
3712
  kwargs = {}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.1.138
3
+ Version: 3.1.140
4
4
  Summary: Tencent Cloud Mps SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.138
18
+ Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.140
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,11 @@
1
+ tencentcloud/__init__.py,sha256=v0ahGPNe8xEQW1cJNqXHTX1XCkzUd8iR4_TYEN6_cwE,630
2
+ tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ tencentcloud/mps/v20190612/errorcodes.py,sha256=Zvf2cuaFz2ff08cGZOMYlfCLqupAtO6L19BT_EUaTLI,21704
5
+ tencentcloud/mps/v20190612/models.py,sha256=Qe-HrlJ0dtsevwB_VpSPkldny-OEWR23Z0lRbOj8luU,3407629
6
+ tencentcloud/mps/v20190612/mps_client.py,sha256=0BL3HEaxx84j-gMShHnHd7DJcdNRLyd7cTKr7HPSSCY,214380
7
+ tencentcloud/mps/v20190612/mps_client_async.py,sha256=rVEfuqacXQkBMWT0LMl62Ahajuj2MMQ9S1xuNDiV7_s,147309
8
+ tencentcloud_sdk_python_mps-3.1.140.dist-info/METADATA,sha256=c3eGdU_WxFNIcOLLNgxdialOoXz4KrhAlpRtKWYgg3I,1497
9
+ tencentcloud_sdk_python_mps-3.1.140.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
10
+ tencentcloud_sdk_python_mps-3.1.140.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
11
+ tencentcloud_sdk_python_mps-3.1.140.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- tencentcloud/__init__.py,sha256=XM8YKhyBBN-yLQlOjKVb04Hbormok3upO1FxiU3h0FQ,630
2
- tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- tencentcloud/mps/v20190612/errorcodes.py,sha256=MVABISFsOa_V2WBLJEMmZWOZtHDVEDahw0hIfexJFVc,21517
5
- tencentcloud/mps/v20190612/models.py,sha256=kwnckfHSVBQ1og9AZxEZzs-ReHD8ouEqVOeFdSdXL0k,3396589
6
- tencentcloud/mps/v20190612/mps_client.py,sha256=rwZe_DB9qWLEPX6k-aBhZJ7CjnHV03LeXnOXKhTQWco,213416
7
- tencentcloud/mps/v20190612/mps_client_async.py,sha256=El7VBbRFJB9O5yYAK6JxHovIKkrSgaAB8dO1gDZ0bns,146649
8
- tencentcloud_sdk_python_mps-3.1.138.dist-info/METADATA,sha256=Ax8Jtv2WuKALFa0hH431ShxEVHCGHSz_x4F0WdfNoB4,1497
9
- tencentcloud_sdk_python_mps-3.1.138.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
10
- tencentcloud_sdk_python_mps-3.1.138.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
11
- tencentcloud_sdk_python_mps-3.1.138.dist-info/RECORD,,