tencentcloud-sdk-python 3.0.1434__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/bi/v20220105/models.py +156 -2
- tencentcloud/cam/v20190116/cam_client.py +23 -0
- tencentcloud/cam/v20190116/errorcodes.py +15 -0
- tencentcloud/cam/v20190116/models.py +180 -0
- tencentcloud/cdb/v20170320/cdb_client.py +2 -1
- tencentcloud/cdb/v20170320/models.py +62 -44
- 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/cfs_client.py +299 -0
- tencentcloud/cfs/v20190719/errorcodes.py +54 -0
- tencentcloud/cfs/v20190719/models.py +4445 -1986
- tencentcloud/clb/v20180317/models.py +44 -14
- tencentcloud/cls/v20201016/models.py +370 -136
- tencentcloud/ctem/v20231128/models.py +405 -15
- 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/kms/v20190118/models.py +2 -2
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/lowcode/v20210108/lowcode_client.py +92 -0
- tencentcloud/lowcode/v20210108/models.py +423 -0
- tencentcloud/mps/v20190612/models.py +24 -8
- tencentcloud/mqtt/v20240516/models.py +150 -0
- tencentcloud/ocr/v20181119/models.py +4 -4
- tencentcloud/ssl/v20191205/errorcodes.py +1 -1
- tencentcloud/ssl/v20191205/models.py +45 -30
- tencentcloud/teo/v20220901/errorcodes.py +24 -0
- tencentcloud/teo/v20220901/models.py +3491 -433
- 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/wedata/v20210820/models.py +321 -15
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/RECORD +50 -50
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1434.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
|
|
@@ -335,7 +335,7 @@ INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
|
335
335
|
# 邮箱格式有误,请您重新输入
|
|
336
336
|
INVALIDPARAMETERVALUE_CERTIFICATEEMAILPARSEINVALID = 'InvalidParameterValue.CertificateEmailParseInvalid'
|
|
337
337
|
|
|
338
|
-
#
|
|
338
|
+
# 中间证书不一致
|
|
339
339
|
INVALIDPARAMETERVALUE_INTERMEDIATECERTNOTSAME = 'InvalidParameterValue.IntermediateCertNotSame'
|
|
340
340
|
|
|
341
341
|
# 单位时间内接口请求频率达到限制。
|
|
@@ -2406,13 +2406,13 @@ null:用户上传证书(没有套餐类型),
|
|
|
2406
2406
|
:type StatusMsg: str
|
|
2407
2407
|
:param _VerifyType: 验证类型:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证,DNS_PROXY = DNS代理验证。FILE_PROXY = 文件代理验证
|
|
2408
2408
|
:type VerifyType: str
|
|
2409
|
-
:param _CertBeginTime:
|
|
2409
|
+
:param _CertBeginTime: 证书生效时间。时区为GMT+8:00
|
|
2410
2410
|
:type CertBeginTime: str
|
|
2411
|
-
:param _CertEndTime:
|
|
2411
|
+
:param _CertEndTime: 证书过期时间。时区为GMT+8:00
|
|
2412
2412
|
:type CertEndTime: str
|
|
2413
2413
|
:param _ValidityPeriod: 证书有效期,单位(月)。
|
|
2414
2414
|
:type ValidityPeriod: str
|
|
2415
|
-
:param _InsertTime:
|
|
2415
|
+
:param _InsertTime: 创建时间。时区为GMT+8:00
|
|
2416
2416
|
:type InsertTime: str
|
|
2417
2417
|
:param _CertificateId: 证书 ID。
|
|
2418
2418
|
:type CertificateId: str
|
|
@@ -2468,9 +2468,9 @@ null:用户上传证书(没有套餐类型),
|
|
|
2468
2468
|
:type ReplaceOriCertIsDelete: bool
|
|
2469
2469
|
:param _IsExpiring: 是否即将过期, 证书即将到期的30天内为即将过期
|
|
2470
2470
|
:type IsExpiring: bool
|
|
2471
|
-
:param _DVAuthDeadline: DV
|
|
2471
|
+
:param _DVAuthDeadline: DV证书添加验证截止时间,时区为GMT+8:00
|
|
2472
2472
|
:type DVAuthDeadline: str
|
|
2473
|
-
:param _ValidationPassedTime:
|
|
2473
|
+
:param _ValidationPassedTime: 域名验证通过时间,时区为GMT+8:00
|
|
2474
2474
|
:type ValidationPassedTime: str
|
|
2475
2475
|
:param _CertSANs: 证书关联的多域名
|
|
2476
2476
|
:type CertSANs: list of str
|
|
@@ -2486,7 +2486,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
2486
2486
|
:type KeyPasswordCustomFlag: bool
|
|
2487
2487
|
:param _SupportDownloadType: 支持下载的WEB服务器类型: nginx、apache、iis、tomcat、jks、root、other
|
|
2488
2488
|
:type SupportDownloadType: :class:`tencentcloud.ssl.v20191205.models.SupportDownloadType`
|
|
2489
|
-
:param _CertRevokedTime:
|
|
2489
|
+
:param _CertRevokedTime: 证书吊销完成时间,时区为GMT+8:00
|
|
2490
2490
|
:type CertRevokedTime: str
|
|
2491
2491
|
:param _HostingResourceTypes: 托管资源类型列表
|
|
2492
2492
|
:type HostingResourceTypes: list of str
|
|
@@ -2787,7 +2787,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
2787
2787
|
|
|
2788
2788
|
@property
|
|
2789
2789
|
def CertBeginTime(self):
|
|
2790
|
-
"""
|
|
2790
|
+
"""证书生效时间。时区为GMT+8:00
|
|
2791
2791
|
:rtype: str
|
|
2792
2792
|
"""
|
|
2793
2793
|
return self._CertBeginTime
|
|
@@ -2798,7 +2798,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
2798
2798
|
|
|
2799
2799
|
@property
|
|
2800
2800
|
def CertEndTime(self):
|
|
2801
|
-
"""
|
|
2801
|
+
"""证书过期时间。时区为GMT+8:00
|
|
2802
2802
|
:rtype: str
|
|
2803
2803
|
"""
|
|
2804
2804
|
return self._CertEndTime
|
|
@@ -2820,7 +2820,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
2820
2820
|
|
|
2821
2821
|
@property
|
|
2822
2822
|
def InsertTime(self):
|
|
2823
|
-
"""
|
|
2823
|
+
"""创建时间。时区为GMT+8:00
|
|
2824
2824
|
:rtype: str
|
|
2825
2825
|
"""
|
|
2826
2826
|
return self._InsertTime
|
|
@@ -3128,7 +3128,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
3128
3128
|
|
|
3129
3129
|
@property
|
|
3130
3130
|
def DVAuthDeadline(self):
|
|
3131
|
-
"""DV
|
|
3131
|
+
"""DV证书添加验证截止时间,时区为GMT+8:00
|
|
3132
3132
|
:rtype: str
|
|
3133
3133
|
"""
|
|
3134
3134
|
return self._DVAuthDeadline
|
|
@@ -3139,7 +3139,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
3139
3139
|
|
|
3140
3140
|
@property
|
|
3141
3141
|
def ValidationPassedTime(self):
|
|
3142
|
-
"""
|
|
3142
|
+
"""域名验证通过时间,时区为GMT+8:00
|
|
3143
3143
|
:rtype: str
|
|
3144
3144
|
"""
|
|
3145
3145
|
return self._ValidationPassedTime
|
|
@@ -3227,7 +3227,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
3227
3227
|
|
|
3228
3228
|
@property
|
|
3229
3229
|
def CertRevokedTime(self):
|
|
3230
|
-
"""
|
|
3230
|
+
"""证书吊销完成时间,时区为GMT+8:00
|
|
3231
3231
|
:rtype: str
|
|
3232
3232
|
"""
|
|
3233
3233
|
return self._CertRevokedTime
|
|
@@ -6740,6 +6740,8 @@ class DeployRecordDetail(AbstractModel):
|
|
|
6740
6740
|
:type Algorithm: str
|
|
6741
6741
|
:param _OldAlgorithm: 原证书加密算法
|
|
6742
6742
|
:type OldAlgorithm: str
|
|
6743
|
+
:param _InstanceStatus: 实例状态,不同云产品状态不一样
|
|
6744
|
+
:type InstanceStatus: str
|
|
6743
6745
|
"""
|
|
6744
6746
|
self._Id = None
|
|
6745
6747
|
self._CertId = None
|
|
@@ -6765,6 +6767,7 @@ class DeployRecordDetail(AbstractModel):
|
|
|
6765
6767
|
self._Url = None
|
|
6766
6768
|
self._Algorithm = None
|
|
6767
6769
|
self._OldAlgorithm = None
|
|
6770
|
+
self._InstanceStatus = None
|
|
6768
6771
|
|
|
6769
6772
|
@property
|
|
6770
6773
|
def Id(self):
|
|
@@ -7030,6 +7033,17 @@ class DeployRecordDetail(AbstractModel):
|
|
|
7030
7033
|
def OldAlgorithm(self, OldAlgorithm):
|
|
7031
7034
|
self._OldAlgorithm = OldAlgorithm
|
|
7032
7035
|
|
|
7036
|
+
@property
|
|
7037
|
+
def InstanceStatus(self):
|
|
7038
|
+
"""实例状态,不同云产品状态不一样
|
|
7039
|
+
:rtype: str
|
|
7040
|
+
"""
|
|
7041
|
+
return self._InstanceStatus
|
|
7042
|
+
|
|
7043
|
+
@InstanceStatus.setter
|
|
7044
|
+
def InstanceStatus(self, InstanceStatus):
|
|
7045
|
+
self._InstanceStatus = InstanceStatus
|
|
7046
|
+
|
|
7033
7047
|
|
|
7034
7048
|
def _deserialize(self, params):
|
|
7035
7049
|
self._Id = params.get("Id")
|
|
@@ -7056,6 +7070,7 @@ class DeployRecordDetail(AbstractModel):
|
|
|
7056
7070
|
self._Url = params.get("Url")
|
|
7057
7071
|
self._Algorithm = params.get("Algorithm")
|
|
7058
7072
|
self._OldAlgorithm = params.get("OldAlgorithm")
|
|
7073
|
+
self._InstanceStatus = params.get("InstanceStatus")
|
|
7059
7074
|
memeber_set = set(params.keys())
|
|
7060
7075
|
for name, value in vars(self).items():
|
|
7061
7076
|
property_name = name[1:]
|
|
@@ -8369,15 +8384,15 @@ null:用户上传证书(没有套餐类型),
|
|
|
8369
8384
|
:type VerifyType: str
|
|
8370
8385
|
:param _VulnerabilityStatus: 漏洞扫描状态。
|
|
8371
8386
|
:type VulnerabilityStatus: str
|
|
8372
|
-
:param _CertBeginTime:
|
|
8387
|
+
:param _CertBeginTime: 证书生效时间。时区为GMT+8:00
|
|
8373
8388
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8374
8389
|
:type CertBeginTime: str
|
|
8375
|
-
:param _CertEndTime:
|
|
8390
|
+
:param _CertEndTime: 证书失效时间。时区为GMT+8:00
|
|
8376
8391
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8377
8392
|
:type CertEndTime: str
|
|
8378
8393
|
:param _ValidityPeriod: 证书有效期:单位(月)。
|
|
8379
8394
|
:type ValidityPeriod: str
|
|
8380
|
-
:param _InsertTime:
|
|
8395
|
+
:param _InsertTime: 证书申请时间。时区为GMT+8:00
|
|
8381
8396
|
:type InsertTime: str
|
|
8382
8397
|
:param _OrderId: CA订单 ID。
|
|
8383
8398
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -8734,7 +8749,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
8734
8749
|
|
|
8735
8750
|
@property
|
|
8736
8751
|
def CertBeginTime(self):
|
|
8737
|
-
"""
|
|
8752
|
+
"""证书生效时间。时区为GMT+8:00
|
|
8738
8753
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8739
8754
|
:rtype: str
|
|
8740
8755
|
"""
|
|
@@ -8746,7 +8761,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
8746
8761
|
|
|
8747
8762
|
@property
|
|
8748
8763
|
def CertEndTime(self):
|
|
8749
|
-
"""
|
|
8764
|
+
"""证书失效时间。时区为GMT+8:00
|
|
8750
8765
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8751
8766
|
:rtype: str
|
|
8752
8767
|
"""
|
|
@@ -8769,7 +8784,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
8769
8784
|
|
|
8770
8785
|
@property
|
|
8771
8786
|
def InsertTime(self):
|
|
8772
|
-
"""
|
|
8787
|
+
"""证书申请时间。时区为GMT+8:00
|
|
8773
8788
|
:rtype: str
|
|
8774
8789
|
"""
|
|
8775
8790
|
return self._InsertTime
|
|
@@ -9520,16 +9535,16 @@ null:用户上传证书(没有套餐类型),
|
|
|
9520
9535
|
:param _VulnerabilityStatus: 漏洞扫描状态。
|
|
9521
9536
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9522
9537
|
:type VulnerabilityStatus: str
|
|
9523
|
-
:param _CertBeginTime:
|
|
9538
|
+
:param _CertBeginTime: 证书生效时间。时区为GMT+8:00
|
|
9524
9539
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9525
9540
|
:type CertBeginTime: str
|
|
9526
|
-
:param _CertEndTime:
|
|
9541
|
+
:param _CertEndTime: 证书失效时间。时区为GMT+8:00
|
|
9527
9542
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9528
9543
|
:type CertEndTime: str
|
|
9529
9544
|
:param _ValidityPeriod: 证书有效期:单位(月)。
|
|
9530
9545
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9531
9546
|
:type ValidityPeriod: str
|
|
9532
|
-
:param _InsertTime:
|
|
9547
|
+
:param _InsertTime: 申请时间。时区为GMT+8:00
|
|
9533
9548
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9534
9549
|
:type InsertTime: str
|
|
9535
9550
|
:param _OrderId: 订单 ID。
|
|
@@ -9586,7 +9601,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
9586
9601
|
:param _CACommonNames: CA证书的所有通用名称。仅证书类型CertificateType为CA有效
|
|
9587
9602
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9588
9603
|
:type CACommonNames: list of str
|
|
9589
|
-
:param _CAEndTimes: CA证书所有的到期时间。仅证书类型CertificateType为CA
|
|
9604
|
+
:param _CAEndTimes: CA证书所有的到期时间。仅证书类型CertificateType为CA有效,时区为GMT+8:00
|
|
9590
9605
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9591
9606
|
:type CAEndTimes: list of str
|
|
9592
9607
|
:param _DvRevokeAuthDetail: DV证书吊销验证值
|
|
@@ -9879,7 +9894,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
9879
9894
|
|
|
9880
9895
|
@property
|
|
9881
9896
|
def CertBeginTime(self):
|
|
9882
|
-
"""
|
|
9897
|
+
"""证书生效时间。时区为GMT+8:00
|
|
9883
9898
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9884
9899
|
:rtype: str
|
|
9885
9900
|
"""
|
|
@@ -9891,7 +9906,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
9891
9906
|
|
|
9892
9907
|
@property
|
|
9893
9908
|
def CertEndTime(self):
|
|
9894
|
-
"""
|
|
9909
|
+
"""证书失效时间。时区为GMT+8:00
|
|
9895
9910
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9896
9911
|
:rtype: str
|
|
9897
9912
|
"""
|
|
@@ -9915,7 +9930,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
9915
9930
|
|
|
9916
9931
|
@property
|
|
9917
9932
|
def InsertTime(self):
|
|
9918
|
-
"""
|
|
9933
|
+
"""申请时间。时区为GMT+8:00
|
|
9919
9934
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9920
9935
|
:rtype: str
|
|
9921
9936
|
"""
|
|
@@ -10143,7 +10158,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
10143
10158
|
|
|
10144
10159
|
@property
|
|
10145
10160
|
def CAEndTimes(self):
|
|
10146
|
-
"""CA证书所有的到期时间。仅证书类型CertificateType为CA
|
|
10161
|
+
"""CA证书所有的到期时间。仅证书类型CertificateType为CA有效,时区为GMT+8:00
|
|
10147
10162
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10148
10163
|
:rtype: list of str
|
|
10149
10164
|
"""
|
|
@@ -10799,7 +10814,7 @@ class DescribeDeployedResourcesRequest(AbstractModel):
|
|
|
10799
10814
|
r"""
|
|
10800
10815
|
:param _CertificateIds: 证书ID
|
|
10801
10816
|
:type CertificateIds: list of str
|
|
10802
|
-
:param _ResourceType: 资源类型:clb,cdn,live,waf,antiddos,teo
|
|
10817
|
+
:param _ResourceType: 资源类型:clb,cdn,live,vod,waf,antiddos,teo
|
|
10803
10818
|
:type ResourceType: str
|
|
10804
10819
|
"""
|
|
10805
10820
|
self._CertificateIds = None
|
|
@@ -10818,7 +10833,7 @@ class DescribeDeployedResourcesRequest(AbstractModel):
|
|
|
10818
10833
|
|
|
10819
10834
|
@property
|
|
10820
10835
|
def ResourceType(self):
|
|
10821
|
-
"""资源类型:clb,cdn,live,waf,antiddos,teo
|
|
10836
|
+
"""资源类型:clb,cdn,live,vod,waf,antiddos,teo
|
|
10822
10837
|
:rtype: str
|
|
10823
10838
|
"""
|
|
10824
10839
|
return self._ResourceType
|
|
@@ -12224,7 +12239,7 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
|
|
|
12224
12239
|
:type FailedTotalCount: int
|
|
12225
12240
|
:param _RunningTotalCount: 部署中总数
|
|
12226
12241
|
:type RunningTotalCount: int
|
|
12227
|
-
:param _PendingTotalCount:
|
|
12242
|
+
:param _PendingTotalCount: 待部署总数
|
|
12228
12243
|
:type PendingTotalCount: int
|
|
12229
12244
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12230
12245
|
:type RequestId: str
|
|
@@ -12294,7 +12309,7 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
|
|
|
12294
12309
|
|
|
12295
12310
|
@property
|
|
12296
12311
|
def PendingTotalCount(self):
|
|
12297
|
-
"""
|
|
12312
|
+
"""待部署总数
|
|
12298
12313
|
:rtype: int
|
|
12299
12314
|
"""
|
|
12300
12315
|
return self._PendingTotalCount
|
|
@@ -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
|
|