tencentcloud-sdk-python 3.0.1443__py2.py3-none-any.whl → 3.0.1445__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.

Files changed (46) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +2 -2
  3. tencentcloud/clb/v20180317/models.py +422 -26
  4. tencentcloud/cls/v20201016/cls_client.py +1 -1
  5. tencentcloud/cls/v20201016/models.py +539 -172
  6. tencentcloud/emr/v20190103/errorcodes.py +3 -0
  7. tencentcloud/ess/v20201111/models.py +105 -0
  8. tencentcloud/essbasic/v20210526/models.py +60 -0
  9. tencentcloud/keewidb/v20220308/errorcodes.py +3 -0
  10. tencentcloud/keewidb/v20220308/models.py +2 -2
  11. tencentcloud/lcic/v20220817/errorcodes.py +15 -0
  12. tencentcloud/lcic/v20220817/models.py +67 -16
  13. tencentcloud/lke/v20231130/lke_client.py +1 -1
  14. tencentcloud/lke/v20231130/models.py +1998 -50
  15. tencentcloud/lkeap/v20240522/errorcodes.py +1 -1
  16. tencentcloud/mongodb/v20190725/models.py +4 -4
  17. tencentcloud/mps/v20190612/models.py +64 -0
  18. tencentcloud/ocr/v20181119/models.py +46 -16
  19. tencentcloud/partners/v20180321/models.py +4 -4
  20. tencentcloud/postgres/v20170312/errorcodes.py +0 -12
  21. tencentcloud/postgres/v20170312/models.py +191 -1527
  22. tencentcloud/postgres/v20170312/postgres_client.py +0 -75
  23. tencentcloud/sqlserver/v20180328/models.py +6 -6
  24. tencentcloud/sts/v20180813/sts_client.py +21 -7
  25. tencentcloud/tcbr/v20220217/models.py +151 -0
  26. tencentcloud/tcss/v20201101/models.py +45 -0
  27. tencentcloud/tke/v20180525/models.py +17 -2
  28. tencentcloud/trabbit/v20230418/models.py +75 -0
  29. tencentcloud/trocket/v20230308/models.py +319 -0
  30. tencentcloud/trocket/v20230308/trocket_client.py +25 -0
  31. tencentcloud/trtc/v20190722/errorcodes.py +3 -0
  32. tencentcloud/trtc/v20190722/models.py +6 -4
  33. tencentcloud/tsf/v20180326/errorcodes.py +15 -0
  34. tencentcloud/tsf/v20180326/models.py +989 -589
  35. tencentcloud/tsf/v20180326/tsf_client.py +1 -1
  36. tencentcloud/vod/v20180717/models.py +570 -10
  37. tencentcloud/vod/v20180717/vod_client.py +102 -0
  38. tencentcloud/waf/v20180125/errorcodes.py +6 -0
  39. tencentcloud/waf/v20180125/models.py +1926 -744
  40. tencentcloud/waf/v20180125/waf_client.py +161 -0
  41. tencentcloud/wedata/v20210820/models.py +204 -0
  42. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/METADATA +1 -1
  43. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/RECORD +46 -46
  44. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/LICENSE +0 -0
  45. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/WHEEL +0 -0
  46. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1443'
17
+ __version__ = '3.0.1445'
@@ -5676,10 +5676,10 @@ class Filter(AbstractModel):
5676
5676
  > * 若存在多个`Filter`时,`Filter`间的关系为逻辑与(`AND`)关系。
5677
5677
  > * 若同一个`Filter`存在多个`Values`,同一`Filter`下`Values`间的关系为逻辑或(`OR`)关系。
5678
5678
  >
