tencentcloud-sdk-python 3.0.1176__py2.py3-none-any.whl → 3.0.1179__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.
Files changed (46) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/aiart_client.py +24 -0
  3. tencentcloud/aiart/v20221229/models.py +163 -0
  4. tencentcloud/asr/v20190614/models.py +30 -0
  5. tencentcloud/ckafka/v20190819/ckafka_client.py +4 -4
  6. tencentcloud/ckafka/v20190819/models.py +2 -2
  7. tencentcloud/cls/v20201016/models.py +62 -3
  8. tencentcloud/cwp/v20180228/cwp_client.py +0 -25
  9. tencentcloud/cwp/v20180228/models.py +0 -118
  10. tencentcloud/domain/v20180808/models.py +64 -0
  11. tencentcloud/emr/v20190103/models.py +739 -5
  12. tencentcloud/ess/v20201111/ess_client.py +15 -8
  13. tencentcloud/ess/v20201111/models.py +34 -30
  14. tencentcloud/essbasic/v20210526/essbasic_client.py +18 -11
  15. tencentcloud/essbasic/v20210526/models.py +18 -15
  16. tencentcloud/ims/v20201229/ims_client.py +2 -2
  17. tencentcloud/ioa/v20220601/models.py +168 -142
  18. tencentcloud/iotexplorer/v20190423/models.py +91 -0
  19. tencentcloud/iss/v20230517/errorcodes.py +27 -0
  20. tencentcloud/iss/v20230517/iss_client.py +46 -0
  21. tencentcloud/iss/v20230517/models.py +363 -0
  22. tencentcloud/mps/v20190612/models.py +96 -25
  23. tencentcloud/ocr/v20181119/models.py +24 -0
  24. tencentcloud/redis/v20180412/models.py +12 -10
  25. tencentcloud/ses/v20201002/models.py +419 -0
  26. tencentcloud/ses/v20201002/ses_client.py +92 -0
  27. tencentcloud/ssl/v20191205/models.py +377 -1
  28. tencentcloud/ssl/v20191205/ssl_client.py +25 -2
  29. tencentcloud/tcr/v20190924/models.py +4 -0
  30. tencentcloud/tdmq/v20200217/models.py +182 -1
  31. tencentcloud/thpc/v20230321/models.py +33 -5
  32. tencentcloud/tke/v20180525/models.py +75 -0
  33. tencentcloud/tke/v20180525/tke_client.py +7 -7
  34. tencentcloud/trtc/v20190722/errorcodes.py +0 -3
  35. tencentcloud/trtc/v20190722/models.py +1 -1
  36. tencentcloud/vclm/__init__.py +0 -0
  37. tencentcloud/vclm/v20240523/__init__.py +0 -0
  38. tencentcloud/vclm/v20240523/errorcodes.py +198 -0
  39. tencentcloud/vclm/v20240523/models.py +1028 -0
  40. tencentcloud/vclm/v20240523/vclm_client.py +187 -0
  41. tencentcloud/vdb/v20230616/models.py +26 -0
  42. {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1179.dist-info}/METADATA +1 -1
  43. {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1179.dist-info}/RECORD +46 -41
  44. {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1179.dist-info}/LICENSE +0 -0
  45. {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1179.dist-info}/WHEEL +0 -0
  46. {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1179.dist-info}/top_level.txt +0 -0
@@ -7511,6 +7511,8 @@ class CreatePrometheusConfigRequest(AbstractModel):
7511
7511
  :type PodMonitors: list of PrometheusConfigItem
7512
7512
  :param _RawJobs: prometheus原生Job配置
7513
7513
  :type RawJobs: list of PrometheusConfigItem
