tencentcloud-sdk-python 3.0.1435__py2.py3-none-any.whl → 3.0.1436__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +2 -2
- tencentcloud/cdn/v20180606/cdn_client.py +0 -575
- tencentcloud/cdn/v20180606/errorcodes.py +0 -48
- tencentcloud/cdn/v20180606/models.py +12881 -21511
- tencentcloud/cfs/v20190719/models.py +16 -18
- tencentcloud/cls/v20201016/models.py +22 -4
- tencentcloud/dlc/v20210125/dlc_client.py +529 -0
- tencentcloud/dlc/v20210125/errorcodes.py +30 -0
- tencentcloud/dlc/v20210125/models.py +7581 -2530
- tencentcloud/emr/v20190103/models.py +2 -2
- tencentcloud/es/v20250101/models.py +70 -0
- tencentcloud/ess/v20201111/ess_client.py +53 -1
- tencentcloud/ess/v20201111/models.py +680 -0
- tencentcloud/hunyuan/v20230901/errorcodes.py +0 -27
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +0 -46
- tencentcloud/hunyuan/v20230901/models.py +0 -357
- tencentcloud/mps/v20190612/models.py +24 -8
- tencentcloud/mqtt/v20240516/models.py +150 -0
- tencentcloud/ocr/v20181119/models.py +4 -4
- tencentcloud/ssl/v20191205/models.py +6 -6
- tencentcloud/teo/v20220901/errorcodes.py +24 -0
- tencentcloud/teo/v20220901/models.py +3449 -431
- tencentcloud/teo/v20220901/teo_client.py +462 -0
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +70 -6
- tencentcloud/waf/v20180125/models.py +1029 -151
- tencentcloud/waf/v20180125/waf_client.py +92 -0
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/RECORD +33 -33
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/top_level.txt +0 -0
|
@@ -4744,6 +4744,12 @@ API:通过API手动注册
|
|
|
4744
4744
|
:type AutoSubscriptionPolicyLimit: int
|
|
4745
4745
|
:param _MaxTopicFilterPerAutoSubscriptionPolicy: 单条自动订阅规则TopicFilter数限制
|
|
4746
4746
|
:type MaxTopicFilterPerAutoSubscriptionPolicy: int
|
|
4747
|
+
:param _UseDefaultServerCert: 是否使用默认的服务端证书
|
|
4748
|
+
:type UseDefaultServerCert: bool
|
|
4749
|
+
:param _TrustedCaLimit: 服务端CA最大数量
|
|
4750
|
+
:type TrustedCaLimit: int
|
|
4751
|
+
:param _ServerCertLimit: 服务端证书最大数量
|
|
4752
|
+
:type ServerCertLimit: int
|
|
4747
4753
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4748
4754
|
:type RequestId: str
|
|
4749
4755
|
"""
|
|
@@ -4775,6 +4781,9 @@ API:通过API手动注册
|
|
|
4775
4781
|
self._MaxTopicFilterPerSharedSubscriptionGroup = None
|
|
4776
4782
|
self._AutoSubscriptionPolicyLimit = None
|
|
4777
4783
|
self._MaxTopicFilterPerAutoSubscriptionPolicy = None
|
|
4784
|
+
self._UseDefaultServerCert = None
|
|
4785
|
+
self._TrustedCaLimit = None
|
|
4786
|
+
self._ServerCertLimit = None
|
|
4778
4787
|
self._RequestId = None
|
|
4779
4788
|
|
|
4780
4789
|
@property
|
|
@@ -5090,6 +5099,39 @@ API:通过API手动注册
|
|
|
5090
5099
|
def MaxTopicFilterPerAutoSubscriptionPolicy(self, MaxTopicFilterPerAutoSubscriptionPolicy):
|
|
5091
5100
|
self._MaxTopicFilterPerAutoSubscriptionPolicy = MaxTopicFilterPerAutoSubscriptionPolicy
|
|
5092
5101
|
|
|
5102
|
+
@property
|
|
5103
|
+
def UseDefaultServerCert(self):
|
|
5104
|
+
"""是否使用默认的服务端证书
|
|
5105
|
+
:rtype: bool
|
|
5106
|
+
"""
|
|
5107
|
+
return self._UseDefaultServerCert
|
|
5108
|
+
|
|
5109
|
+
@UseDefaultServerCert.setter
|
|
5110
|
+
def UseDefaultServerCert(self, UseDefaultServerCert):
|
|
5111
|
+
self._UseDefaultServerCert = UseDefaultServerCert
|
|
5112
|
+
|
|
5113
|
+
@property
|
|
5114
|
+
def TrustedCaLimit(self):
|
|
5115
|
+
"""服务端CA最大数量
|
|
5116
|
+
:rtype: int
|
|
5117
|
+
"""
|
|
5118
|
+
return self._TrustedCaLimit
|
|
5119
|
+
|
|
5120
|
+
@TrustedCaLimit.setter
|
|
5121
|
+
def TrustedCaLimit(self, TrustedCaLimit):
|
|
5122
|
+
self._TrustedCaLimit = TrustedCaLimit
|
|
5123
|
+
|
|
5124
|
+
@property
|
|
5125
|
+
def ServerCertLimit(self):
|
|
5126
|
+
"""服务端证书最大数量
|
|
5127
|
+
:rtype: int
|
|
5128
|
+
"""
|
|
5129
|
+
return self._ServerCertLimit
|
|
5130
|
+
|
|
5131
|
+
@ServerCertLimit.setter
|
|
5132
|
+
def ServerCertLimit(self, ServerCertLimit):
|
|
5133
|
+
self._ServerCertLimit = ServerCertLimit
|
|
5134
|
+
|
|
5093
5135
|
@property
|
|
5094
5136
|
def RequestId(self):
|
|
5095
5137
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5131,6 +5173,9 @@ API:通过API手动注册
|
|
|
5131
5173
|
self._MaxTopicFilterPerSharedSubscriptionGroup = params.get("MaxTopicFilterPerSharedSubscriptionGroup")
|
|
5132
5174
|
self._AutoSubscriptionPolicyLimit = params.get("AutoSubscriptionPolicyLimit")
|
|
5133
5175
|
self._MaxTopicFilterPerAutoSubscriptionPolicy = params.get("MaxTopicFilterPerAutoSubscriptionPolicy")
|
|
5176
|
+
self._UseDefaultServerCert = params.get("UseDefaultServerCert")
|
|
5177
|
+
self._TrustedCaLimit = params.get("TrustedCaLimit")
|
|
5178
|
+
self._ServerCertLimit = params.get("ServerCertLimit")
|
|
5134
5179
|
self._RequestId = params.get("RequestId")
|
|
5135
5180
|
|
|
5136
5181
|
|
|
@@ -7050,11 +7095,14 @@ class MQTTClientSubscription(AbstractModel):
|
|
|
7050
7095
|
:type Lag: int
|
|
7051
7096
|
:param _Inflight: 投递未确认数量
|
|
7052
7097
|
:type Inflight: int
|
|
7098
|
+
:param _UserProperties: 用户属性
|
|
7099
|
+
:type UserProperties: list of SubscriptionUserProperty
|
|
7053
7100
|
"""
|
|
7054
7101
|
self._TopicFilter = None
|
|
7055
7102
|
self._Qos = None
|
|
7056
7103
|
self._Lag = None
|
|
7057
7104
|
self._Inflight = None
|
|
7105
|
+
self._UserProperties = None
|
|
7058
7106
|
|
|
7059
7107
|
@property
|
|
7060
7108
|
def TopicFilter(self):
|
|
@@ -7103,12 +7151,29 @@ class MQTTClientSubscription(AbstractModel):
|
|
|
7103
7151
|
def Inflight(self, Inflight):
|
|
7104
7152
|
self._Inflight = Inflight
|
|
7105
7153
|
|
|
7154
|
+
@property
|
|
7155
|
+
def UserProperties(self):
|
|
7156
|
+
"""用户属性
|
|
7157
|
+
:rtype: list of SubscriptionUserProperty
|
|
7158
|
+
"""
|
|
7159
|
+
return self._UserProperties
|
|
7160
|
+
|
|
7161
|
+
@UserProperties.setter
|
|
7162
|
+
def UserProperties(self, UserProperties):
|
|
7163
|
+
self._UserProperties = UserProperties
|
|
7164
|
+
|
|
7106
7165
|
|
|
7107
7166
|
def _deserialize(self, params):
|
|
7108
7167
|
self._TopicFilter = params.get("TopicFilter")
|
|
7109
7168
|
self._Qos = params.get("Qos")
|
|
7110
7169
|
self._Lag = params.get("Lag")
|
|
7111
7170
|
self._Inflight = params.get("Inflight")
|
|
7171
|
+
if params.get("UserProperties") is not None:
|
|
7172
|
+
self._UserProperties = []
|
|
7173
|
+
for item in params.get("UserProperties"):
|
|
7174
|
+
obj = SubscriptionUserProperty()
|
|
7175
|
+
obj._deserialize(item)
|
|
7176
|
+
self._UserProperties.append(obj)
|
|
7112
7177
|
memeber_set = set(params.keys())
|
|
7113
7178
|
for name, value in vars(self).items():
|
|
7114
7179
|
property_name = name[1:]
|
|
@@ -8854,6 +8919,12 @@ API:手动通过API注册
|
|
|
8854
8919
|
:type AutomaticActivation: bool
|
|
8855
8920
|
:param _AuthorizationPolicy: 授权策略开关
|
|
8856
8921
|
:type AuthorizationPolicy: bool
|
|
8922
|
+
:param _UseDefaultServerCert: 是否使用默认的服务端证书
|
|
8923
|
+
:type UseDefaultServerCert: bool
|
|
8924
|
+
:param _X509Mode: TLS:单向认证
|
|
8925
|
+
mTLS;双向认证
|
|
8926
|
+
BYOC:一机一证
|
|
8927
|
+
:type X509Mode: str
|
|
8857
8928
|
"""
|
|
8858
8929
|
self._InstanceId = None
|
|
8859
8930
|
self._Name = None
|
|
@@ -8862,6 +8933,8 @@ API:手动通过API注册
|
|
|
8862
8933
|
self._DeviceCertificateProvisionType = None
|
|
8863
8934
|
self._AutomaticActivation = None
|
|
8864
8935
|
self._AuthorizationPolicy = None
|
|
8936
|
+
self._UseDefaultServerCert = None
|
|
8937
|
+
self._X509Mode = None
|
|
8865
8938
|
|
|
8866
8939
|
@property
|
|
8867
8940
|
def InstanceId(self):
|
|
@@ -8951,6 +9024,30 @@ API:手动通过API注册
|
|
|
8951
9024
|
def AuthorizationPolicy(self, AuthorizationPolicy):
|
|
8952
9025
|
self._AuthorizationPolicy = AuthorizationPolicy
|
|
8953
9026
|
|
|
9027
|
+
@property
|
|
9028
|
+
def UseDefaultServerCert(self):
|
|
9029
|
+
"""是否使用默认的服务端证书
|
|
9030
|
+
:rtype: bool
|
|
9031
|
+
"""
|
|
9032
|
+
return self._UseDefaultServerCert
|
|
9033
|
+
|
|
9034
|
+
@UseDefaultServerCert.setter
|
|
9035
|
+
def UseDefaultServerCert(self, UseDefaultServerCert):
|
|
9036
|
+
self._UseDefaultServerCert = UseDefaultServerCert
|
|
9037
|
+
|
|
9038
|
+
@property
|
|
9039
|
+
def X509Mode(self):
|
|
9040
|
+
"""TLS:单向认证
|
|
9041
|
+
mTLS;双向认证
|
|
9042
|
+
BYOC:一机一证
|
|
9043
|
+
:rtype: str
|
|
9044
|
+
"""
|
|
9045
|
+
return self._X509Mode
|
|
9046
|
+
|
|
9047
|
+
@X509Mode.setter
|
|
9048
|
+
def X509Mode(self, X509Mode):
|
|
9049
|
+
self._X509Mode = X509Mode
|
|
9050
|
+
|
|
8954
9051
|
|
|
8955
9052
|
def _deserialize(self, params):
|
|
8956
9053
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -8960,6 +9057,8 @@ API:手动通过API注册
|
|
|
8960
9057
|
self._DeviceCertificateProvisionType = params.get("DeviceCertificateProvisionType")
|
|
8961
9058
|
self._AutomaticActivation = params.get("AutomaticActivation")
|
|
8962
9059
|
self._AuthorizationPolicy = params.get("AuthorizationPolicy")
|
|
9060
|
+
self._UseDefaultServerCert = params.get("UseDefaultServerCert")
|
|
9061
|
+
self._X509Mode = params.get("X509Mode")
|
|
8963
9062
|
memeber_set = set(params.keys())
|
|
8964
9063
|
for name, value in vars(self).items():
|
|
8965
9064
|
property_name = name[1:]
|
|
@@ -10426,6 +10525,57 @@ class RevokedDeviceCertificateResponse(AbstractModel):
|
|
|
10426
10525
|
self._RequestId = params.get("RequestId")
|
|
10427
10526
|
|
|
10428
10527
|
|
|
10528
|
+
class SubscriptionUserProperty(AbstractModel):
|
|
10529
|
+
"""订阅的UserProperty结构
|
|
10530
|
+
|
|
10531
|
+
"""
|
|
10532
|
+
|
|
10533
|
+
def __init__(self):
|
|
10534
|
+
r"""
|
|
10535
|
+
:param _Key: 订阅的UserProperty键
|
|
10536
|
+
:type Key: str
|
|
10537
|
+
:param _Value: 订阅的UserProperty值
|
|
10538
|
+
:type Value: str
|
|
10539
|
+
"""
|
|
10540
|
+
self._Key = None
|
|
10541
|
+
self._Value = None
|
|
10542
|
+
|
|
10543
|
+
@property
|
|
10544
|
+
def Key(self):
|
|
10545
|
+
"""订阅的UserProperty键
|
|
10546
|
+
:rtype: str
|
|
10547
|
+
"""
|
|
10548
|
+
return self._Key
|
|
10549
|
+
|
|
10550
|
+
@Key.setter
|
|
10551
|
+
def Key(self, Key):
|
|
10552
|
+
self._Key = Key
|
|
10553
|
+
|
|
10554
|
+
@property
|
|
10555
|
+
def Value(self):
|
|
10556
|
+
"""订阅的UserProperty值
|
|
10557
|
+
:rtype: str
|
|
10558
|
+
"""
|
|
10559
|
+
return self._Value
|
|
10560
|
+
|
|
10561
|
+
@Value.setter
|
|
10562
|
+
def Value(self, Value):
|
|
10563
|
+
self._Value = Value
|
|
10564
|
+
|
|
10565
|
+
|
|
10566
|
+
def _deserialize(self, params):
|
|
10567
|
+
self._Key = params.get("Key")
|
|
10568
|
+
self._Value = params.get("Value")
|
|
10569
|
+
memeber_set = set(params.keys())
|
|
10570
|
+
for name, value in vars(self).items():
|
|
10571
|
+
property_name = name[1:]
|
|
10572
|
+
if property_name in memeber_set:
|
|
10573
|
+
memeber_set.remove(property_name)
|
|
10574
|
+
if len(memeber_set) > 0:
|
|
10575
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10576
|
+
|
|
10577
|
+
|
|
10578
|
+
|
|
10429
10579
|
class Tag(AbstractModel):
|
|
10430
10580
|
"""标签数据
|
|
10431
10581
|
|
|
@@ -26025,9 +26025,9 @@ class RecognizeTableAccurateOCRRequest(AbstractModel):
|
|
|
26025
26025
|
|
|
26026
26026
|
def __init__(self):
|
|
26027
26027
|
r"""
|
|
26028
|
-
:param _ImageBase64: 图片/PDF的 Base64 值。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800
|
|
26028
|
+
:param _ImageBase64: 图片/PDF的 Base64 值。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800以上,且长宽比小于3(短边分辨率大于600, 长边分辨率小于等于短边分辨率的三倍)。支持PNG、JPG、JPEG、BMP、PDF格式。图片支持的像素范围:需介于20-10000px之间。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
|
26029
26029
|
:type ImageBase64: str
|
|
26030
|
-
:param _ImageUrl: 图片/PDF的 Url 地址。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800
|
|
26030
|
+
:param _ImageUrl: 图片/PDF的 Url 地址。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800以上,且长宽比小于3(短边分辨率大于600, 长边分辨率小于等于短边分辨率的三倍)。支持PNG、JPG、JPEG、BMP、PDF格式。图片支持的像素范围:需介于20-10000px之间。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
|
26031
26031
|
:type ImageUrl: str
|
|
26032
26032
|
:param _PdfPageNumber: 需要识别的PDF页面的对应页码,仅支持PDF单页识别,当上传文件为PDF有效,默认值为1。
|
|
26033
26033
|
:type PdfPageNumber: int
|
|
@@ -26038,7 +26038,7 @@ class RecognizeTableAccurateOCRRequest(AbstractModel):
|
|
|
26038
26038
|
|
|
26039
26039
|
@property
|
|
26040
26040
|
def ImageBase64(self):
|
|
26041
|
-
"""图片/PDF的 Base64 值。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800
|
|
26041
|
+
"""图片/PDF的 Base64 值。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800以上,且长宽比小于3(短边分辨率大于600, 长边分辨率小于等于短边分辨率的三倍)。支持PNG、JPG、JPEG、BMP、PDF格式。图片支持的像素范围:需介于20-10000px之间。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
|
26042
26042
|
:rtype: str
|
|
26043
26043
|
"""
|
|
26044
26044
|
return self._ImageBase64
|
|
@@ -26049,7 +26049,7 @@ class RecognizeTableAccurateOCRRequest(AbstractModel):
|
|
|
26049
26049
|
|
|
26050
26050
|
@property
|
|
26051
26051
|
def ImageUrl(self):
|
|
26052
|
-
"""图片/PDF的 Url 地址。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800
|
|
26052
|
+
"""图片/PDF的 Url 地址。要求图片/PDF经Base64编码后不超过 10M,分辨率建议600*800以上,且长宽比小于3(短边分辨率大于600, 长边分辨率小于等于短边分辨率的三倍)。支持PNG、JPG、JPEG、BMP、PDF格式。图片支持的像素范围:需介于20-10000px之间。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
|
26053
26053
|
:rtype: str
|
|
26054
26054
|
"""
|
|
26055
26055
|
return self._ImageUrl
|
|
@@ -8384,15 +8384,15 @@ null:用户上传证书(没有套餐类型),
|
|
|
8384
8384
|
:type VerifyType: str
|
|
8385
8385
|
:param _VulnerabilityStatus: 漏洞扫描状态。
|
|
8386
8386
|
:type VulnerabilityStatus: str
|
|
8387
|
-
:param _CertBeginTime:
|
|
8387
|
+
:param _CertBeginTime: 证书生效时间。时区为GMT+8:00
|
|
8388
8388
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8389
8389
|
:type CertBeginTime: str
|
|
8390
|
-
:param _CertEndTime:
|
|
8390
|
+
:param _CertEndTime: 证书失效时间。时区为GMT+8:00
|
|
8391
8391
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8392
8392
|
:type CertEndTime: str
|
|
8393
8393
|
:param _ValidityPeriod: 证书有效期:单位(月)。
|
|
8394
8394
|
:type ValidityPeriod: str
|
|
8395
|
-
:param _InsertTime:
|
|
8395
|
+
:param _InsertTime: 证书申请时间。时区为GMT+8:00
|
|
8396
8396
|
:type InsertTime: str
|
|
8397
8397
|
:param _OrderId: CA订单 ID。
|
|
8398
8398
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -8749,7 +8749,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
8749
8749
|
|
|
8750
8750
|
@property
|
|
8751
8751
|
def CertBeginTime(self):
|
|
8752
|
-
"""
|
|
8752
|
+
"""证书生效时间。时区为GMT+8:00
|
|
8753
8753
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8754
8754
|
:rtype: str
|
|
8755
8755
|
"""
|
|
@@ -8761,7 +8761,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
8761
8761
|
|
|
8762
8762
|
@property
|
|
8763
8763
|
def CertEndTime(self):
|
|
8764
|
-
"""
|
|
8764
|
+
"""证书失效时间。时区为GMT+8:00
|
|
8765
8765
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8766
8766
|
:rtype: str
|
|
8767
8767
|
"""
|
|
@@ -8784,7 +8784,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
8784
8784
|
|
|
8785
8785
|
@property
|
|
8786
8786
|
def InsertTime(self):
|
|
8787
|
-
"""
|
|
8787
|
+
"""证书申请时间。时区为GMT+8:00
|
|
8788
8788
|
:rtype: str
|
|
8789
8789
|
"""
|
|
8790
8790
|
return self._InsertTime
|
|
@@ -95,6 +95,12 @@ FAILEDOPERATION_MISSINGCONFIGCHUNK = 'FailedOperation.MissingConfigChunk'
|
|
|
95
95
|
# 操作失败。
|
|
96
96
|
FAILEDOPERATION_MODIFYFAILED = 'FailedOperation.ModifyFailed'
|
|
97
97
|
|
|
98
|
+
# 该产品即将下架,操作被拒绝。
|
|
99
|
+
FAILEDOPERATION_PRODUCTDISCONTINUED = 'FailedOperation.ProductDiscontinued'
|
|
100
|
+
|
|
101
|
+
# 没有开通本产品,请开通后再尝试。
|
|
102
|
+
FAILEDOPERATION_PRODUCTNOTACTIVATED = 'FailedOperation.ProductNotActivated'
|
|
103
|
+
|
|
98
104
|
# 实时日志认证失败
|
|
99
105
|
FAILEDOPERATION_REALTIMELOGAUTHFAILURE = 'FailedOperation.RealtimeLogAuthFailure'
|
|
100
106
|
|
|
@@ -104,6 +110,9 @@ FAILEDOPERATION_REALTIMELOGNOTFOUND = 'FailedOperation.RealtimeLogNotFound'
|
|
|
104
110
|
# 该站点下函数规则操作冲突。
|
|
105
111
|
FAILEDOPERATION_RULEOPERATIONCONFLICT = 'FailedOperation.RuleOperationConflict'
|
|
106
112
|
|
|
113
|
+
# 该站点下的模板数量超过最大数量限制。
|
|
114
|
+
FAILEDOPERATION_TEMPLATEOVERLIMIT = 'FailedOperation.TemplateOverLimit'
|
|
115
|
+
|
|
107
116
|
# 未知的配置组类型。
|
|
108
117
|
FAILEDOPERATION_UNKNOWNCONFIGGROUPTYPE = 'FailedOperation.UnknownConfigGroupType'
|
|
109
118
|
|
|
@@ -146,6 +155,9 @@ INTERNALERROR_SYSTEMERROR = 'InternalError.SystemError'
|
|
|
146
155
|
# 未知错误。
|
|
147
156
|
INTERNALERROR_UNKNOWERROR = 'InternalError.UnknowError'
|
|
148
157
|
|
|
158
|
+
# 无效的过滤器
|
|
159
|
+
INVALIDFILTER = 'InvalidFilter'
|
|
160
|
+
|
|
149
161
|
# 参数错误。
|
|
150
162
|
INVALIDPARAMETER = 'InvalidParameter'
|
|
151
163
|
|
|
@@ -884,6 +896,12 @@ INVALIDPARAMETERVALUE_SERVERCERTINFONEEDCONTAINSM2 = 'InvalidParameterValue.Serv
|
|
|
884
896
|
# 请输入合法的共享 CNAME 前缀,最大支持50个字符。
|
|
885
897
|
INVALIDPARAMETERVALUE_SHAREDCNAMEPREFIXNOTMATCH = 'InvalidParameterValue.SharedCNAMEPrefixNotMatch'
|
|
886
898
|
|
|
899
|
+
# 输入模板中包含不是自定义模板类型的模板。
|
|
900
|
+
INVALIDPARAMETERVALUE_TEMPLATENOTCUSTOM = 'InvalidParameterValue.TemplateNotCustom'
|
|
901
|
+
|
|
902
|
+
# 模板中包含不存在的模板,请检查模板 id 是否正确。
|
|
903
|
+
INVALIDPARAMETERVALUE_TEMPLATENOTFOUND = 'InvalidParameterValue.TemplateNotFound'
|
|
904
|
+
|
|
887
905
|
# 暂不支持当前域名后缀接入,如您需要使用请联系我们。
|
|
888
906
|
INVALIDPARAMETERVALUE_TOPLEVELDOMAINNOTSUPPORT = 'InvalidParameterValue.TopLevelDomainNotSupport'
|
|
889
907
|
|
|
@@ -905,6 +923,12 @@ INVALIDPARAMETERVALUE_ZONENAMENOTSUPPORTPUNYCODE = 'InvalidParameterValue.ZoneNa
|
|
|
905
923
|
# 站点不支持以子域名接入,请以二级域名作为站点接入。
|
|
906
924
|
INVALIDPARAMETERVALUE_ZONENAMENOTSUPPORTSUBDOMAIN = 'InvalidParameterValue.ZoneNameNotSupportSubDomain'
|
|
907
925
|
|
|
926
|
+
# 没有对应的站点,请确保站点信息填写正确。
|
|
927
|
+
INVALIDPARAMETERVALUE_ZONENOTFOUND = 'InvalidParameterValue.ZoneNotFound'
|
|
928
|
+
|
|
929
|
+
# 站点已停用,请检查当前站点状态。
|
|
930
|
+
INVALIDPARAMETERVALUE_ZONEPAUSED = 'InvalidParameterValue.ZonePaused'
|
|
931
|
+
|
|
908
932
|
# 该同名站点标识已被占用,请重新输入。
|
|
909
933
|
INVALIDPARAMETERVALUE_ZONESAMEASNAME = 'InvalidParameterValue.ZoneSameAsName'
|
|
910
934
|
|