tencentcloud-sdk-python 3.0.1296__py2.py3-none-any.whl → 3.0.1298__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 +1 -1
- tencentcloud/billing/v20180709/models.py +90 -0
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +121 -0
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +124 -0
- tencentcloud/cls/v20201016/models.py +2 -2
- tencentcloud/dbbrain/v20210527/models.py +17 -2
- tencentcloud/ess/v20201111/models.py +58 -156
- tencentcloud/essbasic/v20210526/models.py +6 -108
- tencentcloud/hunyuan/v20230901/models.py +7 -7
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +92 -0
- tencentcloud/iotexplorer/v20190423/models.py +288 -2
- tencentcloud/lcic/v20220817/models.py +10 -4
- tencentcloud/lkeap/__init__.py +0 -0
- tencentcloud/lkeap/v20240522/__init__.py +0 -0
- tencentcloud/lkeap/v20240522/errorcodes.py +66 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +597 -0
- tencentcloud/lkeap/v20240522/models.py +3789 -0
- tencentcloud/mongodb/v20180408/errorcodes.py +3 -0
- tencentcloud/mongodb/v20180408/models.py +76 -18
- tencentcloud/mongodb/v20180408/mongodb_client.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +49 -96
- tencentcloud/monitor/v20180724/models.py +35 -0
- tencentcloud/ocr/v20181119/ocr_client.py +3 -3
- tencentcloud/sqlserver/v20180328/models.py +76 -4
- tencentcloud/ssl/v20191205/models.py +2 -2
- tencentcloud/tcb/v20180608/models.py +15 -29
- tencentcloud/tcbr/v20220217/models.py +51 -6
- tencentcloud/tdmq/v20200217/models.py +205 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/trtc/v20190722/models.py +4 -8
- tencentcloud/vpc/v20170312/models.py +48 -23
- tencentcloud/wedata/v20210820/models.py +71 -2
- {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/RECORD +39 -34
- {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/top_level.txt +0 -0
@@ -25,7 +25,7 @@ class ActivateTWeCallLicenseRequest(AbstractModel):
|
|
25
25
|
|
26
26
|
def __init__(self):
|
27
27
|
r"""
|
28
|
-
:param _PkgType: TWecall类型:1-家庭安防场景; 2-穿戴类场景; 3-生活娱乐场景; 4-对讲及其它场景
|
28
|
+
:param _PkgType: TWecall类型:0-体验套餐;1-家庭安防场景; 2-穿戴类场景; 3-生活娱乐场景; 4-对讲及其它场景
|
29
29
|
:type PkgType: int
|
30
30
|
:param _MiniProgramAppId: 参数已弃用,不用传参
|
31
31
|
:type MiniProgramAppId: str
|
@@ -38,7 +38,7 @@ class ActivateTWeCallLicenseRequest(AbstractModel):
|
|
38
38
|
|
39
39
|
@property
|
40
40
|
def PkgType(self):
|
41
|
-
"""TWecall类型:1-家庭安防场景; 2-穿戴类场景; 3-生活娱乐场景; 4-对讲及其它场景
|
41
|
+
"""TWecall类型:0-体验套餐;1-家庭安防场景; 2-穿戴类场景; 3-生活娱乐场景; 4-对讲及其它场景
|
42
42
|
:rtype: int
|
43
43
|
"""
|
44
44
|
return self._PkgType
|
@@ -21520,6 +21520,75 @@ class PackageInfo(AbstractModel):
|
|
21520
21520
|
|
21521
21521
|
|
21522
21522
|
|
21523
|
+
class PauseTWeCallDeviceRequest(AbstractModel):
|
21524
|
+
"""PauseTWeCallDevice请求参数结构体
|
21525
|
+
|
21526
|
+
"""
|
21527
|
+
|
21528
|
+
def __init__(self):
|
21529
|
+
r"""
|
21530
|
+
:param _DeviceList: 设备列表
|
21531
|
+
:type DeviceList: list of TWeCallInfo
|
21532
|
+
"""
|
21533
|
+
self._DeviceList = None
|
21534
|
+
|
21535
|
+
@property
|
21536
|
+
def DeviceList(self):
|
21537
|
+
"""设备列表
|
21538
|
+
:rtype: list of TWeCallInfo
|
21539
|
+
"""
|
21540
|
+
return self._DeviceList
|
21541
|
+
|
21542
|
+
@DeviceList.setter
|
21543
|
+
def DeviceList(self, DeviceList):
|
21544
|
+
self._DeviceList = DeviceList
|
21545
|
+
|
21546
|
+
|
21547
|
+
def _deserialize(self, params):
|
21548
|
+
if params.get("DeviceList") is not None:
|
21549
|
+
self._DeviceList = []
|
21550
|
+
for item in params.get("DeviceList"):
|
21551
|
+
obj = TWeCallInfo()
|
21552
|
+
obj._deserialize(item)
|
21553
|
+
self._DeviceList.append(obj)
|
21554
|
+
memeber_set = set(params.keys())
|
21555
|
+
for name, value in vars(self).items():
|
21556
|
+
property_name = name[1:]
|
21557
|
+
if property_name in memeber_set:
|
21558
|
+
memeber_set.remove(property_name)
|
21559
|
+
if len(memeber_set) > 0:
|
21560
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
21561
|
+
|
21562
|
+
|
21563
|
+
|
21564
|
+
class PauseTWeCallDeviceResponse(AbstractModel):
|
21565
|
+
"""PauseTWeCallDevice返回参数结构体
|
21566
|
+
|
21567
|
+
"""
|
21568
|
+
|
21569
|
+
def __init__(self):
|
21570
|
+
r"""
|
21571
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21572
|
+
:type RequestId: str
|
21573
|
+
"""
|
21574
|
+
self._RequestId = None
|
21575
|
+
|
21576
|
+
@property
|
21577
|
+
def RequestId(self):
|
21578
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21579
|
+
:rtype: str
|
21580
|
+
"""
|
21581
|
+
return self._RequestId
|
21582
|
+
|
21583
|
+
@RequestId.setter
|
21584
|
+
def RequestId(self, RequestId):
|
21585
|
+
self._RequestId = RequestId
|
21586
|
+
|
21587
|
+
|
21588
|
+
def _deserialize(self, params):
|
21589
|
+
self._RequestId = params.get("RequestId")
|
21590
|
+
|
21591
|
+
|
21523
21592
|
class PositionFenceInfo(AbstractModel):
|
21524
21593
|
"""围栏详细信息(包含创建时间及更新时间)
|
21525
21594
|
|
@@ -23791,6 +23860,144 @@ class ResetCloudStorageResponse(AbstractModel):
|
|
23791
23860
|
self._RequestId = params.get("RequestId")
|
23792
23861
|
|
23793
23862
|
|
23863
|
+
class ResetTWeCallDeviceRequest(AbstractModel):
|
23864
|
+
"""ResetTWeCallDevice请求参数结构体
|
23865
|
+
|
23866
|
+
"""
|
23867
|
+
|
23868
|
+
def __init__(self):
|
23869
|
+
r"""
|
23870
|
+
:param _DeviceList: 设备列表
|
23871
|
+
:type DeviceList: list of TWeCallInfo
|
23872
|
+
"""
|
23873
|
+
self._DeviceList = None
|
23874
|
+
|
23875
|
+
@property
|
23876
|
+
def DeviceList(self):
|
23877
|
+
"""设备列表
|
23878
|
+
:rtype: list of TWeCallInfo
|
23879
|
+
"""
|
23880
|
+
return self._DeviceList
|
23881
|
+
|
23882
|
+
@DeviceList.setter
|
23883
|
+
def DeviceList(self, DeviceList):
|
23884
|
+
self._DeviceList = DeviceList
|
23885
|
+
|
23886
|
+
|
23887
|
+
def _deserialize(self, params):
|
23888
|
+
if params.get("DeviceList") is not None:
|
23889
|
+
self._DeviceList = []
|
23890
|
+
for item in params.get("DeviceList"):
|
23891
|
+
obj = TWeCallInfo()
|
23892
|
+
obj._deserialize(item)
|
23893
|
+
self._DeviceList.append(obj)
|
23894
|
+
memeber_set = set(params.keys())
|
23895
|
+
for name, value in vars(self).items():
|
23896
|
+
property_name = name[1:]
|
23897
|
+
if property_name in memeber_set:
|
23898
|
+
memeber_set.remove(property_name)
|
23899
|
+
if len(memeber_set) > 0:
|
23900
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23901
|
+
|
23902
|
+
|
23903
|
+
|
23904
|
+
class ResetTWeCallDeviceResponse(AbstractModel):
|
23905
|
+
"""ResetTWeCallDevice返回参数结构体
|
23906
|
+
|
23907
|
+
"""
|
23908
|
+
|
23909
|
+
def __init__(self):
|
23910
|
+
r"""
|
23911
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23912
|
+
:type RequestId: str
|
23913
|
+
"""
|
23914
|
+
self._RequestId = None
|
23915
|
+
|
23916
|
+
@property
|
23917
|
+
def RequestId(self):
|
23918
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23919
|
+
:rtype: str
|
23920
|
+
"""
|
23921
|
+
return self._RequestId
|
23922
|
+
|
23923
|
+
@RequestId.setter
|
23924
|
+
def RequestId(self, RequestId):
|
23925
|
+
self._RequestId = RequestId
|
23926
|
+
|
23927
|
+
|
23928
|
+
def _deserialize(self, params):
|
23929
|
+
self._RequestId = params.get("RequestId")
|
23930
|
+
|
23931
|
+
|
23932
|
+
class ResumeWeCallDeviceRequest(AbstractModel):
|
23933
|
+
"""ResumeWeCallDevice请求参数结构体
|
23934
|
+
|
23935
|
+
"""
|
23936
|
+
|
23937
|
+
def __init__(self):
|
23938
|
+
r"""
|
23939
|
+
:param _DeviceList: 设备列表
|
23940
|
+
:type DeviceList: list of TWeCallInfo
|
23941
|
+
"""
|
23942
|
+
self._DeviceList = None
|
23943
|
+
|
23944
|
+
@property
|
23945
|
+
def DeviceList(self):
|
23946
|
+
"""设备列表
|
23947
|
+
:rtype: list of TWeCallInfo
|
23948
|
+
"""
|
23949
|
+
return self._DeviceList
|
23950
|
+
|
23951
|
+
@DeviceList.setter
|
23952
|
+
def DeviceList(self, DeviceList):
|
23953
|
+
self._DeviceList = DeviceList
|
23954
|
+
|
23955
|
+
|
23956
|
+
def _deserialize(self, params):
|
23957
|
+
if params.get("DeviceList") is not None:
|
23958
|
+
self._DeviceList = []
|
23959
|
+
for item in params.get("DeviceList"):
|
23960
|
+
obj = TWeCallInfo()
|
23961
|
+
obj._deserialize(item)
|
23962
|
+
self._DeviceList.append(obj)
|
23963
|
+
memeber_set = set(params.keys())
|
23964
|
+
for name, value in vars(self).items():
|
23965
|
+
property_name = name[1:]
|
23966
|
+
if property_name in memeber_set:
|
23967
|
+
memeber_set.remove(property_name)
|
23968
|
+
if len(memeber_set) > 0:
|
23969
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23970
|
+
|
23971
|
+
|
23972
|
+
|
23973
|
+
class ResumeWeCallDeviceResponse(AbstractModel):
|
23974
|
+
"""ResumeWeCallDevice返回参数结构体
|
23975
|
+
|
23976
|
+
"""
|
23977
|
+
|
23978
|
+
def __init__(self):
|
23979
|
+
r"""
|
23980
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23981
|
+
:type RequestId: str
|
23982
|
+
"""
|
23983
|
+
self._RequestId = None
|
23984
|
+
|
23985
|
+
@property
|
23986
|
+
def RequestId(self):
|
23987
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23988
|
+
:rtype: str
|
23989
|
+
"""
|
23990
|
+
return self._RequestId
|
23991
|
+
|
23992
|
+
@RequestId.setter
|
23993
|
+
def RequestId(self, RequestId):
|
23994
|
+
self._RequestId = RequestId
|
23995
|
+
|
23996
|
+
|
23997
|
+
def _deserialize(self, params):
|
23998
|
+
self._RequestId = params.get("RequestId")
|
23999
|
+
|
24000
|
+
|
23794
24001
|
class SearchKeyword(AbstractModel):
|
23795
24002
|
"""搜索关键词
|
23796
24003
|
|
@@ -25337,6 +25544,85 @@ class TransferCloudStorageResponse(AbstractModel):
|
|
25337
25544
|
self._RequestId = params.get("RequestId")
|
25338
25545
|
|
25339
25546
|
|
25547
|
+
class TransferTWeCallDeviceRequest(AbstractModel):
|
25548
|
+
"""TransferTWeCallDevice请求参数结构体
|
25549
|
+
|
25550
|
+
"""
|
25551
|
+
|
25552
|
+
def __init__(self):
|
25553
|
+
r"""
|
25554
|
+
:param _TransferInDevice: sn信息,product_deviceName
|
25555
|
+
:type TransferInDevice: str
|
25556
|
+
:param _TransferOutDevice: sn信息,product_deviceName
|
25557
|
+
:type TransferOutDevice: str
|
25558
|
+
"""
|
25559
|
+
self._TransferInDevice = None
|
25560
|
+
self._TransferOutDevice = None
|
25561
|
+
|
25562
|
+
@property
|
25563
|
+
def TransferInDevice(self):
|
25564
|
+
"""sn信息,product_deviceName
|
25565
|
+
:rtype: str
|
25566
|
+
"""
|
25567
|
+
return self._TransferInDevice
|
25568
|
+
|
25569
|
+
@TransferInDevice.setter
|
25570
|
+
def TransferInDevice(self, TransferInDevice):
|
25571
|
+
self._TransferInDevice = TransferInDevice
|
25572
|
+
|
25573
|
+
@property
|
25574
|
+
def TransferOutDevice(self):
|
25575
|
+
"""sn信息,product_deviceName
|
25576
|
+
:rtype: str
|
25577
|
+
"""
|
25578
|
+
return self._TransferOutDevice
|
25579
|
+
|
25580
|
+
@TransferOutDevice.setter
|
25581
|
+
def TransferOutDevice(self, TransferOutDevice):
|
25582
|
+
self._TransferOutDevice = TransferOutDevice
|
25583
|
+
|
25584
|
+
|
25585
|
+
def _deserialize(self, params):
|
25586
|
+
self._TransferInDevice = params.get("TransferInDevice")
|
25587
|
+
self._TransferOutDevice = params.get("TransferOutDevice")
|
25588
|
+
memeber_set = set(params.keys())
|
25589
|
+
for name, value in vars(self).items():
|
25590
|
+
property_name = name[1:]
|
25591
|
+
if property_name in memeber_set:
|
25592
|
+
memeber_set.remove(property_name)
|
25593
|
+
if len(memeber_set) > 0:
|
25594
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
25595
|
+
|
25596
|
+
|
25597
|
+
|
25598
|
+
class TransferTWeCallDeviceResponse(AbstractModel):
|
25599
|
+
"""TransferTWeCallDevice返回参数结构体
|
25600
|
+
|
25601
|
+
"""
|
25602
|
+
|
25603
|
+
def __init__(self):
|
25604
|
+
r"""
|
25605
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25606
|
+
:type RequestId: str
|
25607
|
+
"""
|
25608
|
+
self._RequestId = None
|
25609
|
+
|
25610
|
+
@property
|
25611
|
+
def RequestId(self):
|
25612
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25613
|
+
:rtype: str
|
25614
|
+
"""
|
25615
|
+
return self._RequestId
|
25616
|
+
|
25617
|
+
@RequestId.setter
|
25618
|
+
def RequestId(self, RequestId):
|
25619
|
+
self._RequestId = RequestId
|
25620
|
+
|
25621
|
+
|
25622
|
+
def _deserialize(self, params):
|
25623
|
+
self._RequestId = params.get("RequestId")
|
25624
|
+
|
25625
|
+
|
25340
25626
|
class UnbindDevicesRequest(AbstractModel):
|
25341
25627
|
"""UnbindDevices请求参数结构体
|
25342
25628
|
|
@@ -1482,7 +1482,9 @@ class BindDocumentToRoomRequest(AbstractModel):
|
|
1482
1482
|
:type RoomId: int
|
1483
1483
|
:param _DocumentId: 文档ID。
|
1484
1484
|
:type DocumentId: str
|
1485
|
-
:param _BindType: 绑定类型。后台可透传到客户端,默认为0
|
1485
|
+
:param _BindType: 绑定类型。后台可透传到客户端,默认为0。除以下例值外支持自定义该字段,并在前端实现相应业务逻辑,示例参考:
|
1486
|
+
示例值:0,仅绑定课件到房间
|
1487
|
+
示例值:1,绑定课件到房间后,默认展示课件
|
1486
1488
|
:type BindType: int
|
1487
1489
|
"""
|
1488
1490
|
self._RoomId = None
|
@@ -1513,7 +1515,9 @@ class BindDocumentToRoomRequest(AbstractModel):
|
|
1513
1515
|
|
1514
1516
|
@property
|
1515
1517
|
def BindType(self):
|
1516
|
-
"""绑定类型。后台可透传到客户端,默认为0
|
1518
|
+
"""绑定类型。后台可透传到客户端,默认为0。除以下例值外支持自定义该字段,并在前端实现相应业务逻辑,示例参考:
|
1519
|
+
示例值:0,仅绑定课件到房间
|
1520
|
+
示例值:1,绑定课件到房间后,默认展示课件
|
1517
1521
|
:rtype: int
|
1518
1522
|
"""
|
1519
1523
|
return self._BindType
|
@@ -11126,7 +11130,8 @@ class RegisterUserRequest(AbstractModel):
|
|
11126
11130
|
:type SdkAppId: int
|
11127
11131
|
:param _Name: 用户名称。
|
11128
11132
|
:type Name: str
|
11129
|
-
:param _OriginId: 用户在客户系统的Id
|
11133
|
+
:param _OriginId: 用户在客户系统的Id,需要在同一应用下唯一。入参为空时默认赋值为UserId
|
11134
|
+
。
|
11130
11135
|
:type OriginId: str
|
11131
11136
|
:param _Avatar: 用户头像。
|
11132
11137
|
:type Avatar: str
|
@@ -11160,7 +11165,8 @@ class RegisterUserRequest(AbstractModel):
|
|
11160
11165
|
|
11161
11166
|
@property
|
11162
11167
|
def OriginId(self):
|
11163
|
-
"""用户在客户系统的Id
|
11168
|
+
"""用户在客户系统的Id,需要在同一应用下唯一。入参为空时默认赋值为UserId
|
11169
|
+
。
|
11164
11170
|
:rtype: str
|
11165
11171
|
"""
|
11166
11172
|
return self._OriginId
|
File without changes
|
File without changes
|
@@ -0,0 +1,66 @@
|
|
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
|
+
# 操作失败。
|
18
|
+
FAILEDOPERATION = 'FailedOperation'
|
19
|
+
|
20
|
+
# FailedOperation.DownLoadError
|
21
|
+
FAILEDOPERATION_DOWNLOADERROR = 'FailedOperation.DownLoadError'
|
22
|
+
|
23
|
+
# FailedOperation.FileDecodeFailed
|
24
|
+
FAILEDOPERATION_FILEDECODEFAILED = 'FailedOperation.FileDecodeFailed'
|
25
|
+
|
26
|
+
# FailedOperation.ImageDecodeFailed
|
27
|
+
FAILEDOPERATION_IMAGEDECODEFAILED = 'FailedOperation.ImageDecodeFailed'
|
28
|
+
|
29
|
+
# 暂不支持解析该文件
|
30
|
+
FAILEDOPERATION_NONSUPPORTPARSE = 'FailedOperation.NonsupportParse'
|
31
|
+
|
32
|
+
# 内部未知错误。
|
33
|
+
FAILEDOPERATION_UNKNOWERROR = 'FailedOperation.UnKnowError'
|
34
|
+
|
35
|
+
# FailedOperation.UnKnowFileTypeError
|
36
|
+
FAILEDOPERATION_UNKNOWFILETYPEERROR = 'FailedOperation.UnKnowFileTypeError'
|
37
|
+
|
38
|
+
# 服务未开通。
|
39
|
+
FAILEDOPERATION_UNOPENERROR = 'FailedOperation.UnOpenError'
|
40
|
+
|
41
|
+
# 生成识别结果文件访问url失败,请稍后重试。
|
42
|
+
FAILEDOPERATION_UPLOADRESULTFILEFAILED = 'FailedOperation.UploadResultFileFailed'
|
43
|
+
|
44
|
+
# 内部错误。
|
45
|
+
INTERNALERROR = 'InternalError'
|
46
|
+
|
47
|
+
# 参数错误。
|
48
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
49
|
+
|
50
|
+
# 参数值错误。
|
51
|
+
INVALIDPARAMETERVALUE_INVALIDPARAMETERVALUELIMIT = 'InvalidParameterValue.InvalidParameterValueLimit'
|
52
|
+
|
53
|
+
# 超过最大文件页数限制
|
54
|
+
LIMITEXCEEDED_EXCEEDEDMAXPAGESERROR = 'LimitExceeded.ExceededMaxPagesError'
|
55
|
+
|
56
|
+
# 文件太大
|
57
|
+
LIMITEXCEEDED_TOOLARGEFILEERROR = 'LimitExceeded.TooLargeFileError'
|
58
|
+
|
59
|
+
# 帐号已欠费。
|
60
|
+
RESOURCEUNAVAILABLE_INARREARS = 'ResourceUnavailable.InArrears'
|
61
|
+
|
62
|
+
# 账号资源包耗尽。
|
63
|
+
RESOURCEUNAVAILABLE_RESOURCEPACKAGERUNOUT = 'ResourceUnavailable.ResourcePackageRunOut'
|
64
|
+
|
65
|
+
# 计费状态异常。
|
66
|
+
RESOURCESSOLDOUT_CHARGESTATUSEXCEPTION = 'ResourcesSoldOut.ChargeStatusException'
|