7514
+ :param _Probes: Probe 配置
7515
+ :type Probes: list of PrometheusConfigItem
7514
7516
  """
7515
7517
  self._InstanceId = None
7516
7518
  self._ClusterType = None
@@ -7518,6 +7520,7 @@ class CreatePrometheusConfigRequest(AbstractModel):
7518
7520
  self._ServiceMonitors = None
7519
7521
  self._PodMonitors = None
7520
7522
  self._RawJobs = None
7523
+ self._Probes = None
7521
7524
 
7522
7525
  @property
7523
7526
  def InstanceId(self):
@@ -7567,6 +7570,14 @@ class CreatePrometheusConfigRequest(AbstractModel):
7567
7570
  def RawJobs(self, RawJobs):
7568
7571
  self._RawJobs = RawJobs
7569
7572
 
7573
+ @property
7574
+ def Probes(self):
7575
+ return self._Probes
7576
+
7577
+ @Probes.setter
7578
+ def Probes(self, Probes):
7579
+ self._Probes = Probes
7580
+
7570
7581
 
7571
7582
  def _deserialize(self, params):
7572
7583
  self._InstanceId = params.get("InstanceId")
@@ -7590,6 +7601,12 @@ class CreatePrometheusConfigRequest(AbstractModel):
7590
7601
  obj = PrometheusConfigItem()
7591
7602
  obj._deserialize(item)
7592
7603
  self._RawJobs.append(obj)
7604
+ if params.get("Probes") is not None:
7605
+ self._Probes = []
7606
+ for item in params.get("Probes"):
7607
+ obj = PrometheusConfigItem()
7608
+ obj._deserialize(item)
7609
+ self._Probes.append(obj)
7593
7610
  memeber_set = set(params.keys())
7594
7611
  for name, value in vars(self).items():
7595
7612
  property_name = name[1:]
@@ -10121,9 +10138,12 @@ class DeletePrometheusClusterAgentRequest(AbstractModel):
10121
10138
  :type Agents: list of PrometheusAgentInfo
10122
10139
  :param _InstanceId: 实例id
10123
10140
  :type InstanceId: str
10141
+ :param _Force: 在7天可回收期间,强制解除绑定
10142
+ :type Force: bool
10124
10143
  """
10125
10144
  self._Agents = None
10126
10145
  self._InstanceId = None
10146
+ self._Force = None
10127
10147
 
10128
10148
  @property
10129
10149
  def Agents(self):
@@ -10141,6 +10161,14 @@ class DeletePrometheusClusterAgentRequest(AbstractModel):
10141
10161
  def InstanceId(self, InstanceId):
10142
10162
  self._InstanceId = InstanceId
10143
10163
 
10164
+ @property
10165
+ def Force(self):
10166
+ return self._Force
10167
+
10168
+ @Force.setter
10169
+ def Force(self, Force):
10170
+ self._Force = Force
10171
+
10144
10172
 
10145
10173
  def _deserialize(self, params):
10146
10174
  if params.get("Agents") is not None:
@@ -10150,6 +10178,7 @@ class DeletePrometheusClusterAgentRequest(AbstractModel):
10150
10178
  obj._deserialize(item)
10151
10179
  self._Agents.append(obj)
10152
10180
  self._InstanceId = params.get("InstanceId")
10181
+ self._Force = params.get("Force")
10153
10182
  memeber_set = set(params.keys())
10154
10183
  for name, value in vars(self).items():
10155
10184
  property_name = name[1:]
@@ -10204,6 +10233,8 @@ class DeletePrometheusConfigRequest(AbstractModel):
10204
10233
  :type PodMonitors: list of str
10205
10234
  :param _RawJobs: 要删除的RawJobs名字列表
10206
10235
  :type RawJobs: list of str
