tencentcloud-sdk-python 3.0.1375__py2.py3-none-any.whl → 3.0.1377__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 (45) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/models.py +30 -0
  3. tencentcloud/asr/v20190614/models.py +15 -0
  4. tencentcloud/bh/v20230418/models.py +317 -2
  5. tencentcloud/cat/v20180409/cat_client.py +23 -0
  6. tencentcloud/cat/v20180409/models.py +161 -0
  7. tencentcloud/cdb/v20170320/cdb_client.py +0 -25
  8. tencentcloud/cdb/v20170320/models.py +0 -113
  9. tencentcloud/cfs/v20190719/models.py +19 -0
  10. tencentcloud/cfw/v20190904/models.py +17 -2
  11. tencentcloud/dsgc/v20190723/models.py +15 -0
  12. tencentcloud/ess/v20201111/ess_client.py +28 -1
  13. tencentcloud/ess/v20201111/models.py +186 -4
  14. tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
  15. tencentcloud/essbasic/v20210526/models.py +220 -4
  16. tencentcloud/gaap/v20180529/errorcodes.py +0 -33
  17. tencentcloud/gaap/v20180529/gaap_client.py +0 -75
  18. tencentcloud/gaap/v20180529/models.py +0 -653
  19. tencentcloud/hunyuan/v20230901/hunyuan_client.py +25 -0
  20. tencentcloud/hunyuan/v20230901/models.py +330 -8
  21. tencentcloud/iai/v20180301/models.py +44 -34
  22. tencentcloud/keewidb/v20220308/models.py +4 -0
  23. tencentcloud/lighthouse/v20200324/models.py +4 -4
  24. tencentcloud/mongodb/v20190725/models.py +4 -0
  25. tencentcloud/partners/v20180321/models.py +266 -0
  26. tencentcloud/partners/v20180321/partners_client.py +23 -0
  27. tencentcloud/postgres/v20170312/models.py +2 -8
  28. tencentcloud/redis/v20180412/models.py +48 -0
  29. tencentcloud/tcbr/v20220217/models.py +162 -0
  30. tencentcloud/tdmq/v20200217/models.py +6 -6
  31. tencentcloud/teo/v20220901/errorcodes.py +12 -0
  32. tencentcloud/teo/v20220901/models.py +4 -4
  33. tencentcloud/thpc/v20230321/errorcodes.py +6 -0
  34. tencentcloud/thpc/v20230321/models.py +4 -4
  35. tencentcloud/vpc/v20170312/models.py +36 -38
  36. tencentcloud/vpc/v20170312/vpc_client.py +1 -1
  37. tencentcloud/waf/v20180125/errorcodes.py +12 -0
  38. tencentcloud/waf/v20180125/models.py +291 -29
  39. tencentcloud/wedata/v20210820/models.py +2717 -0
  40. tencentcloud/wedata/v20210820/wedata_client.py +184 -0
  41. {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/METADATA +1 -1
  42. {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/RECORD +45 -45
  43. {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/LICENSE +0 -0
  44. {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/WHEEL +0 -0
  45. {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/top_level.txt +0 -0
@@ -2684,6 +2684,12 @@ class ServerBaseConfig(AbstractModel):
2684
2684
  :type InternalAccess: str
2685
2685
  :param _InternalDomain: 内网域名
2686
2686
  :type InternalDomain: str
2687
+ :param _OperationMode: 运行模式
2688
+ 注意:此字段可能返回 null,表示取不到有效值。
2689
+ :type OperationMode: str
2690
+ :param _TimerScale: 定时扩缩容配置
2691
+ 注意:此字段可能返回 null,表示取不到有效值。
2692
+ :type TimerScale: list of TimerScale
2687
2693
  """
2688
2694
  self._EnvId = None
2689
2695
  self._ServerName = None
@@ -2708,6 +2714,8 @@ class ServerBaseConfig(AbstractModel):
2708
2714
  self._Tag = None
2709
2715
  self._InternalAccess = None
2710
2716
  self._InternalDomain = None
2717
+ self._OperationMode = None
2718
+ self._TimerScale = None
2711
2719
 
2712
2720
  @property
2713
2721
  def EnvId(self):
@@ -2962,6 +2970,30 @@ class ServerBaseConfig(AbstractModel):
2962
2970
  def InternalDomain(self, InternalDomain):
2963
2971
  self._InternalDomain = InternalDomain
2964
2972
 
2973
+ @property
2974
+ def OperationMode(self):
2975
+ """运行模式
2976
+ 注意:此字段可能返回 null,表示取不到有效值。
2977
+ :rtype: str
2978
+ """
2979
+ return self._OperationMode
2980
+
2981
+ @OperationMode.setter
2982
+ def OperationMode(self, OperationMode):
2983
+ self._OperationMode = OperationMode
2984
+
2985
+ @property
2986
+ def TimerScale(self):
2987
+ """定时扩缩容配置
2988
+ 注意:此字段可能返回 null,表示取不到有效值。
2989
+ :rtype: list of TimerScale
2990
+ """
2991
+ return self._TimerScale
2992
+
2993
+ @TimerScale.setter
2994
+ def TimerScale(self, TimerScale):
2995
+ self._TimerScale = TimerScale
2996
+
2965
2997
 
2966
2998
  def _deserialize(self, params):
2967
2999
  self._EnvId = params.get("EnvId")
@@ -2992,6 +3024,13 @@ class ServerBaseConfig(AbstractModel):
2992
3024
  self._Tag = params.get("Tag")
2993
3025
  self._InternalAccess = params.get("InternalAccess")
2994
3026
  self._InternalDomain = params.get("InternalDomain")
3027
+ self._OperationMode = params.get("OperationMode")
3028
+ if params.get("TimerScale") is not None:
3029
+ self._TimerScale = []
3030
+ for item in params.get("TimerScale"):
3031
+ obj = TimerScale()
3032
+ obj._deserialize(item)
3033
+ self._TimerScale.append(obj)
2995
3034
  memeber_set = set(params.keys())
2996
3035
  for name, value in vars(self).items():
2997
3036
  property_name = name[1:]
@@ -3771,6 +3810,129 @@ class TaskStepInfo(AbstractModel):
3771
3810
 
3772
3811
 
3773
3812
 
3813
+ class TimerScale(AbstractModel):
3814
+ """定时扩缩容配置
3815
+
3816
+ """
3817
+
3818
+ def __init__(self):
3819
+ r"""
3820
+ :param _CycleType: 循环类型
3821
+ 注意:此字段可能返回 null,表示取不到有效值。
3822
+ :type CycleType: str
3823
+ :param _StartDate: 循环起始
3824
+ 注意:此字段可能返回 null,表示取不到有效值。
3825
+ :type StartDate: str
3826
+ :param _EndDate: 循环结束
3827
+ 注意:此字段可能返回 null,表示取不到有效值。
3828
+ :type EndDate: str
3829
+ :param _StartTime: 起始时间
3830
+ 注意:此字段可能返回 null,表示取不到有效值。
3831
+ :type StartTime: str
3832
+ :param _EndTime: 结束时间
3833
+ 注意:此字段可能返回 null,表示取不到有效值。
3834
+ :type EndTime: str
3835
+ :param _ReplicaNum: 副本个数
3836
+ 注意:此字段可能返回 null,表示取不到有效值。
3837
+ :type ReplicaNum: int
3838
+ """
3839
+ self._CycleType = None
3840
+ self._StartDate = None
3841
+ self._EndDate = None
3842
+ self._StartTime = None
3843
+ self._EndTime = None
3844
+ self._ReplicaNum = None
3845
+
3846
+ @property
3847
+ def CycleType(self):
3848
+ """循环类型
3849
+ 注意:此字段可能返回 null,表示取不到有效值。
3850
+ :rtype: str
3851
+ """
3852
+ return self._CycleType
3853
+
3854
+ @CycleType.setter
3855
+ def CycleType(self, CycleType):
3856
+ self._CycleType = CycleType
3857
+
3858
+ @property
3859
+ def StartDate(self):
3860
+ """循环起始
3861
+ 注意:此字段可能返回 null,表示取不到有效值。
3862
+ :rtype: str
3863
+ """
3864
+ return self._StartDate
3865
+
3866
+ @StartDate.setter
3867
+ def StartDate(self, StartDate):
3868
+ self._StartDate = StartDate
3869
+
3870
+ @property
3871
+ def EndDate(self):
3872
+ """循环结束
3873
+ 注意:此字段可能返回 null,表示取不到有效值。
3874
+ :rtype: str
3875
+ """
3876
+ return self._EndDate
3877
+
3878
+ @EndDate.setter
3879
+ def EndDate(self, EndDate):
3880
+ self._EndDate = EndDate
3881
+
3882
+ @property
3883
+ def StartTime(self):
3884
+ """起始时间
3885
+ 注意:此字段可能返回 null,表示取不到有效值。
3886
+ :rtype: str
3887
+ """
3888
+ return self._StartTime
3889
+
3890
+ @StartTime.setter
3891
+ def StartTime(self, StartTime):
3892
+ self._StartTime = StartTime
3893
+
3894
+ @property
3895
+ def EndTime(self):
3896
+ """结束时间
3897
+ 注意:此字段可能返回 null,表示取不到有效值。
3898
+ :rtype: str
3899
+ """
3900
+ return self._EndTime
3901
+
3902
+ @EndTime.setter
3903
+ def EndTime(self, EndTime):
3904
+ self._EndTime = EndTime
3905
+
3906
+ @property
3907
+ def ReplicaNum(self):
3908
+ """副本个数
3909
+ 注意:此字段可能返回 null,表示取不到有效值。
3910
+ :rtype: int
3911
+ """
3912
+ return self._ReplicaNum
3913
+
3914
+ @ReplicaNum.setter
3915
+ def ReplicaNum(self, ReplicaNum):
3916
+ self._ReplicaNum = ReplicaNum
3917
+
3918
+
3919
+ def _deserialize(self, params):
3920
+ self._CycleType = params.get("CycleType")
3921
+ self._StartDate = params.get("StartDate")
3922
+ self._EndDate = params.get("EndDate")
3923
+ self._StartTime = params.get("StartTime")
3924
+ self._EndTime = params.get("EndTime")
3925
+ self._ReplicaNum = params.get("ReplicaNum")
3926
+ memeber_set = set(params.keys())
3927
+ for name, value in vars(self).items():
3928
+ property_name = name[1:]
3929
+ if property_name in memeber_set:
3930
+ memeber_set.remove(property_name)
3931
+ if len(memeber_set) > 0:
3932
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
3933
+
3934
+
3935
+
3774
3936
  class UpdateCloudRunServerRequest(AbstractModel):
3775
3937
  """UpdateCloudRunServer请求参数结构体
3776
3938
 
@@ -13134,7 +13134,7 @@ class DescribeRabbitMQNodeListRequest(AbstractModel):
13134
13134
  :type InstanceId: str
13135
13135
  :param _Offset: 偏移量,默认值 0
13136
13136
  :type Offset: int
13137
- :param _Limit: 一页限制,moren
13137
+ :param _Limit: 一页限制,默认值 20
13138
13138
  :type Limit: int
13139
13139
  :param _NodeName: 模糊搜索节点名字
13140
13140
  :type NodeName: str
@@ -13183,7 +13183,7 @@ ascend/descend
13183
13183
 
13184
13184
  @property
13185
13185
  def Limit(self):
13186
- """一页限制,moren
13186
+ """一页限制,默认值 20
13187
13187
  :rtype: int
13188
13188
  """
13189
13189
  return self._Limit
@@ -24003,9 +24003,9 @@ class ModifyRabbitMQVirtualHostRequest(AbstractModel):
24003
24003
  r"""
24004
24004
  :param _InstanceId: 实例 ID,形如amqp-xxxxxxxx。有效的 InstanceId 可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询。
24005
24005
  :type InstanceId: str
24006
- :param _VirtualHost: vhost名
24006
+ :param _VirtualHost: VirtualHost 名称,形如 testvhost。有效的 VirtualHost 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,在左侧导航栏点击 Vhost,并在 Vhost 列表中找到Vhost名称。
24007
24007
  :type VirtualHost: str
24008
- :param _Description: VirtualHost 名称,形如 testvhost。有效的 VirtualHost 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,在左侧导航栏点击 Vhost,并在 Vhost 列表中找到Vhost名称。
24008
+ :param _Description: Virtual Host 描述
24009
24009
  :type Description: str
24010
24010
  :param _TraceFlag: 消息轨迹开关,true打开,false关闭
24011
24011
  :type TraceFlag: bool
@@ -24028,7 +24028,7 @@ class ModifyRabbitMQVirtualHostRequest(AbstractModel):
24028
24028
 
24029
24029
  @property
24030
24030
  def VirtualHost(self):
24031
- """vhost名
24031
+ """VirtualHost 名称,形如 testvhost。有效的 VirtualHost 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,在左侧导航栏点击 Vhost,并在 Vhost 列表中找到Vhost名称。
24032
24032
  :rtype: str
24033
24033
  """
24034
24034
  return self._VirtualHost
@@ -24039,7 +24039,7 @@ class ModifyRabbitMQVirtualHostRequest(AbstractModel):
24039
24039
 
24040
24040
  @property
24041
24041
  def Description(self):
24042
- """VirtualHost 名称,形如 testvhost。有效的 VirtualHost 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,在左侧导航栏点击 Vhost,并在 Vhost 列表中找到Vhost名称。
24042
+ """Virtual Host 描述
24043
24043
  :rtype: str
24044
24044
  """
24045
24045
  return self._Description
@@ -35,21 +35,33 @@ FAILEDOPERATION_CONFIGCONDITIONUNKNOWNTARGET = 'FailedOperation.ConfigConditionU
35
35
  # 配置文件Condition表达式值的项不能为空。
36
36
  FAILEDOPERATION_CONFIGCONDITIONVALUEEMPTYERROR = 'FailedOperation.ConfigConditionValueEmptyError'
37
37
 
38
+ # 配置文件不允许重复的关键字。
39
+ FAILEDOPERATION_CONFIGDUPLICATEKEYERROR = 'FailedOperation.ConfigDuplicateKeyError'
40
+
38
41
  # 配置文件存在类型不匹配的字段。
39
42
  FAILEDOPERATION_CONFIGFIELDTYPEERROR = 'FailedOperation.ConfigFieldTypeError'
40
43
 
41
44
  # 配置文件存在语法错误。
42
45
  FAILEDOPERATION_CONFIGFORMATERROR = 'FailedOperation.ConfigFormatError'
43
46
 
47
+ # 版本管理配置文件JSON格式错误
48
+ FAILEDOPERATION_CONFIGJSONFORMATERROR = 'FailedOperation.ConfigJSONFormatError'
49
+
44
50
  # 配置文件内容格式错误,无法解析。
45
51
  FAILEDOPERATION_CONFIGMALFORMEDCONTENT = 'FailedOperation.ConfigMalformedContent'
46
52
 
47
53
  # 配置文件参数校验错误。
48
54
  FAILEDOPERATION_CONFIGPARAMVALIDATEERRORS = 'FailedOperation.ConfigParamValidateErrors'
49
55
 
56
+ # 时间格式解析错误
57
+ FAILEDOPERATION_CONFIGTIMEPARSINGERROR = 'FailedOperation.ConfigTimeParsingError'
58
+
50
59
  # 配置文件无法识别的字段:存在拼写错误,或者该字段所在的层级出错。
51
60
  FAILEDOPERATION_CONFIGUNKNOWNFIELD = 'FailedOperation.ConfigUnknownField'
52
61
 
62
+ # 不支持的配置项Action
63
+ FAILEDOPERATION_CONFIGUNSUPPORTEDACTION = 'FailedOperation.ConfigUnsupportedAction'
64
+
53
65
  # 当前不支持该配置文件版本。
54
66
  FAILEDOPERATION_CONFIGUNSUPPORTEDFORMATVERSION = 'FailedOperation.ConfigUnsupportedFormatVersion'
55
67
 
@@ -17788,7 +17788,7 @@ class DescribeOriginGroupRequest(AbstractModel):
17788
17788
  :param _Limit: 分页查询限制数目,不填默认为20,取值:1-1000。
17789
17789
  :type Limit: int
17790
17790
  :param _Filters: 过滤条件,Filters.Values的上限为20。详细的过滤条件如下:
17791
- <li>origin-group-id<br>   按照【<strong>源站组ID</strong>】进行过滤。源站组ID形如:origin-2ccgtb24-7dc5-46s2-9r3e-95825d53dwe3a<br>   模糊查询:不支持</li><li>origin-group-name<br>   按照【<strong>源站组名称</strong>】进行过滤<br>   模糊查询:支持。使用模糊查询时,仅支持填写一个源站组名称</li>
17791
+ <li>origin-group-id:按照源站组 ID 进行过滤,不支持模糊查询。源站组 ID 形如:origin-2ccgtb24-7dc5-46s2-9r3e-95825d53dwe3a;</li><li>origin-group-name: 按照源站组名称进行过滤,使用模糊查询时,仅支持填写一个源站组名称。</li>
17792
17792
  :type Filters: list of AdvancedFilter
17793
17793
  """
17794
17794
  self._ZoneId = None
@@ -17832,7 +17832,7 @@ class DescribeOriginGroupRequest(AbstractModel):
17832
17832
  @property
17833
17833
  def Filters(self):
17834
17834
  """过滤条件,Filters.Values的上限为20。详细的过滤条件如下:
17835
- <li>origin-group-id<br>   按照【<strong>源站组ID</strong>】进行过滤。源站组ID形如:origin-2ccgtb24-7dc5-46s2-9r3e-95825d53dwe3a<br>   模糊查询:不支持</li><li>origin-group-name<br>   按照【<strong>源站组名称</strong>】进行过滤<br>   模糊查询:支持。使用模糊查询时,仅支持填写一个源站组名称</li>
17835
+ <li>origin-group-id:按照源站组 ID 进行过滤,不支持模糊查询。源站组 ID 形如:origin-2ccgtb24-7dc5-46s2-9r3e-95825d53dwe3a;</li><li>origin-group-name: 按照源站组名称进行过滤,使用模糊查询时,仅支持填写一个源站组名称。</li>
17836
17836
  :rtype: list of AdvancedFilter
17837
17837
  """
17838
17838
  return self._Filters
@@ -43380,14 +43380,14 @@ class VerifyOwnershipRequest(AbstractModel):
43380
43380
 
43381
43381
  def __init__(self):
43382
43382
  r"""
43383
- :param _Domain: 站点或者加速域名。
43383
+ :param _Domain: 站点域名或者站点下的加速域名。
43384
43384
  :type Domain: str
43385
43385
  """
43386
43386
  self._Domain = None
43387
43387
 
43388
43388
  @property
43389
43389
  def Domain(self):
43390
- """站点或者加速域名。
43390
+ """站点域名或者站点下的加速域名。
43391
43391
  :rtype: str
43392
43392
  """
43393
43393
  return self._Domain
@@ -26,6 +26,9 @@ FAILEDOPERATION = 'FailedOperation'
26
26
  # 内部错误。
27
27
  INTERNALERROR = 'InternalError'
28
28
 
29
+ # agent执行脚本失败。
30
+ INTERNALERROR_AGENTRUNSCRIPTFAIL = 'InternalError.AgentRunScriptFail'
31
+
29
32
  # CAM服务调用失败。
30
33
  INTERNALERROR_CALLCAM = 'InternalError.CallCAM'
31
34
 
@@ -35,6 +38,9 @@ INTERNALERROR_CALLCVM = 'InternalError.CallCvm'
35
38
  # 参数错误。
36
39
  INVALIDPARAMETER = 'InvalidParameter'
37
40
 
41
+ # 参数互斥,最多只能传入一个参数
42
+ INVALIDPARAMETER_ATMOSTONE = 'InvalidParameter.AtMostOne'
43
+
38
44
  # 参数格式有误。
39
45
  INVALIDPARAMETER_MALFORMED = 'InvalidParameter.Malformed'
40
46
 
@@ -503,7 +503,7 @@ class AddQueueRequest(AbstractModel):
503
503
  r"""
504
504
  :param _ClusterId: 集群ID。
505
505
  :type ClusterId: str
506
- :param _QueueName: 队列名称。<br><li>最多支持32个字符。
506
+ :param _QueueName: 队列名称。<br><li>最多支持32个字符。</li>
507
507
  :type QueueName: str
508
508
  """
509
509
  self._ClusterId = None
@@ -522,7 +522,7 @@ class AddQueueRequest(AbstractModel):
522
522
 
523
523
  @property
524
524
  def QueueName(self):
525
- """队列名称。<br><li>最多支持32个字符。
525
+ """队列名称。<br><li>最多支持32个字符。</li>
526
526
  :rtype: str
527
527
  """
528
528
  return self._QueueName
@@ -3708,7 +3708,7 @@ class DescribeWorkspacesRequest(AbstractModel):
3708
3708
  :type Offset: int
3709
3709
  :param _Limit: 返回数量,默认为20,最大值为100。关于`Limit`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。
3710
3710
  :type Limit: int
3711
- :param _Filters: 过滤列表
3711
+ :param _Filters: <ul> <li> <strong>zone</strong> <p style="padding-left: 30px;">按照【<strong>可用区</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-id</strong> <p style="padding-left: 30px;">按照【<strong>工作空间实例ID</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>cvm-instance-id</strong> <p style="padding-left: 30px;">按照【<strong>CVM实例ID</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-state</strong> <p style="padding-left: 30px;">按照【<strong>工作空间状态</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-name</strong> <p style="padding-left: 30px;">按照【<strong>工作空间别名</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-charge-type</strong> <p style="padding-left: 30px;">按照【<strong>工作空间实例付费模式</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>tag-key</strong> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>tag-value</strong> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> </ul> <p style="padding-left: 30px;">每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。</p>
3712
3712
  :type Filters: list of Filter
3713
3713
  """
3714
3714
  self._SpaceIds = None
@@ -3751,7 +3751,7 @@ class DescribeWorkspacesRequest(AbstractModel):
3751
3751
 
3752
3752
  @property
3753
3753
  def Filters(self):
3754
- """过滤列表
3754
+ """<ul> <li> <strong>zone</strong> <p style="padding-left: 30px;">按照【<strong>可用区</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-id</strong> <p style="padding-left: 30px;">按照【<strong>工作空间实例ID</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>cvm-instance-id</strong> <p style="padding-left: 30px;">按照【<strong>CVM实例ID</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-state</strong> <p style="padding-left: 30px;">按照【<strong>工作空间状态</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-name</strong> <p style="padding-left: 30px;">按照【<strong>工作空间别名</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>space-charge-type</strong> <p style="padding-left: 30px;">按照【<strong>工作空间实例付费模式</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>tag-key</strong> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> <li> <strong>tag-value</strong> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤</p> <p style="padding-left: 30px;">类型:String</p> <p style="padding-left: 30px;">必选:否</p></li> </ul> <p style="padding-left: 30px;">每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。</p>
3755
3755
  :rtype: list of Filter
3756
3756
  """
3757
3757
  return self._Filters
@@ -1895,10 +1895,9 @@ class AllocateAddressesRequest(AbstractModel):
1895
1895
  :type AddressChargePrepaid: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
1896
1896
  :param _AddressType: EIP类型。各种EIP类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:EIP。
1897
1897
  <li>EIP:弹性公网 IP。 </li>
1898
- <li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP。</li>
1899
- <li>HighQualityEIP:精品 IP。仅部分地域支持精品IP。</li>
1900
- <li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP。</li>
1901
-
1898
+ <li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP,详情可见Anycast公网加速[购买指南](https://cloud.tencent.com/document/product/644/12617)。</li>
1899
+ <li>HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
1900
+ <li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见弹性公网IP[产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li>
1902
1901
  :type AddressType: str
1903
1902
  :param _AnycastZone: Anycast发布域。
1904
1903
  <ul style="margin:0"><li>已开通Anycast公网加速白名单的用户,可选值:<ul><li>ANYCAST_ZONE_GLOBAL:全球发布域(需要额外开通Anycast全球加速白名单)</li><li>ANYCAST_ZONE_OVERSEAS:境外发布域</li><li><b>[已废弃]</b> ANYCAST_ZONE_A:发布域A(已更新为全球发布域)</li><li><b>[已废弃]</b> ANYCAST_ZONE_B:发布域B(已更新为全球发布域)</li></ul>默认值:ANYCAST_ZONE_OVERSEAS。</li></ul>
@@ -2023,10 +2022,9 @@ AnycastEIP是否用于绑定负载均衡。
2023
2022
  def AddressType(self):
2024
2023
  """EIP类型。各种EIP类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:EIP。
2025
2024
  <li>EIP:弹性公网 IP。 </li>
2026
- <li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP。</li>
2027
- <li>HighQualityEIP:精品 IP。仅部分地域支持精品IP。</li>
2028
- <li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP。</li>
2029
-
2025
+ <li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP,详情可见Anycast公网加速[购买指南](https://cloud.tencent.com/document/product/644/12617)。</li>
2026
+ <li>HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
2027
+ <li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见弹性公网IP[产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li>
2030
2028
  :rtype: str
2031
2029
  """
2032
2030
  return self._AddressType
@@ -22830,19 +22828,19 @@ class DescribeAddressesRequest(AbstractModel):
22830
22828
 
22831
22829
  def __init__(self):
22832
22830
  r"""
22833
- :param _AddressIds: 标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22831
+ :param _AddressIds: 标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22834
22832
  :type AddressIds: list of str
22835
22833
  :param _Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:
22836
- <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>
22837
- <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>
22838
- <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>
22839
- <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING''BINDING''BIND''UNBINDING''UNBIND''OFFLINING''BIND_ENI'。</li>
22840
- <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>
22841
- <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>
22842
- <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。</li>
22834
+ <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-id。</li>
22835
+ <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-name。</li>
22836
+ <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-ip。</li>
22837
+ <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING':创建中,'BINDING':绑定中,'BIND':已绑,'UNBINDING':解绑中,'UNBIND':未绑定,'OFFLINING':下线中,'BIND_ENI':绑定了ENI。</li>
22838
+ <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取instance-id。</li>
22839
+ <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取private-ip-address。</li>
22840
+ <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取network-interface-id。</li>
22843
22841
  <li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>
22844
- <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP', 'AntiDDoSEIP'。默认值是'EIP'。</li>
22845
- <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC''CUCC', 'CTCC'</li>
22842
+ <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP':普通公网 IP, 'EIP':弹性公网 IP,'AnycastEIP':加速 IP,'HighQualityEIP':精品弹性公网 IP, 'AntiDDoSEIP':高防 IP。默认值是'EIP'。</li>
22843
+ <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP':常规BGP,'CMCC':移动,'CUCC':联通, 'CTCC':电信</li>
22846
22844
  <li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>
22847
22845
  <li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>
22848
22846
  <li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>
@@ -22860,7 +22858,7 @@ class DescribeAddressesRequest(AbstractModel):
22860
22858
 
22861
22859
  @property
22862
22860
  def AddressIds(self):
22863
- """标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22861
+ """标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22864
22862
  :rtype: list of str
22865
22863
  """
22866
22864
  return self._AddressIds
@@ -22872,16 +22870,16 @@ class DescribeAddressesRequest(AbstractModel):
22872
22870
  @property
22873
22871
  def Filters(self):
22874
22872
  """每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:
22875
- <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>
22876
- <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>
22877
- <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>
22878
- <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING''BINDING''BIND''UNBINDING''UNBIND''OFFLINING''BIND_ENI'。</li>
22879
- <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>
22880
- <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>
22881
- <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。</li>
22873
+ <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-id。</li>
22874
+ <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-name。</li>
22875
+ <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-ip。</li>
22876
+ <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING':创建中,'BINDING':绑定中,'BIND':已绑,'UNBINDING':解绑中,'UNBIND':未绑定,'OFFLINING':下线中,'BIND_ENI':绑定了ENI。</li>
22877
+ <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取instance-id。</li>
22878
+ <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取private-ip-address。</li>
22879
+ <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取network-interface-id。</li>
22882
22880
  <li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>
22883
- <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP', 'AntiDDoSEIP'。默认值是'EIP'。</li>
22884
- <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC''CUCC', 'CTCC'</li>
22881
+ <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP':普通公网 IP, 'EIP':弹性公网 IP,'AnycastEIP':加速 IP,'HighQualityEIP':精品弹性公网 IP, 'AntiDDoSEIP':高防 IP。默认值是'EIP'。</li>
22882
+ <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP':常规BGP,'CMCC':移动,'CUCC':联通, 'CTCC':电信</li>
22885
22883
  <li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>
22886
22884
  <li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>
22887
22885
  <li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>
@@ -44828,9 +44826,9 @@ class InquiryPriceModifyAddressesBandwidthRequest(AbstractModel):
44828
44826
 
44829
44827
  def __init__(self):
44830
44828
  r"""
44831
- :param _AddressIds: EIP唯一ID
44829
+ :param _AddressIds: EIP唯一ID,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
44832
44830
  :type AddressIds: list of str
44833
- :param _InternetMaxBandwidthOut: 新带宽值
44831
+ :param _InternetMaxBandwidthOut: 新带宽值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
44834
44832
  :type InternetMaxBandwidthOut: int
44835
44833
  """
44836
44834
  self._AddressIds = None
@@ -44838,7 +44836,7 @@ class InquiryPriceModifyAddressesBandwidthRequest(AbstractModel):
44838
44836
 
44839
44837
  @property
44840
44838
  def AddressIds(self):
44841
- """EIP唯一ID
44839
+ """EIP唯一ID,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
44842
44840
  :rtype: list of str
44843
44841
  """
44844
44842
  return self._AddressIds
@@ -44849,7 +44847,7 @@ class InquiryPriceModifyAddressesBandwidthRequest(AbstractModel):
44849
44847
 
44850
44848
  @property
44851
44849
  def InternetMaxBandwidthOut(self):
44852
- """新带宽值
44850
+ """新带宽值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
44853
44851
  :rtype: int
44854
44852
  """
44855
44853
  return self._InternetMaxBandwidthOut
@@ -49875,9 +49873,9 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
49875
49873
 
49876
49874
  def __init__(self):
49877
49875
  r"""
49878
- :param _IPv6AddressIds: 弹性公网IPv6地址唯一ID
49876
+ :param _IPv6AddressIds: 弹性公网IPv6地址唯一ID,可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
49879
49877
  :type IPv6AddressIds: list of str
49880
- :param _InternetMaxBandwidthOut: 弹性公网IPv6地址网络带宽
49878
+ :param _InternetMaxBandwidthOut: 弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
49881
49879
  :type InternetMaxBandwidthOut: int
49882
49880
  """
49883
49881
  self._IPv6AddressIds = None
@@ -49885,7 +49883,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
49885
49883
 
49886
49884
  @property
49887
49885
  def IPv6AddressIds(self):
49888
- """弹性公网IPv6地址唯一ID
49886
+ """弹性公网IPv6地址唯一ID,可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
49889
49887
  :rtype: list of str
49890
49888
  """
49891
49889
  return self._IPv6AddressIds
@@ -49896,7 +49894,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
49896
49894
 
49897
49895
  @property
49898
49896
  def InternetMaxBandwidthOut(self):
49899
- """弹性公网IPv6地址网络带宽
49897
+ """弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
49900
49898
  :rtype: int
49901
49899
  """
49902
49900
  return self._InternetMaxBandwidthOut
@@ -62031,14 +62029,14 @@ class ReturnNormalAddressesRequest(AbstractModel):
62031
62029
 
62032
62030
  def __init__(self):
62033
62031
  r"""
62034
- :param _AddressIps: 普通公网IP 的 IP 地址,示例:101.35.139.183
62032
+ :param _AddressIps: 普通公网IP 的 IP 地址,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressIps。
62035
62033
  :type AddressIps: list of str
62036
62034
  """
62037
62035
  self._AddressIps = None
62038
62036
 
62039
62037
  @property
62040
62038
  def AddressIps(self):
62041
- """普通公网IP 的 IP 地址,示例:101.35.139.183
62039
+ """普通公网IP 的 IP 地址,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressIps。
62042
62040
  :rtype: list of str
62043
62041
  """
62044
62042
  return self._AddressIps
@@ -6900,7 +6900,7 @@ class VpcClient(AbstractClient):
6900
6900
 
6901
6901
 
6902
6902
  def InquiryPriceModifyAddressesBandwidth(self, request):
6903
- """EIP修改带宽询价
6903
+ """本接口(InquiryPriceModifyAddressesBandwidth)用于EIP修改带宽询价。
6904
6904
 
6905
6905
  :param request: Request instance for InquiryPriceModifyAddressesBandwidth.
6906
6906
  :type request: :class:`tencentcloud.vpc.v20170312.models.InquiryPriceModifyAddressesBandwidthRequest`
@@ -35,6 +35,9 @@ FAILEDOPERATION_CLSDBOPERATIONFAILED = 'FailedOperation.CLSDBOperationFailed'
35
35
  # CLS内部错误。
36
36
  FAILEDOPERATION_CLSINTERNALERROR = 'FailedOperation.CLSInternalError'
37
37
 
38
+ # 证书不存在
39
+ FAILEDOPERATION_CERTIFICATENOTFOUND = 'FailedOperation.CertificateNotFound'
40
+
38
41
  # 操作CH数据库失败
39
42
  FAILEDOPERATION_CLICKHOUSEOPERATIONFAILED = 'FailedOperation.ClickHouseOperationFailed'
40
43
 
@@ -65,6 +68,9 @@ INTERNALERROR_ASYNCHRONOUSCALLFAILED = 'InternalError.AsynchronousCallFailed'
65
68
  # DBErr
66
69
  INTERNALERROR_DBERR = 'InternalError.DBErr'
67
70
 
71
+ # 调用SSL证书接口发生内部错误
72
+ INTERNALERROR_SSLCALLFAILED = 'InternalError.SSLCallFailed'
73
+
68
74
  # 存在内部错误,请联系我们
69
75
  INTERNALERROR_UNKNOWNERR = 'InternalError.UnknownErr'
70
76
 
@@ -77,6 +83,9 @@ INVALIDPARAMETER_BOTNAMEREPEATERR = 'InvalidParameter.BotNameRepeatErr'
77
83
  # Bot场景不存在
78
84
  INVALIDPARAMETER_BOTSCENENOTEXISTERR = 'InvalidParameter.BotSceneNotExistErr'
79
85
 
86
+ # 证书和私钥检查不通过
87
+ INVALIDPARAMETER_CERTIFICATECHECKERR = 'InvalidParameter.CertificateCheckErr'
88
+
80
89
  # 证书信息参数错误
81
90
  INVALIDPARAMETER_CERTIFICATIONPARAMETERERR = 'InvalidParameter.CertificationParameterErr'
82
91
 
@@ -173,6 +182,9 @@ RESOURCEUNAVAILABLE = 'ResourceUnavailable'
173
182
  # IPV6网络正在分配,请耐心等待
174
183
  RESOURCEUNAVAILABLE_DOMAINIPV6INCONFIGERR = 'ResourceUnavailable.DomainIpv6InConfigErr'
175
184
 
185
+ # SSL证书ID关联的证书内容错误
186
+ RESOURCEUNAVAILABLE_SSLCERTIFICATEERR = 'ResourceUnavailable.SSLCertificateErr'
187
+
176
188
  # 资源售罄。
177
189
  RESOURCESSOLDOUT = 'ResourcesSoldOut'
178
190