tencentcloud-sdk-python 3.0.1376__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 (34) 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/cdb/v20170320/cdb_client.py +0 -25
  6. tencentcloud/cdb/v20170320/models.py +0 -113
  7. tencentcloud/cfw/v20190904/models.py +17 -2
  8. tencentcloud/dsgc/v20190723/models.py +15 -0
  9. tencentcloud/ess/v20201111/ess_client.py +27 -0
  10. tencentcloud/ess/v20201111/models.py +186 -4
  11. tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
  12. tencentcloud/essbasic/v20210526/models.py +220 -4
  13. tencentcloud/gaap/v20180529/errorcodes.py +0 -33
  14. tencentcloud/gaap/v20180529/gaap_client.py +0 -75
  15. tencentcloud/gaap/v20180529/models.py +0 -653
  16. tencentcloud/hunyuan/v20230901/models.py +20 -8
  17. tencentcloud/iai/v20180301/models.py +44 -34
  18. tencentcloud/keewidb/v20220308/models.py +4 -0
  19. tencentcloud/lighthouse/v20200324/models.py +4 -4
  20. tencentcloud/postgres/v20170312/models.py +0 -6
  21. tencentcloud/redis/v20180412/models.py +48 -0
  22. tencentcloud/tcbr/v20220217/models.py +162 -0
  23. tencentcloud/tdmq/v20200217/models.py +6 -6
  24. tencentcloud/thpc/v20230321/models.py +2 -2
  25. tencentcloud/vpc/v20170312/models.py +20 -20
  26. tencentcloud/waf/v20180125/errorcodes.py +12 -0
  27. tencentcloud/waf/v20180125/models.py +246 -29
  28. tencentcloud/wedata/v20210820/models.py +2692 -154
  29. tencentcloud/wedata/v20210820/wedata_client.py +161 -0
  30. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/METADATA +1 -1
  31. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/RECORD +34 -34
  32. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/LICENSE +0 -0
  33. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/WHEEL +0 -0
  34. {tencentcloud_sdk_python-3.0.1376.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
@@ -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
@@ -22828,19 +22828,19 @@ class DescribeAddressesRequest(AbstractModel):
22828
22828
 
22829
22829
  def __init__(self):
22830
22830
  r"""
22831
- :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`。
22832
22832
  :type AddressIds: list of str
22833
22833
  :param _Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:
22834
- <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>
22835
- <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>
22836
- <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>
22837
- <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING''BINDING''BIND''UNBINDING''UNBIND''OFFLINING''BIND_ENI'。</li>
22838
- <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>
22839
- <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>
22840
- <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>
22841
22841
  <li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>
22842
- <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP', 'AntiDDoSEIP'。默认值是'EIP'。</li>
22843
- <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>
22844
22844
  <li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>
22845
22845
  <li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>
22846
22846
  <li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>
@@ -22858,7 +22858,7 @@ class DescribeAddressesRequest(AbstractModel):
22858
22858
 
22859
22859
  @property
22860
22860
  def AddressIds(self):
22861
- """标识 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`。
22862
22862
  :rtype: list of str
22863
22863
  """
22864
22864
  return self._AddressIds
@@ -22870,16 +22870,16 @@ class DescribeAddressesRequest(AbstractModel):
22870
22870
  @property
22871
22871
  def Filters(self):
22872
22872
  """每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:
22873
- <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>
22874
- <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>
22875
- <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>
22876
- <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING''BINDING''BIND''UNBINDING''UNBIND''OFFLINING''BIND_ENI'。</li>
22877
- <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>
22878
- <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>
22879
- <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>
22880
22880
  <li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>
22881
- <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP', 'AntiDDoSEIP'。默认值是'EIP'。</li>
22882
- <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>
22883
22883
  <li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>
22884
22884
  <li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>
22885
22885
  <li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>
@@ -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