10236
+ :param _Probes: 要删除的Probe名字列表
10237
+ :type Probes: list of str
10207
10238
  """
10208
10239
  self._InstanceId = None
10209
10240
  self._ClusterType = None
@@ -10211,6 +10242,7 @@ class DeletePrometheusConfigRequest(AbstractModel):
10211
10242
  self._ServiceMonitors = None
10212
10243
  self._PodMonitors = None
10213
10244
  self._RawJobs = None
10245
+ self._Probes = None
10214
10246
 
10215
10247
  @property
10216
10248
  def InstanceId(self):
@@ -10260,6 +10292,14 @@ class DeletePrometheusConfigRequest(AbstractModel):
10260
10292
  def RawJobs(self, RawJobs):
10261
10293
  self._RawJobs = RawJobs
10262
10294
 
10295
+ @property
10296
+ def Probes(self):
10297
+ return self._Probes
10298
+
10299
+ @Probes.setter
10300
+ def Probes(self, Probes):
10301
+ self._Probes = Probes
10302
+
10263
10303
 
10264
10304
  def _deserialize(self, params):
10265
10305
  self._InstanceId = params.get("InstanceId")
@@ -10268,6 +10308,7 @@ class DeletePrometheusConfigRequest(AbstractModel):
10268
10308
  self._ServiceMonitors = params.get("ServiceMonitors")
10269
10309
  self._PodMonitors = params.get("PodMonitors")
10270
10310
  self._RawJobs = params.get("RawJobs")
10311
+ self._Probes = params.get("Probes")
10271
10312
  memeber_set = set(params.keys())
10272
10313
  for name, value in vars(self).items():
10273
10314
  property_name = name[1:]
@@ -18072,6 +18113,8 @@ class DescribePrometheusConfigResponse(AbstractModel):
18072
18113
  :type PodMonitors: list of PrometheusConfigItem
18073
18114
  :param _RawJobs: 原生Job
18074
18115
  :type RawJobs: list of PrometheusConfigItem
18116
+ :param _Probes: Probe配置
18117
+ :type Probes: list of PrometheusConfigItem
18075
18118
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18076
18119
  :type RequestId: str
18077
18120
  """
@@ -18079,6 +18122,7 @@ class DescribePrometheusConfigResponse(AbstractModel):
18079
18122
  self._ServiceMonitors = None
18080
18123
  self._PodMonitors = None
18081
18124
  self._RawJobs = None
18125
+ self._Probes = None
18082
18126
  self._RequestId = None
18083
18127
 
18084
18128
  @property
@@ -18113,6 +18157,14 @@ class DescribePrometheusConfigResponse(AbstractModel):
18113
18157
  def RawJobs(self, RawJobs):
18114
18158
  self._RawJobs = RawJobs
18115
18159
 
18160
+ @property
18161
+ def Probes(self):
18162
+ return self._Probes
18163
+
18164
+ @Probes.setter
18165
+ def Probes(self, Probes):
18166
+ self._Probes = Probes
18167
+
18116
18168
  @property
18117
18169
  def RequestId(self):
18118
18170
  return self._RequestId
@@ -18142,6 +18194,12 @@ class DescribePrometheusConfigResponse(AbstractModel):
18142
18194
  obj = PrometheusConfigItem()
18143
18195
  obj._deserialize(item)
18144
18196
  self._RawJobs.append(obj)
18197
+ if params.get("Probes") is not None:
18198
+ self._Probes = []
18199
+ for item in params.get("Probes"):
18200
+ obj = PrometheusConfigItem()
18201
+ obj._deserialize(item)
18202
+ self._Probes.append(obj)
18145
18203
  self._RequestId = params.get("RequestId")
18146
18204
 
18147
18205
 
@@ -29168,6 +29226,8 @@ class ModifyPrometheusConfigRequest(AbstractModel):
29168
29226
  :type PodMonitors: list of PrometheusConfigItem
29169
29227
  :param _RawJobs: prometheus原生Job配置
29170
29228
  :type RawJobs: list of PrometheusConfigItem