5679
- > 以[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口的`Filter`为例。若我们需要查询可用区(`zone`)为广州一区 ***并且*** 实例计费模式(`instance-charge-type`)为包年包月 ***或者*** 按量计费的实例时,可如下实现:
5679
+ > 以[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口的`Filter`为例。若我们需要查询可用区(`zone`)为广州六区 ***并且*** 实例计费模式(`instance-charge-type`)为包年包月 ***或者*** 按量计费的实例时,可如下实现:
5680
5680
  ```
5681
5681
  Filters.0.Name=zone
5682
- &Filters.0.Values.0=ap-guangzhou-1
5682
+ &Filters.0.Values.0=ap-guangzhou-6
5683
5683
  &Filters.1.Name=instance-charge-type
5684
5684
  &Filters.1.Values.0=PREPAID
5685
5685
  &Filters.1.Values.1=POSTPAID_BY_HOUR
@@ -5213,7 +5213,7 @@ class CreateTargetGroupRequest(AbstractModel):
5213
5213
  r"""
5214
5214
  :param _TargetGroupName: 目标组名称,限定50个字符
5215
5215
  :type TargetGroupName: str
5216
- :param _VpcId: 目标组的vpcid属性,不填则使用默认vpc
5216
+ :param _VpcId: 目标组的vpcId属性,不填则使用默认vpc
5217
5217
  :type VpcId: str
5218
5218
  :param _Port: 目标组的默认端口, 后续添加服务器时可使用该默认端口。全监听目标组不支持此参数,非全监听目标组Port和TargetGroupInstances.N中的port二者必填其一。
5219
5219
 
@@ -5224,14 +5224,15 @@ class CreateTargetGroupRequest(AbstractModel):
5224
5224
  :type Type: str
5225
5225
  :param _Protocol: 目标组后端转发协议。v2新版目标组该项必填。目前支持TCP、UDP、HTTP、HTTPS、GRPC。
5226
5226
  :type Protocol: str
5227
+ :param _HealthCheck: 健康检查。
5228
+ :type HealthCheck: :class:`tencentcloud.clb.v20180317.models.TargetGroupHealthCheck`
5229
+ :param _ScheduleAlgorithm: 调度算法,仅V2新版目标组,且后端转发协议为(HTTP|HTTPS|GRPC)时该参数有效。可选值:
5230
+ <ur><li>WRR:按权重轮询。</li><li>LEAST_CONN:最小连接数。</li><li>IP_HASH:按IP哈希。</li><li>默认为 WRR。</li><ur>
5231
+ :type ScheduleAlgorithm: str
5227
5232
  :param _Tags: 标签。
5228
5233
  :type Tags: list of TagInfo
5229
- :param _Weight: 后端服务默认权重。
5230
- <ul>
5231
- <li>取值范围[0, 100]</li>
5232
- <li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li>
5233
- </ul>
5234
- v1 目标组类型不支持设置 Weight 参数。
5234
+ :param _Weight: 后端服务默认权重, 其中:
5235
+ <ul><li>取值范围[0, 100]</li><li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li><li>v1 目标组类型不支持设置 Weight 参数。</li></ul>
5235
5236
  :type Weight: int
5236
5237
  :param _FullListenSwitch: 全监听目标组标识,true表示是全监听目标组,false表示不是全监听目标组。仅V2新版类型目标组支持该参数。
5237
5238
  :type FullListenSwitch: bool
@@ -5246,6 +5247,8 @@ v1 目标组类型不支持设置 Weight 参数。
5246
5247
  self._TargetGroupInstances = None
5247
5248
  self._Type = None
5248
5249
  self._Protocol = None
5250
+ self._HealthCheck = None
5251
+ self._ScheduleAlgorithm = None
5249
5252
  self._Tags = None
5250
5253
  self._Weight = None
5251
5254
  self._FullListenSwitch = None
@@ -5265,7 +5268,7 @@ v1 目标组类型不支持设置 Weight 参数。
5265
5268
 
5266
5269
  @property
5267
5270
  def VpcId(self):
5268
- """目标组的vpcid属性,不填则使用默认vpc
5271
+ """目标组的vpcId属性,不填则使用默认vpc
5269
5272
  :rtype: str
5270
5273
  """
5271
5274
  return self._VpcId
@@ -5319,6 +5322,29 @@ v1 目标组类型不支持设置 Weight 参数。
5319
5322
  def Protocol(self, Protocol):
5320
5323
  self._Protocol = Protocol
5321
5324
 
5325
+ @property
5326
+ def HealthCheck(self):
5327
+ """健康检查。
5328
+ :rtype: :class:`tencentcloud.clb.v20180317.models.TargetGroupHealthCheck`
5329
+ """
5330
+ return self._HealthCheck
5331
+
5332
+ @HealthCheck.setter
5333
+ def HealthCheck(self, HealthCheck):
5334
+ self._HealthCheck = HealthCheck
5335
+
5336
+ @property
5337
+ def ScheduleAlgorithm(self):
5338
+ """调度算法,仅V2新版目标组,且后端转发协议为(HTTP|HTTPS|GRPC)时该参数有效。可选值:
5339
+ <ur><li>WRR:按权重轮询。</li><li>LEAST_CONN:最小连接数。</li><li>IP_HASH:按IP哈希。</li><li>默认为 WRR。</li><ur>
5340
+ :rtype: str
5341
+ """
5342
+ return self._ScheduleAlgorithm
5343
+
5344
+ @ScheduleAlgorithm.setter
5345
+ def ScheduleAlgorithm(self, ScheduleAlgorithm):
5346
+ self._ScheduleAlgorithm = ScheduleAlgorithm
5347
+
5322
5348
  @property
5323
5349
  def Tags(self):
5324
5350
  """标签。
@@ -5332,12 +5358,8 @@ v1 目标组类型不支持设置 Weight 参数。
5332
5358
 
5333
5359
  @property
5334
5360
  def Weight(self):
5335
- """后端服务默认权重。
5336
- <ul>
5337
- <li>取值范围[0, 100]</li>
5338
- <li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li>
5339
- </ul>
5340
- v1 目标组类型不支持设置 Weight 参数。
5361
+ """后端服务默认权重, 其中:
5362
+ <ul><li>取值范围[0, 100]</li><li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li><li>v1 目标组类型不支持设置 Weight 参数。</li></ul>
5341
5363
  :rtype: int
5342
5364
  """
5343
5365
  return self._Weight
@@ -5392,6 +5414,10 @@ v1 目标组类型不支持设置 Weight 参数。
5392
5414
  self._TargetGroupInstances.append(obj)
5393
5415
  self._Type = params.get("Type")
5394
5416
  self._Protocol = params.get("Protocol")
5417
+ if params.get("HealthCheck") is not None:
5418
+ self._HealthCheck = TargetGroupHealthCheck()
5419
+ self._HealthCheck._deserialize(params.get("HealthCheck"))
5420
+ self._ScheduleAlgorithm = params.get("ScheduleAlgorithm")
5395
5421
  if params.get("Tags") is not None:
5396
5422
  self._Tags = []
5397
5423
  for item in params.get("Tags"):
@@ -17724,12 +17750,12 @@ class ModifyTargetGroupAttributeRequest(AbstractModel):
17724
17750
  :type TargetGroupName: str
17725
17751
  :param _Port: 目标组的新默认端口。全监听目标组不支持此参数。
17726
17752
  :type Port: int
17727
- :param _Weight: 后端服务默认权重。
17728
- <ul>
17729
- <li>取值范围[0, 100]</li>
17730
- <li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li>
17731
- </ul>
17732
- v1目标组类型不支持设置Weight参数。
17753
+ :param _ScheduleAlgorithm: 调度算法,仅V2新版目标组,且后端转发协议为(HTTP|HTTPS|GRPC)时该参数有效。可选值:
17754
+ <ur><li>WRR:按权重轮询。</li><li>LEAST_CONN:最小连接数。</li><li>IP_HASH:按IP哈希。</li><li>默认为 WRR。</li><ur>
17755
+ :type ScheduleAlgorithm: str
17756
+ :param _HealthCheck: 健康检查详情。
17757
+ :type HealthCheck: :class:`tencentcloud.clb.v20180317.models.TargetGroupHealthCheck`
17758
+ :param _Weight: 后端服务默认权重, 其中:<ul><li>取值范围[0, 100]</li><li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li><li>v1目标组类型不支持设置Weight参数。</li> </ul>
17733
17759
  :type Weight: int
17734
17760
  :param _KeepaliveEnable: 是否开启长连接,此参数仅适用于HTTP/HTTPS目标组,true:关闭;false:开启, 默认关闭。
17735
17761
  :type KeepaliveEnable: bool
@@ -17739,6 +17765,8 @@ v1目标组类型不支持设置Weight参数。
17739
17765
  self._TargetGroupId = None
17740
17766
  self._TargetGroupName = None
17741
17767
  self._Port = None
17768
+ self._ScheduleAlgorithm = None
17769
+ self._HealthCheck = None
17742
17770
  self._Weight = None
17743
17771
  self._KeepaliveEnable = None
17744
17772
  self._SessionExpireTime = None
@@ -17776,14 +17804,32 @@ v1目标组类型不支持设置Weight参数。
17776
17804
  def Port(self, Port):
17777
17805
  self._Port = Port
17778
17806
 
17807
+ @property
17808
+ def ScheduleAlgorithm(self):
17809
+ """调度算法,仅V2新版目标组,且后端转发协议为(HTTP|HTTPS|GRPC)时该参数有效。可选值:
17810
+ <ur><li>WRR:按权重轮询。</li><li>LEAST_CONN:最小连接数。</li><li>IP_HASH:按IP哈希。</li><li>默认为 WRR。</li><ur>
17811
+ :rtype: str
17812
+ """
17813
+ return self._ScheduleAlgorithm
17814
+
17815
+ @ScheduleAlgorithm.setter
17816
+ def ScheduleAlgorithm(self, ScheduleAlgorithm):
17817
+ self._ScheduleAlgorithm = ScheduleAlgorithm
17818
+
17819
+ @property
17820
+ def HealthCheck(self):
17821
+ """健康检查详情。
17822
+ :rtype: :class:`tencentcloud.clb.v20180317.models.TargetGroupHealthCheck`
17823
+ """
17824
+ return self._HealthCheck
17825
+
17826
+ @HealthCheck.setter
17827
+ def HealthCheck(self, HealthCheck):
17828
+ self._HealthCheck = HealthCheck
17829
+
17779
17830
  @property
17780
17831
  def Weight(self):
17781
- """后端服务默认权重。
17782
- <ul>
17783
- <li>取值范围[0, 100]</li>
17784
- <li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li>
17785
- </ul>
17786
- v1目标组类型不支持设置Weight参数。
17832
+ """后端服务默认权重, 其中:<ul><li>取值范围[0, 100]</li><li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li><li>v1目标组类型不支持设置Weight参数。</li> </ul>
17787
17833
  :rtype: int
17788
17834
  """
17789
17835
  return self._Weight
@@ -17819,6 +17865,10 @@ v1目标组类型不支持设置Weight参数。
17819
17865
  self._TargetGroupId = params.get("TargetGroupId")
17820
17866
  self._TargetGroupName = params.get("TargetGroupName")
17821
17867
  self._Port = params.get("Port")
17868
+ self._ScheduleAlgorithm = params.get("ScheduleAlgorithm")
17869
+ if params.get("HealthCheck") is not None:
17870
+ self._HealthCheck = TargetGroupHealthCheck()
17871
+ self._HealthCheck._deserialize(params.get("HealthCheck"))
17822
17872
  self._Weight = params.get("Weight")
17823
17873
  self._KeepaliveEnable = params.get("KeepaliveEnable")
17824
17874
  self._SessionExpireTime = params.get("SessionExpireTime")
@@ -21856,6 +21906,304 @@ class TargetGroupBackend(AbstractModel):
21856
21906
 
21857
21907
 
21858
21908
 
21909
+ class TargetGroupHealthCheck(AbstractModel):
21910
+ """目标组健康检查详情
21911
+
21912
+ """
21913
+
21914
+ def __init__(self):
21915
+ r"""
21916
+ :param _HealthSwitch: 是否开启健康检查。
21917
+ :type HealthSwitch: bool
21918
+ :param _Protocol: 健康检查方式, 其中仅V2新版目标组类型支持该参数, 支持取值 TCP | HTTP | HTTPS | PING | CUSTOM,其中:
21919
+ <ur><li>当目标组后端转发协议为TCP时, 健康检查方式支持 TCP/HTTP/CUSTOM, 默认为TCP。</li><li>当目标组后端转发协议为UDP时, 健康检查方式支持 PING/CUSTOM,默认为PING。</li><li>当目标组后端转发协议为HTTP时, 健康检查方式支持 HTTP/TCP, 默认为HTTP。</li><li>当目标组后端转发协议为HTTPS时, 健康检查方式支持 HTTPS/TCP, 默认为HTTPS。</li><li>当目标组后端转发协议为GRPC时, 健康检查方式支持GRPC/TCP, 默认为GRPC。</li></ur>
21920
+ :type Protocol: str
21921
+ :param _Port: 自定义探测相关参数。健康检查端口,默认为后端服务的端口,除非您希望指定特定端口,否则建议留空。(仅适用于TCP/UDP目标组)。
21922
+
21923
+ :type Port: int
21924
+ :param _Timeout: 健康检查超时时间。 默认为2秒。 可配置范围:2 - 30秒。
21925
+ :type Timeout: int
21926
+ :param _GapTime: 检测间隔时间。 默认为5秒。 可配置范围:2 - 300秒。
21927
+ :type GapTime: int
21928
+ :param _GoodLimit: 检测健康阈值。 默认为3秒。 可配置范围:2 - 10次。
21929
+ :type GoodLimit: int
21930
+ :param _BadLimit: 检测不健康阈值。 默认为3秒。 可配置范围:2 - 10次。
21931
+ :type BadLimit: int
21932
+ :param _JumboFrame: 目标组下的所有rs的探测包是否开启巨帧。默认开启。仅GWLB类型目标组支持该参数。
21933
+ :type JumboFrame: bool
21934
+ :param _HttpCode: 健康检查状态码(仅适用于HTTP/HTTPS目标组、TCP目标组的HTTP健康检查方式)。可选值:1~31,默认 31,其中:<url> <li>1 表示探测后返回值 1xx 代表健康。</li><li>2 表示返回 2xx 代表健康。</li><li>4 表示返回 3xx 代表健康。</li><li>8 表示返回 4xx 代表健康。</li><li>16 表示返回 5xx 代表健康。</li></url>若希望多种返回码都可代表健康,则将相应的值相加。
21935
+ 注意:此字段可能返回 null,表示取不到有效值。
21936
+ :type HttpCode: int
21937
+ :param _HttpCheckDomain: 健康检查域名, 其中:<ur><li>仅适用于HTTP/HTTPS目标组和TCP目标组的HTTP健康检查方式。</li><li>针对HTTP/HTTPS目标组,当使用HTTP健康检查方式时,该参数为必填项。</li></ur>
21938
+ 注意:此字段可能返回 null,表示取不到有效值。
21939
+ :type HttpCheckDomain: str
21940
+ :param _HttpCheckPath: 健康检查路径(仅适用于HTTP/HTTPS转发规则、TCP监听器的HTTP健康检查方式)。
21941
+ 注意:此字段可能返回 null,表示取不到有效值。
21942
+ :type HttpCheckPath: str
21943
+ :param _HttpCheckMethod: 健康检查方法(仅适用于HTTP/HTTPS转发规则、TCP监听器的HTTP健康检查方式),默认值:HEAD,可选值HEAD或GET。
21944
+ 注意:此字段可能返回 null,表示取不到有效值。
21945
+ :type HttpCheckMethod: str
21946
+ :param _ContextType: 健康检查的输入格式,健康检查方式取CUSTOM时,必填此字段,可取值:HEX或TEXT,其中:<ur><li>TEXT:文本格式。</li><li>HEX:十六进制格式, SendContext和RecvContext的字符只能在0123456789ABCDEF中选取且长度必须是偶数位。</li><li>仅适用于TCP/UDP目标组。</li></ur>
21947
+ 注意:此字段可能返回 null,表示取不到有效值。
21948
+ :type ContextType: str
21949
+ :param _SendContext: 自定义探测相关参数。健康检查协议CheckType的值取CUSTOM时,必填此字段,代表健康检查发送的请求内容,只允许ASCII可见字符,最大长度限制500。(仅适用于TCP/UDP目标组)。
21950
+ 注意:此字段可能返回 null,表示取不到有效值。
21951
+ :type SendContext: str
21952
+ :param _RecvContext: 自定义探测相关参数。健康检查协议CheckType的值取CUSTOM时,必填此字段,代表健康检查返回的结果,只允许ASCII可见字符,最大长度限制500。(仅适用于TCP/UDP目标组)。
21953
+ 注意:此字段可能返回 null,表示取不到有效值。
21954
+ :type RecvContext: str
21955
+ :param _HttpVersion: HTTP版本, 其中:<ur><li>健康检查协议CheckType的值取HTTP时,必传此字段。</li><li>支持配置选项:HTTP/1.0, HTTP/1.1。</li><li>仅适用于TCP目标组。</li></ur>
21956
+ 注意:此字段可能返回 null,表示取不到有效值。
21957
+ :type HttpVersion: str
21958
+ :param _ExtendedCode: GRPC健康检查状态码(仅适用于后端转发协议为GRPC的目标组)。默认值为 12,可输入值为数值、多个数值、或者范围,例如 20 或 20,25 或 0-99。
21959
+ 注意:此字段可能返回 null,表示取不到有效值。
21960
+ :type ExtendedCode: str
21961
+ """
21962
+ self._HealthSwitch = None
21963
+ self._Protocol = None
21964
+ self._Port = None
21965
+ self._Timeout = None
21966
+ self._GapTime = None
21967
+ self._GoodLimit = None
21968
+ self._BadLimit = None
21969
+ self._JumboFrame = None
21970
+ self._HttpCode = None
21971
+ self._HttpCheckDomain = None
21972
+ self._HttpCheckPath = None
21973
+ self._HttpCheckMethod = None
21974
+ self._ContextType = None
21975
+ self._SendContext = None
21976
+ self._RecvContext = None
21977
+ self._HttpVersion = None
21978
+ self._ExtendedCode = None
21979
+
21980
+ @property
21981
+ def HealthSwitch(self):
21982
+ """是否开启健康检查。
21983
+ :rtype: bool
21984
+ """
21985
+ return self._HealthSwitch
21986
+
21987
+ @HealthSwitch.setter
21988
+ def HealthSwitch(self, HealthSwitch):
21989
+ self._HealthSwitch = HealthSwitch
21990
+
21991
+ @property
21992
+ def Protocol(self):
21993
+ """健康检查方式, 其中仅V2新版目标组类型支持该参数, 支持取值 TCP | HTTP | HTTPS | PING | CUSTOM,其中:
21994
+ <ur><li>当目标组后端转发协议为TCP时, 健康检查方式支持 TCP/HTTP/CUSTOM, 默认为TCP。</li><li>当目标组后端转发协议为UDP时, 健康检查方式支持 PING/CUSTOM,默认为PING。</li><li>当目标组后端转发协议为HTTP时, 健康检查方式支持 HTTP/TCP, 默认为HTTP。</li><li>当目标组后端转发协议为HTTPS时, 健康检查方式支持 HTTPS/TCP, 默认为HTTPS。</li><li>当目标组后端转发协议为GRPC时, 健康检查方式支持GRPC/TCP, 默认为GRPC。</li></ur>
21995
+ :rtype: str
21996
+ """
21997
+ return self._Protocol
21998
+
21999
+ @Protocol.setter
22000
+ def Protocol(self, Protocol):
22001
+ self._Protocol = Protocol
22002
+
22003
+ @property
22004
+ def Port(self):
22005
+ """自定义探测相关参数。健康检查端口,默认为后端服务的端口,除非您希望指定特定端口,否则建议留空。(仅适用于TCP/UDP目标组)。
22006
+
22007
+ :rtype: int
22008
+ """
22009
+ return self._Port
22010
+
22011
+ @Port.setter
22012
+ def Port(self, Port):
22013
+ self._Port = Port
22014
+
22015
+ @property
22016
+ def Timeout(self):
22017
+ """健康检查超时时间。 默认为2秒。 可配置范围:2 - 30秒。
22018
+ :rtype: int
22019
+ """
22020
+ return self._Timeout
22021
+
22022
+ @Timeout.setter
22023
+ def Timeout(self, Timeout):
22024
+ self._Timeout = Timeout
22025
+
22026
+ @property
22027
+ def GapTime(self):
22028
+ """检测间隔时间。 默认为5秒。 可配置范围:2 - 300秒。
22029
+ :rtype: int
22030
+ """
22031
+ return self._GapTime
22032
+
22033
+ @GapTime.setter
22034
+ def GapTime(self, GapTime):
22035
+ self._GapTime = GapTime
22036
+
22037
+ @property
22038
+ def GoodLimit(self):
22039
+ """检测健康阈值。 默认为3秒。 可配置范围:2 - 10次。
22040
+ :rtype: int
22041
+ """
22042
+ return self._GoodLimit
22043
+
22044
+ @GoodLimit.setter
22045
+ def GoodLimit(self, GoodLimit):
22046
+ self._GoodLimit = GoodLimit
22047
+
22048
+ @property
22049
+ def BadLimit(self):
22050
+ """检测不健康阈值。 默认为3秒。 可配置范围:2 - 10次。
22051
+ :rtype: int
22052
+ """
22053
+ return self._BadLimit
22054
+
22055
+ @BadLimit.setter
22056
+ def BadLimit(self, BadLimit):
22057
+ self._BadLimit = BadLimit
22058
+
22059
+ @property
22060
+ def JumboFrame(self):
22061
+ """目标组下的所有rs的探测包是否开启巨帧。默认开启。仅GWLB类型目标组支持该参数。
22062
+ :rtype: bool
22063
+ """
22064
+ return self._JumboFrame
22065
+
22066
+ @JumboFrame.setter
22067
+ def JumboFrame(self, JumboFrame):
22068
+ self._JumboFrame = JumboFrame
22069
+
22070
+ @property
22071
+ def HttpCode(self):
22072
+ """健康检查状态码(仅适用于HTTP/HTTPS目标组、TCP目标组的HTTP健康检查方式)。可选值:1~31,默认 31,其中:<url> <li>1 表示探测后返回值 1xx 代表健康。</li><li>2 表示返回 2xx 代表健康。</li><li>4 表示返回 3xx 代表健康。</li><li>8 表示返回 4xx 代表健康。</li><li>16 表示返回 5xx 代表健康。</li></url>若希望多种返回码都可代表健康,则将相应的值相加。
22073
+ 注意:此字段可能返回 null,表示取不到有效值。
22074
+ :rtype: int
22075
+ """
22076
+ return self._HttpCode
22077
+
22078
+ @HttpCode.setter
22079
+ def HttpCode(self, HttpCode):
22080
+ self._HttpCode = HttpCode
22081
+
22082
+ @property
22083
+ def HttpCheckDomain(self):
22084
+ """健康检查域名, 其中:<ur><li>仅适用于HTTP/HTTPS目标组和TCP目标组的HTTP健康检查方式。</li><li>针对HTTP/HTTPS目标组,当使用HTTP健康检查方式时,该参数为必填项。</li></ur>
22085
+ 注意:此字段可能返回 null,表示取不到有效值。
22086
+ :rtype: str
22087
+ """
22088
+ return self._HttpCheckDomain
22089
+
22090
+ @HttpCheckDomain.setter
22091
+ def HttpCheckDomain(self, HttpCheckDomain):
22092
+ self._HttpCheckDomain = HttpCheckDomain
22093
+
22094
+ @property
22095
+ def HttpCheckPath(self):
22096
+ """健康检查路径(仅适用于HTTP/HTTPS转发规则、TCP监听器的HTTP健康检查方式)。
22097
+ 注意:此字段可能返回 null,表示取不到有效值。
22098
+ :rtype: str
22099
+ """
22100
+ return self._HttpCheckPath
22101
+
22102
+ @HttpCheckPath.setter
22103
+ def HttpCheckPath(self, HttpCheckPath):
22104
+ self._HttpCheckPath = HttpCheckPath
22105
+
22106
+ @property
22107
+ def HttpCheckMethod(self):
22108
+ """健康检查方法(仅适用于HTTP/HTTPS转发规则、TCP监听器的HTTP健康检查方式),默认值:HEAD,可选值HEAD或GET。
22109
+ 注意:此字段可能返回 null,表示取不到有效值。
22110
+ :rtype: str
22111
+ """
22112
+ return self._HttpCheckMethod
22113
+
22114
+ @HttpCheckMethod.setter
22115
+ def HttpCheckMethod(self, HttpCheckMethod):
22116
+ self._HttpCheckMethod = HttpCheckMethod
22117
+
22118
+ @property
22119
+ def ContextType(self):
22120
+ """健康检查的输入格式,健康检查方式取CUSTOM时,必填此字段,可取值:HEX或TEXT,其中:<ur><li>TEXT:文本格式。</li><li>HEX:十六进制格式, SendContext和RecvContext的字符只能在0123456789ABCDEF中选取且长度必须是偶数位。</li><li>仅适用于TCP/UDP目标组。</li></ur>
22121
+ 注意:此字段可能返回 null,表示取不到有效值。
22122
+ :rtype: str
22123
+ """
22124
+ return self._ContextType
22125
+
22126
+ @ContextType.setter
22127
+ def ContextType(self, ContextType):
22128
+ self._ContextType = ContextType
22129
+
22130
+ @property
22131
+ def SendContext(self):
22132
+ """自定义探测相关参数。健康检查协议CheckType的值取CUSTOM时,必填此字段,代表健康检查发送的请求内容,只允许ASCII可见字符,最大长度限制500。(仅适用于TCP/UDP目标组)。
22133
+ 注意:此字段可能返回 null,表示取不到有效值。
22134
+ :rtype: str
22135
+ """
22136
+ return self._SendContext
22137
+
22138
+ @SendContext.setter
22139
+ def SendContext(self, SendContext):
22140
+ self._SendContext = SendContext
22141
+
22142
+ @property
22143
+ def RecvContext(self):
22144
+ """自定义探测相关参数。健康检查协议CheckType的值取CUSTOM时,必填此字段,代表健康检查返回的结果,只允许ASCII可见字符,最大长度限制500。(仅适用于TCP/UDP目标组)。
22145
+ 注意:此字段可能返回 null,表示取不到有效值。
22146
+ :rtype: str
22147
+ """
22148
+ return self._RecvContext
22149
+
22150
+ @RecvContext.setter
22151
+ def RecvContext(self, RecvContext):
22152
+ self._RecvContext = RecvContext
22153
+
22154
+ @property
22155
+ def HttpVersion(self):
22156
+ """HTTP版本, 其中:<ur><li>健康检查协议CheckType的值取HTTP时,必传此字段。</li><li>支持配置选项:HTTP/1.0, HTTP/1.1。</li><li>仅适用于TCP目标组。</li></ur>
22157
+ 注意:此字段可能返回 null,表示取不到有效值。
22158
+ :rtype: str
22159
+ """
22160
+ return self._HttpVersion
22161
+
22162
+ @HttpVersion.setter
22163
+ def HttpVersion(self, HttpVersion):
22164
+ self._HttpVersion = HttpVersion
22165
+
22166
+ @property
22167
+ def ExtendedCode(self):
22168
+ """GRPC健康检查状态码(仅适用于后端转发协议为GRPC的目标组)。默认值为 12,可输入值为数值、多个数值、或者范围,例如 20 或 20,25 或 0-99。
22169
+ 注意:此字段可能返回 null,表示取不到有效值。
22170
+ :rtype: str
22171
+ """
22172
+ return self._ExtendedCode
22173
+
22174
+ @ExtendedCode.setter
22175
+ def ExtendedCode(self, ExtendedCode):
22176
+ self._ExtendedCode = ExtendedCode
22177
+
22178
+
22179
+ def _deserialize(self, params):
22180
+ self._HealthSwitch = params.get("HealthSwitch")
22181
+ self._Protocol = params.get("Protocol")
22182
+ self._Port = params.get("Port")
22183
+ self._Timeout = params.get("Timeout")
22184
+ self._GapTime = params.get("GapTime")
22185
+ self._GoodLimit = params.get("GoodLimit")
22186
+ self._BadLimit = params.get("BadLimit")
22187
+ self._JumboFrame = params.get("JumboFrame")
22188
+ self._HttpCode = params.get("HttpCode")
22189
+ self._HttpCheckDomain = params.get("HttpCheckDomain")
22190
+ self._HttpCheckPath = params.get("HttpCheckPath")
22191
+ self._HttpCheckMethod = params.get("HttpCheckMethod")
22192
+ self._ContextType = params.get("ContextType")
22193
+ self._SendContext = params.get("SendContext")
22194
+ self._RecvContext = params.get("RecvContext")
22195
+ self._HttpVersion = params.get("HttpVersion")
22196
+ self._ExtendedCode = params.get("ExtendedCode")
22197
+ memeber_set = set(params.keys())
22198
+ for name, value in vars(self).items():
22199
+ property_name = name[1:]
22200
+ if property_name in memeber_set:
22201
+ memeber_set.remove(property_name)
22202
+ if len(memeber_set) > 0:
22203
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
22204
+
22205
+
22206
+
21859
22207
  class TargetGroupInfo(AbstractModel):
21860
22208
  """目标组信息
21861
22209
 
@@ -21882,6 +22230,18 @@ class TargetGroupInfo(AbstractModel):
21882
22230
  :param _Protocol: 目标组后端转发协议, 仅v2新版目标组返回有效值。
21883
22231
  注意:此字段可能返回 null,表示取不到有效值。
21884
22232
  :type Protocol: str
22233
+ :param _ScheduleAlgorithm: 调度算法,仅后端转发协议为(HTTP、HTTPS、GRPC)的目标组返回有效值, 可选值:
22234
+ <ur>
22235
+ <li>WRR:按权重轮询。</li>
22236
+ <li>LEAST_CONN:最小连接数。</li>
22237
+ <li>IP_HASH:按IP哈希。</li>
22238
+ </ur>
22239
+
22240
+ 注意:此字段可能返回 null,表示取不到有效值。
22241
+ :type ScheduleAlgorithm: str
22242
+ :param _HealthCheck: 健康检查详情。
22243
+ 注意:此字段可能返回 null,表示取不到有效值。
22244
+ :type HealthCheck: :class:`tencentcloud.clb.v20180317.models.TargetGroupHealthCheck`
21885
22245
  :param _TargetGroupType: 目标组类型,当前支持v1(旧版目标组), v2(新版目标组)。默认为v1旧版目标组。
21886
22246
  :type TargetGroupType: str
21887
22247
  :param _AssociatedRuleCount: 目标组已关联的规则数。
@@ -21908,6 +22268,8 @@ class TargetGroupInfo(AbstractModel):
21908
22268
  self._UpdatedTime = None
21909
22269
  self._AssociatedRule = None
21910
22270
  self._Protocol = None
22271
+ self._ScheduleAlgorithm = None
22272
+ self._HealthCheck = None
21911
22273
  self._TargetGroupType = None
21912
22274
  self._AssociatedRuleCount = None
21913
22275
  self._RegisteredInstancesCount = None
@@ -22008,6 +22370,36 @@ class TargetGroupInfo(AbstractModel):
22008
22370
  def Protocol(self, Protocol):
22009
22371
  self._Protocol = Protocol
22010
22372
 
22373
+ @property
22374
+ def ScheduleAlgorithm(self):
22375
+ """调度算法,仅后端转发协议为(HTTP、HTTPS、GRPC)的目标组返回有效值, 可选值:
22376
+ <ur>
22377
+ <li>WRR:按权重轮询。</li>
22378
+ <li>LEAST_CONN:最小连接数。</li>
22379
+ <li>IP_HASH:按IP哈希。</li>
22380
+ </ur>
22381
+
22382
+ 注意:此字段可能返回 null,表示取不到有效值。
22383
+ :rtype: str
22384
+ """
22385
+ return self._ScheduleAlgorithm
22386
+
22387
+ @ScheduleAlgorithm.setter
22388
+ def ScheduleAlgorithm(self, ScheduleAlgorithm):
22389
+ self._ScheduleAlgorithm = ScheduleAlgorithm
22390
+
22391
+ @property
22392
+ def HealthCheck(self):
22393
+ """健康检查详情。
22394
+ 注意:此字段可能返回 null,表示取不到有效值。
22395
+ :rtype: :class:`tencentcloud.clb.v20180317.models.TargetGroupHealthCheck`
22396
+ """
22397
+ return self._HealthCheck
22398
+
22399
+ @HealthCheck.setter
22400
+ def HealthCheck(self, HealthCheck):
22401
+ self._HealthCheck = HealthCheck
22402
+
22011
22403
  @property
22012
22404
  def TargetGroupType(self):
22013
22405
  """目标组类型,当前支持v1(旧版目标组), v2(新版目标组)。默认为v1旧版目标组。
@@ -22112,6 +22504,10 @@ class TargetGroupInfo(AbstractModel):
22112
22504
  obj._deserialize(item)
22113
22505
  self._AssociatedRule.append(obj)
22114
22506
  self._Protocol = params.get("Protocol")
22507
+ self._ScheduleAlgorithm = params.get("ScheduleAlgorithm")
22508
+ if params.get("HealthCheck") is not None:
22509
+ self._HealthCheck = TargetGroupHealthCheck()
22510
+ self._HealthCheck._deserialize(params.get("HealthCheck"))
22115
22511
  self._TargetGroupType = params.get("TargetGroupType")
22116
22512
  self._AssociatedRuleCount = params.get("AssociatedRuleCount")
22117
22513
  self._RegisteredInstancesCount = params.get("RegisteredInstancesCount")
@@ -1990,7 +1990,7 @@ class ClsClient(AbstractClient):
1990
1990
 
1991
1991
 
1992
1992
  def ModifyAlarmShield(self, request):
1993
- """该接口用于修改告警屏蔽规则。
1993
+ """该接口用于修改告警屏蔽规则。当告警屏蔽规则为失效中时,无法对其进行修改
1994
1994
 
1995
1995
  :param request: Request instance for ModifyAlarmShield.
1996
1996
  :type request: :class:`tencentcloud.cls.v20201016.models.ModifyAlarmShieldRequest`