tencentcloud-sdk-python 3.0.1078__py2.py3-none-any.whl → 3.0.1079__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/antiddos/v20200309/antiddos_client.py +23 -0
- tencentcloud/antiddos/v20200309/models.py +552 -0
- tencentcloud/cfg/v20210820/models.py +17 -13
- tencentcloud/cls/v20201016/models.py +37 -0
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +70 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +2 -2
- tencentcloud/cynosdb/v20190107/models.py +470 -5
- tencentcloud/live/v20180801/models.py +3 -0
- tencentcloud/oceanus/v20190422/models.py +38 -0
- tencentcloud/privatedns/v20201028/models.py +20 -1
- tencentcloud/ssl/v20191205/errorcodes.py +0 -6
- tencentcloud/ssl/v20191205/models.py +0 -156
- tencentcloud/ssl/v20191205/ssl_client.py +0 -25
- tencentcloud/teo/v20220901/errorcodes.py +15 -0
- tencentcloud/teo/v20220901/models.py +12 -0
- tencentcloud/trocket/v20230308/models.py +800 -43
- tencentcloud/trocket/v20230308/trocket_client.py +75 -0
- {tencentcloud_sdk_python-3.0.1078.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1078.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/RECORD +24 -24
- {tencentcloud_sdk_python-3.0.1078.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1078.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1078.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/top_level.txt +0 -0
|
@@ -2998,6 +2998,9 @@ ContinueBreakPoint:播放完当前正在播放的点播 url 后再使用新的
|
|
|
2998
2998
|
:type VodRefreshType: str
|
|
2999
2999
|
:param _CallbackUrl: 自定义回调地址。
|
|
3000
3000
|
拉流转推任务相关事件会回调到该地址。
|
|
3001
|
+
回调事件使用方法请查看:
|
|
3002
|
+
https://cloud.tencent.com/document/product/267/32744
|
|
3003
|
+
https://cloud.tencent.com/document/product/267/56208
|
|
3001
3004
|
:type CallbackUrl: str
|
|
3002
3005
|
:param _ExtraCmd: 其他参数。
|
|
3003
3006
|
示例: ignore_region 用于忽略传入地域, 内部按负载分配。
|
|
@@ -1581,9 +1581,12 @@ class CopyJobsRequest(AbstractModel):
|
|
|
1581
1581
|
:type JobItems: list of CopyJobItem
|
|
1582
1582
|
:param _WorkSpaceId: 工作空间 SerialId
|
|
1583
1583
|
:type WorkSpaceId: str
|
|
1584
|
+
:param _TargetWorkspaceId: 目标工作空间 SerialId
|
|
1585
|
+
:type TargetWorkspaceId: str
|
|
1584
1586
|
"""
|
|
1585
1587
|
self._JobItems = None
|
|
1586
1588
|
self._WorkSpaceId = None
|
|
1589
|
+
self._TargetWorkspaceId = None
|
|
1587
1590
|
|
|
1588
1591
|
@property
|
|
1589
1592
|
def JobItems(self):
|
|
@@ -1601,6 +1604,14 @@ class CopyJobsRequest(AbstractModel):
|
|
|
1601
1604
|
def WorkSpaceId(self, WorkSpaceId):
|
|
1602
1605
|
self._WorkSpaceId = WorkSpaceId
|
|
1603
1606
|
|
|
1607
|
+
@property
|
|
1608
|
+
def TargetWorkspaceId(self):
|
|
1609
|
+
return self._TargetWorkspaceId
|
|
1610
|
+
|
|
1611
|
+
@TargetWorkspaceId.setter
|
|
1612
|
+
def TargetWorkspaceId(self, TargetWorkspaceId):
|
|
1613
|
+
self._TargetWorkspaceId = TargetWorkspaceId
|
|
1614
|
+
|
|
1604
1615
|
|
|
1605
1616
|
def _deserialize(self, params):
|
|
1606
1617
|
if params.get("JobItems") is not None:
|
|
@@ -1610,6 +1621,7 @@ class CopyJobsRequest(AbstractModel):
|
|
|
1610
1621
|
obj._deserialize(item)
|
|
1611
1622
|
self._JobItems.append(obj)
|
|
1612
1623
|
self._WorkSpaceId = params.get("WorkSpaceId")
|
|
1624
|
+
self._TargetWorkspaceId = params.get("TargetWorkspaceId")
|
|
1613
1625
|
memeber_set = set(params.keys())
|
|
1614
1626
|
for name, value in vars(self).items():
|
|
1615
1627
|
property_name = name[1:]
|
|
@@ -6396,6 +6408,12 @@ class JobConfig(AbstractModel):
|
|
|
6396
6408
|
:param _EsServerlessSpace: es空间
|
|
6397
6409
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6398
6410
|
:type EsServerlessSpace: str
|
|
6411
|
+
:param _IndexName: es索引中文
|
|
6412
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6413
|
+
:type IndexName: str
|
|
6414
|
+
:param _WorkspaceName: es空间中文
|
|
6415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6416
|
+
:type WorkspaceName: str
|
|
6399
6417
|
"""
|
|
6400
6418
|
self._JobId = None
|
|
6401
6419
|
self._EntrypointClass = None
|
|
@@ -6427,6 +6445,8 @@ class JobConfig(AbstractModel):
|
|
|
6427
6445
|
self._JobGraph = None
|
|
6428
6446
|
self._EsServerlessIndex = None
|
|
6429
6447
|
self._EsServerlessSpace = None
|
|
6448
|
+
self._IndexName = None
|
|
6449
|
+
self._WorkspaceName = None
|
|
6430
6450
|
|
|
6431
6451
|
@property
|
|
6432
6452
|
def JobId(self):
|
|
@@ -6668,6 +6688,22 @@ class JobConfig(AbstractModel):
|
|
|
6668
6688
|
def EsServerlessSpace(self, EsServerlessSpace):
|
|
6669
6689
|
self._EsServerlessSpace = EsServerlessSpace
|
|
6670
6690
|
|
|
6691
|
+
@property
|
|
6692
|
+
def IndexName(self):
|
|
6693
|
+
return self._IndexName
|
|
6694
|
+
|
|
6695
|
+
@IndexName.setter
|
|
6696
|
+
def IndexName(self, IndexName):
|
|
6697
|
+
self._IndexName = IndexName
|
|
6698
|
+
|
|
6699
|
+
@property
|
|
6700
|
+
def WorkspaceName(self):
|
|
6701
|
+
return self._WorkspaceName
|
|
6702
|
+
|
|
6703
|
+
@WorkspaceName.setter
|
|
6704
|
+
def WorkspaceName(self, WorkspaceName):
|
|
6705
|
+
self._WorkspaceName = WorkspaceName
|
|
6706
|
+
|
|
6671
6707
|
|
|
6672
6708
|
def _deserialize(self, params):
|
|
6673
6709
|
self._JobId = params.get("JobId")
|
|
@@ -6721,6 +6757,8 @@ class JobConfig(AbstractModel):
|
|
|
6721
6757
|
self._JobGraph._deserialize(params.get("JobGraph"))
|
|
6722
6758
|
self._EsServerlessIndex = params.get("EsServerlessIndex")
|
|
6723
6759
|
self._EsServerlessSpace = params.get("EsServerlessSpace")
|
|
6760
|
+
self._IndexName = params.get("IndexName")
|
|
6761
|
+
self._WorkspaceName = params.get("WorkspaceName")
|
|
6724
6762
|
memeber_set = set(params.keys())
|
|
6725
6763
|
for name, value in vars(self).items():
|
|
6726
6764
|
property_name = name[1:]
|
|
@@ -3102,7 +3102,8 @@ class PrivateZone(AbstractModel):
|
|
|
3102
3102
|
:type Remark: str
|
|
3103
3103
|
:param _VpcSet: 绑定的Vpc列表
|
|
3104
3104
|
:type VpcSet: list of VpcInfo
|
|
3105
|
-
:param _Status:
|
|
3105
|
+
:param _Status: 私有域绑定VPC状态,未关联vpc:SUSPEND,已关联VPC:ENABLED
|
|
3106
|
+
,关联VPC失败:FAILED
|
|
3106
3107
|
:type Status: str
|
|
3107
3108
|
:param _DnsForwardStatus: 域名递归解析状态:开通:ENABLED, 关闭,DISABLED
|
|
3108
3109
|
:type DnsForwardStatus: str
|
|
@@ -3128,6 +3129,9 @@ class PrivateZone(AbstractModel):
|
|
|
3128
3129
|
:param _EndPointName: 终端节点名称
|
|
3129
3130
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3130
3131
|
:type EndPointName: str
|
|
3132
|
+
:param _DeletedVpcSet: 已删除的vpc
|
|
3133
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3134
|
+
:type DeletedVpcSet: list of VpcInfo
|
|
3131
3135
|
"""
|
|
3132
3136
|
self._ZoneId = None
|
|
3133
3137
|
self._OwnerUin = None
|
|
@@ -3147,6 +3151,7 @@ class PrivateZone(AbstractModel):
|
|
|
3147
3151
|
self._ForwardRuleType = None
|
|
3148
3152
|
self._ForwardAddress = None
|
|
3149
3153
|
self._EndPointName = None
|
|
3154
|
+
self._DeletedVpcSet = None
|
|
3150
3155
|
|
|
3151
3156
|
@property
|
|
3152
3157
|
def ZoneId(self):
|
|
@@ -3292,6 +3297,14 @@ class PrivateZone(AbstractModel):
|
|
|
3292
3297
|
def EndPointName(self, EndPointName):
|
|
3293
3298
|
self._EndPointName = EndPointName
|
|
3294
3299
|
|
|
3300
|
+
@property
|
|
3301
|
+
def DeletedVpcSet(self):
|
|
3302
|
+
return self._DeletedVpcSet
|
|
3303
|
+
|
|
3304
|
+
@DeletedVpcSet.setter
|
|
3305
|
+
def DeletedVpcSet(self, DeletedVpcSet):
|
|
3306
|
+
self._DeletedVpcSet = DeletedVpcSet
|
|
3307
|
+
|
|
3295
3308
|
|
|
3296
3309
|
def _deserialize(self, params):
|
|
3297
3310
|
self._ZoneId = params.get("ZoneId")
|
|
@@ -3327,6 +3340,12 @@ class PrivateZone(AbstractModel):
|
|
|
3327
3340
|
self._ForwardRuleType = params.get("ForwardRuleType")
|
|
3328
3341
|
self._ForwardAddress = params.get("ForwardAddress")
|
|
3329
3342
|
self._EndPointName = params.get("EndPointName")
|
|
3343
|
+
if params.get("DeletedVpcSet") is not None:
|
|
3344
|
+
self._DeletedVpcSet = []
|
|
3345
|
+
for item in params.get("DeletedVpcSet"):
|
|
3346
|
+
obj = VpcInfo()
|
|
3347
|
+
obj._deserialize(item)
|
|
3348
|
+
self._DeletedVpcSet.append(obj)
|
|
3330
3349
|
memeber_set = set(params.keys())
|
|
3331
3350
|
for name, value in vars(self).items():
|
|
3332
3351
|
property_name = name[1:]
|
|
@@ -68,9 +68,6 @@ FAILEDOPERATION_CERTIFICATEENCRYPTINVALID = 'FailedOperation.CertificateEncryptI
|
|
|
68
68
|
# 证书已存在。
|
|
69
69
|
FAILEDOPERATION_CERTIFICATEEXISTS = 'FailedOperation.CertificateExists'
|
|
70
70
|
|
|
71
|
-
# 已替换证书,无法进行托管。
|
|
72
|
-
FAILEDOPERATION_CERTIFICATEHASRENEWED = 'FailedOperation.CertificateHasRenewed'
|
|
73
|
-
|
|
74
71
|
# 当前证书不允许使用一键更新的功能。
|
|
75
72
|
FAILEDOPERATION_CERTIFICATEHOSTDEPLOYCANNOTALLOW = 'FailedOperation.CertificateHostDeployCanNotAllow'
|
|
76
73
|
|
|
@@ -83,9 +80,6 @@ FAILEDOPERATION_CERTIFICATEHOSTRESOURCEINSTANCEHUGELIMIT = 'FailedOperation.Cert
|
|
|
83
80
|
# 云资源类型无效。
|
|
84
81
|
FAILEDOPERATION_CERTIFICATEHOSTRESOURCETYPEINVALID = 'FailedOperation.CertificateHostResourceTypeInvalid'
|
|
85
82
|
|
|
86
|
-
# 证书资源托管数量超过限制。
|
|
87
|
-
FAILEDOPERATION_CERTIFICATEHOSTINGTYPENUMBERLIMIT = 'FailedOperation.CertificateHostingTypeNumberLimit'
|
|
88
|
-
|
|
89
83
|
# 证书不符合标准。
|
|
90
84
|
FAILEDOPERATION_CERTIFICATEINVALID = 'FailedOperation.CertificateInvalid'
|
|
91
85
|
|
|
@@ -745,78 +745,6 @@ class CdnInstanceList(AbstractModel):
|
|
|
745
745
|
|
|
746
746
|
|
|
747
747
|
|
|
748
|
-
class CertHostingInfo(AbstractModel):
|
|
749
|
-
"""云资源配置详情
|
|
750
|
-
|
|
751
|
-
"""
|
|
752
|
-
|
|
753
|
-
def __init__(self):
|
|
754
|
-
r"""
|
|
755
|
-
:param _CertId: 证书ID
|
|
756
|
-
:type CertId: str
|
|
757
|
-
:param _RenewCertId: 已替换的新证书ID
|
|
758
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
759
|
-
:type RenewCertId: str
|
|
760
|
-
:param _ResourceType: 云资源托管 ,CDN或CLB:部分开启,CDN,CLB:已开启,null:未开启托管
|
|
761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
762
|
-
:type ResourceType: str
|
|
763
|
-
:param _CreateTime: 创建时间
|
|
764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
765
|
-
:type CreateTime: str
|
|
766
|
-
"""
|
|
767
|
-
self._CertId = None
|
|
768
|
-
self._RenewCertId = None
|
|
769
|
-
self._ResourceType = None
|
|
770
|
-
self._CreateTime = None
|
|
771
|
-
|
|
772
|
-
@property
|
|
773
|
-
def CertId(self):
|
|
774
|
-
return self._CertId
|
|
775
|
-
|
|
776
|
-
@CertId.setter
|
|
777
|
-
def CertId(self, CertId):
|
|
778
|
-
self._CertId = CertId
|
|
779
|
-
|
|
780
|
-
@property
|
|
781
|
-
def RenewCertId(self):
|
|
782
|
-
return self._RenewCertId
|
|
783
|
-
|
|
784
|
-
@RenewCertId.setter
|
|
785
|
-
def RenewCertId(self, RenewCertId):
|
|
786
|
-
self._RenewCertId = RenewCertId
|
|
787
|
-
|
|
788
|
-
@property
|
|
789
|
-
def ResourceType(self):
|
|
790
|
-
return self._ResourceType
|
|
791
|
-
|
|
792
|
-
@ResourceType.setter
|
|
793
|
-
def ResourceType(self, ResourceType):
|
|
794
|
-
self._ResourceType = ResourceType
|
|
795
|
-
|
|
796
|
-
@property
|
|
797
|
-
def CreateTime(self):
|
|
798
|
-
return self._CreateTime
|
|
799
|
-
|
|
800
|
-
@CreateTime.setter
|
|
801
|
-
def CreateTime(self, CreateTime):
|
|
802
|
-
self._CreateTime = CreateTime
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
def _deserialize(self, params):
|
|
806
|
-
self._CertId = params.get("CertId")
|
|
807
|
-
self._RenewCertId = params.get("RenewCertId")
|
|
808
|
-
self._ResourceType = params.get("ResourceType")
|
|
809
|
-
self._CreateTime = params.get("CreateTime")
|
|
810
|
-
memeber_set = set(params.keys())
|
|
811
|
-
for name, value in vars(self).items():
|
|
812
|
-
property_name = name[1:]
|
|
813
|
-
if property_name in memeber_set:
|
|
814
|
-
memeber_set.remove(property_name)
|
|
815
|
-
if len(memeber_set) > 0:
|
|
816
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
748
|
class CertTaskId(AbstractModel):
|
|
821
749
|
"""证书异步任务ID
|
|
822
750
|
|
|
@@ -9661,90 +9589,6 @@ class GatewayCertificate(AbstractModel):
|
|
|
9661
9589
|
|
|
9662
9590
|
|
|
9663
9591
|
|
|
9664
|
-
class HostCertificateRequest(AbstractModel):
|
|
9665
|
-
"""HostCertificate请求参数结构体
|
|
9666
|
-
|
|
9667
|
-
"""
|
|
9668
|
-
|
|
9669
|
-
def __init__(self):
|
|
9670
|
-
r"""
|
|
9671
|
-
:param _CertificateId: 证书ID
|
|
9672
|
-
:type CertificateId: str
|
|
9673
|
-
:param _ResourceType: 资源类型:目前仅限于CLB,CDN
|
|
9674
|
-
:type ResourceType: list of str
|
|
9675
|
-
"""
|
|
9676
|
-
self._CertificateId = None
|
|
9677
|
-
self._ResourceType = None
|
|
9678
|
-
|
|
9679
|
-
@property
|
|
9680
|
-
def CertificateId(self):
|
|
9681
|
-
return self._CertificateId
|
|
9682
|
-
|
|
9683
|
-
@CertificateId.setter
|
|
9684
|
-
def CertificateId(self, CertificateId):
|
|
9685
|
-
self._CertificateId = CertificateId
|
|
9686
|
-
|
|
9687
|
-
@property
|
|
9688
|
-
def ResourceType(self):
|
|
9689
|
-
return self._ResourceType
|
|
9690
|
-
|
|
9691
|
-
@ResourceType.setter
|
|
9692
|
-
def ResourceType(self, ResourceType):
|
|
9693
|
-
self._ResourceType = ResourceType
|
|
9694
|
-
|
|
9695
|
-
|
|
9696
|
-
def _deserialize(self, params):
|
|
9697
|
-
self._CertificateId = params.get("CertificateId")
|
|
9698
|
-
self._ResourceType = params.get("ResourceType")
|
|
9699
|
-
memeber_set = set(params.keys())
|
|
9700
|
-
for name, value in vars(self).items():
|
|
9701
|
-
property_name = name[1:]
|
|
9702
|
-
if property_name in memeber_set:
|
|
9703
|
-
memeber_set.remove(property_name)
|
|
9704
|
-
if len(memeber_set) > 0:
|
|
9705
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9706
|
-
|
|
9707
|
-
|
|
9708
|
-
|
|
9709
|
-
class HostCertificateResponse(AbstractModel):
|
|
9710
|
-
"""HostCertificate返回参数结构体
|
|
9711
|
-
|
|
9712
|
-
"""
|
|
9713
|
-
|
|
9714
|
-
def __init__(self):
|
|
9715
|
-
r"""
|
|
9716
|
-
:param _CertHostingInfo: 云资源配置详情
|
|
9717
|
-
:type CertHostingInfo: :class:`tencentcloud.ssl.v20191205.models.CertHostingInfo`
|
|
9718
|
-
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9719
|
-
:type RequestId: str
|
|
9720
|
-
"""
|
|
9721
|
-
self._CertHostingInfo = None
|
|
9722
|
-
self._RequestId = None
|
|
9723
|
-
|
|
9724
|
-
@property
|
|
9725
|
-
def CertHostingInfo(self):
|
|
9726
|
-
return self._CertHostingInfo
|
|
9727
|
-
|
|
9728
|
-
@CertHostingInfo.setter
|
|
9729
|
-
def CertHostingInfo(self, CertHostingInfo):
|
|
9730
|
-
self._CertHostingInfo = CertHostingInfo
|
|
9731
|
-
|
|
9732
|
-
@property
|
|
9733
|
-
def RequestId(self):
|
|
9734
|
-
return self._RequestId
|
|
9735
|
-
|
|
9736
|
-
@RequestId.setter
|
|
9737
|
-
def RequestId(self, RequestId):
|
|
9738
|
-
self._RequestId = RequestId
|
|
9739
|
-
|
|
9740
|
-
|
|
9741
|
-
def _deserialize(self, params):
|
|
9742
|
-
if params.get("CertHostingInfo") is not None:
|
|
9743
|
-
self._CertHostingInfo = CertHostingInfo()
|
|
9744
|
-
self._CertHostingInfo._deserialize(params.get("CertHostingInfo"))
|
|
9745
|
-
self._RequestId = params.get("RequestId")
|
|
9746
|
-
|
|
9747
|
-
|
|
9748
9592
|
class LighthouseInstanceDetail(AbstractModel):
|
|
9749
9593
|
"""Lighthouse实例
|
|
9750
9594
|
|
|
@@ -969,31 +969,6 @@ class SslClient(AbstractClient):
|
|
|
969
969
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
970
970
|
|
|
971
971
|
|
|
972
|
-
def HostCertificate(self, request):
|
|
973
|
-
"""证书托管接口已重构, 旧接口预下线, 近30天无请求
|
|
974
|
-
|
|
975
|
-
云资源托管
|
|
976
|
-
|
|
977
|
-
:param request: Request instance for HostCertificate.
|
|
978
|
-
:type request: :class:`tencentcloud.ssl.v20191205.models.HostCertificateRequest`
|
|
979
|
-
:rtype: :class:`tencentcloud.ssl.v20191205.models.HostCertificateResponse`
|
|
980
|
-
|
|
981
|
-
"""
|
|
982
|
-
try:
|
|
983
|
-
params = request._serialize()
|
|
984
|
-
headers = request.headers
|
|
985
|
-
body = self.call("HostCertificate", params, headers=headers)
|
|
986
|
-
response = json.loads(body)
|
|
987
|
-
model = models.HostCertificateResponse()
|
|
988
|
-
model._deserialize(response["Response"])
|
|
989
|
-
return model
|
|
990
|
-
except Exception as e:
|
|
991
|
-
if isinstance(e, TencentCloudSDKException):
|
|
992
|
-
raise
|
|
993
|
-
else:
|
|
994
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
995
|
-
|
|
996
|
-
|
|
997
972
|
def ModifyCertificateAlias(self, request):
|
|
998
973
|
"""用户传入证书id和备注来修改证书备注。
|
|
999
974
|
|
|
@@ -602,6 +602,9 @@ INVALIDPARAMETER_ZONENOTFOUND = 'InvalidParameter.ZoneNotFound'
|
|
|
602
602
|
# 参数取值错误。
|
|
603
603
|
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
604
604
|
|
|
605
|
+
# 该站点域名已被禁用。
|
|
606
|
+
INVALIDPARAMETERVALUE_ACCESSBLACKLIST = 'InvalidParameterValue.AccessBlacklist'
|
|
607
|
+
|
|
605
608
|
# 与已经添加的记录冲突。
|
|
606
609
|
INVALIDPARAMETERVALUE_CONFLICTRECORD = 'InvalidParameterValue.ConflictRecord'
|
|
607
610
|
|
|
@@ -650,6 +653,18 @@ INVALIDPARAMETERVALUE_ORIGINGROUPNOTEXISTS = 'InvalidParameterValue.OriginGroupN
|
|
|
650
653
|
# 请输入合法的共享 CNAME 前缀,最大支持50个字符。
|
|
651
654
|
INVALIDPARAMETERVALUE_SHAREDCNAMEPREFIXNOTMATCH = 'InvalidParameterValue.SharedCNAMEPrefixNotMatch'
|
|
652
655
|
|
|
656
|
+
# 暂不支持当前域名后缀接入,如您需要使用请联系我们。
|
|
657
|
+
INVALIDPARAMETERVALUE_TOPLEVELDOMAINNOTSUPPORT = 'InvalidParameterValue.TopLevelDomainNotSupport'
|
|
658
|
+
|
|
659
|
+
# 站点名称格式不正确,请输入正确的域名格式。
|
|
660
|
+
INVALIDPARAMETERVALUE_ZONENAMEINVALID = 'InvalidParameterValue.ZoneNameInvalid'
|
|
661
|
+
|
|
662
|
+
# 暂不支持 punycode 接入。
|
|
663
|
+
INVALIDPARAMETERVALUE_ZONENAMENOTSUPPORTPUNYCODE = 'InvalidParameterValue.ZoneNameNotSupportPunyCode'
|
|
664
|
+
|
|
665
|
+
# 站点不支持以子域名接入,请以二级域名作为站点接入。
|
|
666
|
+
INVALIDPARAMETERVALUE_ZONENAMENOTSUPPORTSUBDOMAIN = 'InvalidParameterValue.ZoneNameNotSupportSubDomain'
|
|
667
|
+
|
|
653
668
|
# 该同名站点标识已被占用,请重新输入。
|
|
654
669
|
INVALIDPARAMETERVALUE_ZONESAMEASNAME = 'InvalidParameterValue.ZoneSameAsName'
|
|
655
670
|
|
|
@@ -8176,6 +8176,8 @@ class DescribeDefaultCertificatesRequest(AbstractModel):
|
|
|
8176
8176
|
|
|
8177
8177
|
def __init__(self):
|
|
8178
8178
|
r"""
|
|
8179
|
+
:param _ZoneId: 站点 ID。
|
|
8180
|
+
:type ZoneId: str
|
|
8179
8181
|
:param _Filters: 过滤条件,Filters.Values的上限为5。详细的过滤条件如下:
|
|
8180
8182
|
<li>zone-id<br> 按照【<strong>站点ID</strong>】进行过滤。站点ID形如:zone-xxx。<br> 类型:String<br> 必选:是 </li>
|
|
8181
8183
|
:type Filters: list of Filter
|
|
@@ -8184,10 +8186,19 @@ class DescribeDefaultCertificatesRequest(AbstractModel):
|
|
|
8184
8186
|
:param _Limit: 分页查询限制数目。默认值:20,最大值:100。
|
|
8185
8187
|
:type Limit: int
|
|
8186
8188
|
"""
|
|
8189
|
+
self._ZoneId = None
|
|
8187
8190
|
self._Filters = None
|
|
8188
8191
|
self._Offset = None
|
|
8189
8192
|
self._Limit = None
|
|
8190
8193
|
|
|
8194
|
+
@property
|
|
8195
|
+
def ZoneId(self):
|
|
8196
|
+
return self._ZoneId
|
|
8197
|
+
|
|
8198
|
+
@ZoneId.setter
|
|
8199
|
+
def ZoneId(self, ZoneId):
|
|
8200
|
+
self._ZoneId = ZoneId
|
|
8201
|
+
|
|
8191
8202
|
@property
|
|
8192
8203
|
def Filters(self):
|
|
8193
8204
|
return self._Filters
|
|
@@ -8214,6 +8225,7 @@ class DescribeDefaultCertificatesRequest(AbstractModel):
|
|
|
8214
8225
|
|
|
8215
8226
|
|
|
8216
8227
|
def _deserialize(self, params):
|
|
8228
|
+
self._ZoneId = params.get("ZoneId")
|
|
8217
8229
|
if params.get("Filters") is not None:
|
|
8218
8230
|
self._Filters = []
|
|
8219
8231
|
for item in params.get("Filters"):
|