29229
+ :param _Probes: Probes 配置
29230
+ :type Probes: list of PrometheusConfigItem
29171
29231
  """
29172
29232
  self._InstanceId = None
29173
29233
  self._ClusterType = None
@@ -29175,6 +29235,7 @@ class ModifyPrometheusConfigRequest(AbstractModel):
29175
29235
  self._ServiceMonitors = None
29176
29236
  self._PodMonitors = None
29177
29237
  self._RawJobs = None
29238
+ self._Probes = None
29178
29239
 
29179
29240
  @property
29180
29241
  def InstanceId(self):
@@ -29224,6 +29285,14 @@ class ModifyPrometheusConfigRequest(AbstractModel):
29224
29285
  def RawJobs(self, RawJobs):
29225
29286
  self._RawJobs = RawJobs
29226
29287
 
29288
+ @property
29289
+ def Probes(self):
29290
+ return self._Probes
29291
+
29292
+ @Probes.setter
29293
+ def Probes(self, Probes):
29294
+ self._Probes = Probes
29295
+
29227
29296
 
29228
29297
  def _deserialize(self, params):
29229
29298
  self._InstanceId = params.get("InstanceId")
@@ -29247,6 +29316,12 @@ class ModifyPrometheusConfigRequest(AbstractModel):
29247
29316
  obj = PrometheusConfigItem()
29248
29317
  obj._deserialize(item)
29249
29318
  self._RawJobs.append(obj)
29319
+ if params.get("Probes") is not None:
29320
+ self._Probes = []
29321
+ for item in params.get("Probes"):
29322
+ obj = PrometheusConfigItem()
29323
+ obj._deserialize(item)
29324
+ self._Probes.append(obj)
29250
29325
  memeber_set = set(params.keys())
29251
29326
  for name, value in vars(self).items():
29252
29327
  property_name = name[1:]
@@ -717,7 +717,7 @@ class TkeClient(AbstractClient):
717
717
 
718
718
 
719
719
  def CreatePrometheusConfig(self, request):
720
- """创建prometheus配置
720
+ """创建集群采集配置
721
721
 
722
722
  :param request: Request instance for CreatePrometheusConfig.
723
723
  :type request: :class:`tencentcloud.tke.v20180525.models.CreatePrometheusConfigRequest`
@@ -786,7 +786,7 @@ class TkeClient(AbstractClient):
786
786
 
787
787
 
788
788
  def CreatePrometheusRecordRuleYaml(self, request):
789
- """以Yaml的方式创建聚合规则
789
+ """创建聚合规则yaml方式
790
790
 
791
791
  :param request: Request instance for CreatePrometheusRecordRuleYaml.
792
792
  :type request: :class:`tencentcloud.tke.v20180525.models.CreatePrometheusRecordRuleYamlRequest`
@@ -1384,7 +1384,7 @@ class TkeClient(AbstractClient):
1384
1384
 
1385
1385
 
1386
1386
  def DeletePrometheusConfig(self, request):
1387
- """删除Prometheus配置,如果目标不存在,将返回成功
1387
+ """删除集群采集配置
1388
1388
 
1389
1389
  :param request: Request instance for DeletePrometheusConfig.
1390
1390
  :type request: :class:`tencentcloud.tke.v20180525.models.DeletePrometheusConfigRequest`
@@ -1407,7 +1407,7 @@ class TkeClient(AbstractClient):
1407
1407
 
1408
1408
 
1409
1409
  def DeletePrometheusRecordRuleYaml(self, request):
1410
- """删除聚合实例
1410
+ """删除聚合规则
1411
1411
 
1412
1412
  :param request: Request instance for DeletePrometheusRecordRuleYaml.
1413
1413
  :type request: :class:`tencentcloud.tke.v20180525.models.DeletePrometheusRecordRuleYamlRequest`
@@ -3042,7 +3042,7 @@ class TkeClient(AbstractClient):
3042
3042
 
3043
3043
 
3044
3044
  def DescribePrometheusConfig(self, request):
3045
- """拉取Prometheus配置
3045
+ """获取集群采集配置
3046
3046
 
3047
3047
  :param request: Request instance for DescribePrometheusConfig.
3048
3048
  :type request: :class:`tencentcloud.tke.v20180525.models.DescribePrometheusConfigRequest`
@@ -4445,7 +4445,7 @@ class TkeClient(AbstractClient):
4445
4445
 
4446
4446
 
4447
4447
  def ModifyPrometheusConfig(self, request):
4448
- """修改prometheus配置,如果配置项不存在,则会新增
4448
+ """修改集群采集配置
4449
4449
 
4450
4450
  :param request: Request instance for ModifyPrometheusConfig.
4451
4451
  :type request: :class:`tencentcloud.tke.v20180525.models.ModifyPrometheusConfigRequest`
@@ -4491,7 +4491,7 @@ class TkeClient(AbstractClient):
4491
4491
 
4492
4492
 
4493
4493
  def ModifyPrometheusRecordRuleYaml(self, request):
4494
- """通过yaml的方式修改Prometheus聚合实例
4494
+ """修改聚合规则yaml方式
4495
4495
 
4496
4496
  :param request: Request instance for ModifyPrometheusRecordRuleYaml.
4497
4497
  :type request: :class:`tencentcloud.tke.v20180525.models.ModifyPrometheusRecordRuleYamlRequest`
@@ -62,9 +62,6 @@ FAILEDOPERATION_SDKAPPIDNOTEXIST = 'FailedOperation.SdkAppIdNotExist'
62
62
  # AppId下没有此SdkAppId的资源
63
63
  FAILEDOPERATION_SDKAPPIDNOTUNDERAPPID = 'FailedOperation.SdkAppIdNotUnderAppId'
64
64
 
65
- # SdkAppId未开通页面录制能力,请检查。
66
- FAILEDOPERATION_SDKAPPIDNOTWEBRECORDABILITY = 'FailedOperation.SdkAppIdNotWebRecordAbility'
67
-
68
65
  # 任务已存在
69
66
  FAILEDOPERATION_TASKEXIST = 'FailedOperation.TaskExist'
70
67
 
@@ -9143,7 +9143,7 @@ class StartWebRecordRequest(AbstractModel):
9143
9143
  :param _MaxDurationLimit: 录制最大时长限制, 单位 s, 合法取值范围[1800, 36000], 默认 36000s(10 小时)
9144
9144
 
9145
9145
  :type MaxDurationLimit: int
9146
- :param _StorageParams: 【必填】云存储相关的参数,目前支持腾讯云对象存储以及腾讯云云点播VOD,不支持第三方云存储
9146
+ :param _StorageParams: 【必填】云存储相关的参数,目前支持腾讯云对象存储以及腾讯云云点播VOD,不支持第三方云存储;输出文件的存储格式仅支持hls或mp4
9147
9147
  :type StorageParams: :class:`tencentcloud.trtc.v20190722.models.StorageParams`
9148
9148
  :param _WebRecordVideoParams: 页面录制视频参数
9149
9149
  :type WebRecordVideoParams: :class:`tencentcloud.trtc.v20190722.models.WebRecordVideoParams`
File without changes
File without changes
@@ -0,0 +1,198 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+
17
+ # CAM签名/鉴权错误。
18
+ AUTHFAILURE = 'AuthFailure'
19
+
20
+ # 音频解码失败。
21
+ FAILEDOPERATION_AUDIODECODEFAILED = 'FailedOperation.AudioDecodeFailed'
22
+
23
+ # 音频处理失败。
24
+ FAILEDOPERATION_AUDIOPROCESSFAILED = 'FailedOperation.AudioProcessFailed'
25
+
26
+ # 音频处理任务未完成,不能执行翻译结果确认
27
+ FAILEDOPERATION_AUDIOPROCESSNOTFINISHED = 'FailedOperation.AudioProcessNotFinished'
28
+
29
+ # 翻译结果确认任务异常。
30
+ FAILEDOPERATION_CONFIRMTASKEXCEPTION = 'FailedOperation.ConfirmTaskException'
31
+
32
+ # 下载视频出错。
33
+ FAILEDOPERATION_DOWNLOADERROR = 'FailedOperation.DownloadError'
34
+
35
+ # 人脸框太小,无法识别使用。
36
+ FAILEDOPERATION_FACESIZETOOSMALL = 'FailedOperation.FaceSizeTooSmall'
37
+
38
+ # 图片解码失败。
39
+ FAILEDOPERATION_IMAGEDECODEFAILED = 'FailedOperation.ImageDecodeFailed'
40
+
41
+ # 不支持的图片文件。
42
+ FAILEDOPERATION_IMAGENOTSUPPORTED = 'FailedOperation.ImageNotSupported'
43
+
44
+ # 图片分辨率过大。
45
+ FAILEDOPERATION_IMAGERESOLUTIONEXCEED = 'FailedOperation.ImageResolutionExceed'
46
+
47
+ # base64编码后的图片数据过大。
48
+ FAILEDOPERATION_IMAGESIZEEXCEED = 'FailedOperation.ImageSizeExceed'
49
+
50
+ # 服务内部错误,请重试。
51
+ FAILEDOPERATION_INNERERROR = 'FailedOperation.InnerError'
52
+
53
+ # 任务不存在。
54
+ FAILEDOPERATION_JOBNOTEXIST = 'FailedOperation.JobNotExist'
55
+
56
+ # 任务不存在。
57
+ FAILEDOPERATION_JOBNOTFOUND = 'FailedOperation.JobNotFound'
58
+
59
+ # 任务队列已满,请稍后重试。
60
+ FAILEDOPERATION_JOBQUEUEFULL = 'FailedOperation.JobQueueFull'
61
+
62
+ # 内容审核不通过。
63
+ FAILEDOPERATION_MODERATIONFAILED = 'FailedOperation.ModerationFailed'
64
+
65
+ # 后端服务超时。
66
+ FAILEDOPERATION_REQUESTTIMEOUT = 'FailedOperation.RequestTimeout'
67
+
68
+ # 系统内部错误。
69
+ FAILEDOPERATION_SERVERERROR = 'FailedOperation.ServerError'
70
+
71
+ # 任务不存在。
72
+ FAILEDOPERATION_TASKNOTEXIST = 'FailedOperation.TaskNotExist'
73
+
74
+ # 任务状态异常。
75
+ FAILEDOPERATION_TASKSTATUSERROR = 'FailedOperation.TaskStatusError'
76
+
77
+ # 文本未通过审核,请修改后重新尝试。
78
+ FAILEDOPERATION_TEXTMODERATIONNOTPASS = 'FailedOperation.TextModerationNotPass'
79
+
80
+ # 音频翻译结果已确认
81
+ FAILEDOPERATION_TRANSLATIONCONFIRMHASFINISHED = 'FailedOperation.TranslationConfirmHasFinished'
82
+
83
+ # 用户未选择确认音频翻译结果
84
+ FAILEDOPERATION_TRANSLATIONNOTNEEDCONFIRM = 'FailedOperation.TranslationNotNeedConfirm'
85
+
86
+ # 内部错误。
87
+ FAILEDOPERATION_UNKNOWERROR = 'FailedOperation.UnKnowError'
88
+
89
+ # 视频解码失败。
90
+ FAILEDOPERATION_VIDEODECODEFAILED = 'FailedOperation.VideoDecodeFailed'
91
+
92
+ # 视频时长超限制。
93
+ FAILEDOPERATION_VIDEODURATIONEXCEED = 'FailedOperation.VideoDurationExceed'
94
+
95
+ # 视频Fps超限制。
96
+ FAILEDOPERATION_VIDEOFPSEXCEED = 'FailedOperation.VideoFpsExceed'
97
+
98
+ # 视频分辨率超限制。
99
+ FAILEDOPERATION_VIDEORESOLUTIONEXCEED = 'FailedOperation.VideoResolutionExceed'
100
+
101
+ # 视频分辨率超限制。
102
+ FAILEDOPERATION_VIDEOSIZEEXCEED = 'FailedOperation.VideoSizeExceed'
103
+
104
+ # 内部错误。
105
+ INTERNALERROR = 'InternalError'
106
+
107
+ # 参数错误。
108
+ INVALIDPARAMETER = 'InvalidParameter'
109
+
110
+ # 参数不合法。
111
+ INVALIDPARAMETER_INVALIDPARAMETER = 'InvalidParameter.InvalidParameter'
112
+
113
+ # 参数取值错误。
114
+ INVALIDPARAMETERVALUE = 'InvalidParameterValue'
115
+
116
+ # 视频时长超过限制。
117
+ INVALIDPARAMETERVALUE_INVALIDVIDEODURATION = 'InvalidParameterValue.InvalidVideoDuration'
118
+
119
+ # 不支持的视频FPS。
120
+ INVALIDPARAMETERVALUE_INVALIDVIDEOFPS = 'InvalidParameterValue.InvalidVideoFPS'
121
+
122
+ # 不支持的视频格式。
123
+ INVALIDPARAMETERVALUE_INVALIDVIDEOFORMAT = 'InvalidParameterValue.InvalidVideoFormat'
124
+
125
+ # 不支持的分辨率。
126
+ INVALIDPARAMETERVALUE_INVALIDVIDEORESOLUTION = 'InvalidParameterValue.InvalidVideoResolution'
127
+
128
+ # 图片中没有人脸。
129
+ INVALIDPARAMETERVALUE_NOFACEINPHOTO = 'InvalidParameterValue.NoFaceInPhoto'
130
+
131
+ # 参数字段或者值有误。
132
+ INVALIDPARAMETERVALUE_PARAMETERVALUEERROR = 'InvalidParameterValue.ParameterValueError'
133
+
134
+ # 风格不存在。
135
+ INVALIDPARAMETERVALUE_STYLENOTEXIST = 'InvalidParameterValue.StyleNotExist'
136
+
137
+ # URL格式不合法。
138
+ INVALIDPARAMETERVALUE_URLILLEGAL = 'InvalidParameterValue.UrlIllegal'
139
+
140
+ # 视频大小超过限制。
141
+ INVALIDPARAMETERVALUE_VIDEOSIZEEXCEED = 'InvalidParameterValue.VideoSizeExceed'
142
+
143
+ # 超过配额限制。
144
+ LIMITEXCEEDED = 'LimitExceeded'
145
+
146
+ # 操作被拒绝。
147
+ OPERATIONDENIED = 'OperationDenied'
148
+
149
+ # 请求的次数超过了频率限制。
150
+ REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
151
+
152
+ # 提交任务数超过最大并发。
153
+ REQUESTLIMITEXCEEDED_JOBNUMEXCEED = 'RequestLimitExceeded.JobNumExceed'
154
+
155
+ # 用户账号超出了限制。
156
+ REQUESTLIMITEXCEEDED_UINLIMITEXCEEDED = 'RequestLimitExceeded.UinLimitExceeded'
157
+
158
+ # 资源不足。
159
+ RESOURCEINSUFFICIENT = 'ResourceInsufficient'
160
+
161
+ # 资源不存在。
162
+ RESOURCENOTFOUND = 'ResourceNotFound'
163
+
164
+ # 资源正在发货中。
165
+ RESOURCEUNAVAILABLE_DELIVERING = 'ResourceUnavailable.Delivering'
166
+
167
+ # 账号已被冻结。
168
+ RESOURCEUNAVAILABLE_FREEZE = 'ResourceUnavailable.Freeze'
169
+
170
+ # ResourceUnavailable.InArrears
171
+ RESOURCEUNAVAILABLE_INARREARS = 'ResourceUnavailable.InArrears'
172
+
173
+ # 服务正在开通中,请稍等。
174
+ RESOURCEUNAVAILABLE_ISOPENING = 'ResourceUnavailable.IsOpening'
175
+
176
+ # ResourceUnavailable.LowBalance
177
+ RESOURCEUNAVAILABLE_LOWBALANCE = 'ResourceUnavailable.LowBalance'
178
+
179
+ # 计费状态未知。
180
+ RESOURCEUNAVAILABLE_NOTEXIST = 'ResourceUnavailable.NotExist'
181
+
182
+ # 服务未开通。
183
+ RESOURCEUNAVAILABLE_NOTREADY = 'ResourceUnavailable.NotReady'
184
+
185
+ # 资源已被回收。
186
+ RESOURCEUNAVAILABLE_RECOVER = 'ResourceUnavailable.Recover'
187
+
188
+ # 计费状态未知。
189
+ RESOURCEUNAVAILABLE_UNKNOWNSTATUS = 'ResourceUnavailable.UnknownStatus'
190
+
191
+ # 账号已欠费。
192
+ RESOURCESSOLDOUT_CHARGESTATUSEXCEPTION = 'ResourcesSoldOut.ChargeStatusException'
193
+
194
+ # 未授权操作。
195
+ UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
196
+
197
+ # 操作不支持。
198
+ UNSUPPORTEDOPERATION = 'UnsupportedOperation'