tencentcloud-sdk-python 3.0.1434__py2.py3-none-any.whl → 3.0.1435__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 (27) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/bi/v20220105/models.py +156 -2
  3. tencentcloud/cam/v20190116/cam_client.py +23 -0
  4. tencentcloud/cam/v20190116/errorcodes.py +15 -0
  5. tencentcloud/cam/v20190116/models.py +180 -0
  6. tencentcloud/cdb/v20170320/cdb_client.py +2 -1
  7. tencentcloud/cdb/v20170320/models.py +62 -44
  8. tencentcloud/cfs/v20190719/cfs_client.py +299 -0
  9. tencentcloud/cfs/v20190719/errorcodes.py +54 -0
  10. tencentcloud/cfs/v20190719/models.py +4437 -1976
  11. tencentcloud/clb/v20180317/models.py +44 -14
  12. tencentcloud/cls/v20201016/models.py +348 -132
  13. tencentcloud/ctem/v20231128/models.py +405 -15
  14. tencentcloud/kms/v20190118/models.py +2 -2
  15. tencentcloud/live/v20180801/models.py +2 -2
  16. tencentcloud/lowcode/v20210108/lowcode_client.py +92 -0
  17. tencentcloud/lowcode/v20210108/models.py +423 -0
  18. tencentcloud/ssl/v20191205/errorcodes.py +1 -1
  19. tencentcloud/ssl/v20191205/models.py +39 -24
  20. tencentcloud/teo/v20220901/models.py +42 -2
  21. tencentcloud/wedata/v20210820/models.py +321 -15
  22. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  23. {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/METADATA +1 -1
  24. {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/RECORD +27 -27
  25. {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/LICENSE +0 -0
  26. {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/WHEEL +0 -0
  27. {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/top_level.txt +0 -0
@@ -5222,7 +5222,7 @@ class CreateTargetGroupRequest(AbstractModel):
5222
5222
  :type TargetGroupInstances: list of TargetGroupInstance
5223
5223
  :param _Type: 目标组类型,当前支持v1(旧版目标组), v2(新版目标组), 默认为v1(旧版目标组)。
5224
5224
  :type Type: str
5225
- :param _Protocol: 目标组后端转发协议。v2新版目标组该项必填。目前支持tcpudp
5225
+ :param _Protocol: 目标组后端转发协议。v2新版目标组该项必填。目前支持TCPUDP、HTTP、HTTPS、GRPC
5226
5226
  :type Protocol: str
5227
5227
  :param _Tags: 标签。
5228
5228
  :type Tags: list of TagInfo
@@ -5233,11 +5233,11 @@ class CreateTargetGroupRequest(AbstractModel):
5233
5233
  </ul>
5234
5234
  v1 目标组类型不支持设置 Weight 参数。
5235
5235
  :type Weight: int
5236
- :param _FullListenSwitch: 全监听目标组标识,为true表示是全监听目标组,false表示不是全监听目标组。
5236
+ :param _FullListenSwitch: 全监听目标组标识,true表示是全监听目标组,false表示不是全监听目标组。仅V2新版类型目标组支持该参数。
5237
5237
  :type FullListenSwitch: bool
5238
5238
  :param _KeepaliveEnable: 是否开启长连接,此参数仅适用于HTTP/HTTPS目标组,0:关闭;1:开启, 默认关闭。
5239
5239
  :type KeepaliveEnable: bool
5240
- :param _SessionExpireTime: 会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。TCP/UDP目标组不支持该参数。
5240
+ :param _SessionExpireTime: 会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。仅V2新版且后端转发协议为HTTP/HTTPS/GRPC目标组支持该参数。
5241
5241
  :type SessionExpireTime: int
5242
5242
  """
5243
5243
  self._TargetGroupName = None
@@ -5310,7 +5310,7 @@ v1 目标组类型不支持设置 Weight 参数。
5310
5310
 
5311
5311
  @property
5312
5312
  def Protocol(self):
5313
- """目标组后端转发协议。v2新版目标组该项必填。目前支持tcpudp
5313
+ """目标组后端转发协议。v2新版目标组该项必填。目前支持TCPUDP、HTTP、HTTPS、GRPC
5314
5314
  :rtype: str
5315
5315
  """
5316
5316
  return self._Protocol
@@ -5348,7 +5348,7 @@ v1 目标组类型不支持设置 Weight 参数。
5348
5348
 
5349
5349
  @property
5350
5350
  def FullListenSwitch(self):
5351
- """全监听目标组标识,为true表示是全监听目标组,false表示不是全监听目标组。
5351
+ """全监听目标组标识,true表示是全监听目标组,false表示不是全监听目标组。仅V2新版类型目标组支持该参数。
5352
5352
  :rtype: bool
5353
5353
  """
5354
5354
  return self._FullListenSwitch
@@ -5370,7 +5370,7 @@ v1 目标组类型不支持设置 Weight 参数。
5370
5370
 
5371
5371
  @property
5372
5372
  def SessionExpireTime(self):
5373
- """会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。TCP/UDP目标组不支持该参数。
5373
+ """会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。仅V2新版且后端转发协议为HTTP/HTTPS/GRPC目标组支持该参数。
5374
5374
  :rtype: int
5375
5375
  """
5376
5376
  return self._SessionExpireTime
@@ -21879,11 +21879,10 @@ class TargetGroupInfo(AbstractModel):
21879
21879
  :param _AssociatedRule: 关联到的规则数组。在DescribeTargetGroupList接口调用时无法获取到该参数。
21880
21880
  注意:此字段可能返回 null,表示取不到有效值。
21881
21881
  :type AssociatedRule: list of AssociationItem
21882
- :param _Protocol: 后端转发协议类型,支持类型TCP, UDP。仅V2新版目标组支持返回该参数。
21883
-
21882
+ :param _Protocol: 目标组后端转发协议, 仅v2新版目标组返回有效值。
21884
21883
  注意:此字段可能返回 null,表示取不到有效值。
21885
21884
  :type Protocol: str
21886
- :param _TargetGroupType: 目标组类型,当前支持v1(旧版目标组), v2(新版目标组), gwlb(全局负载均衡目标组)。
21885
+ :param _TargetGroupType: 目标组类型,当前支持v1(旧版目标组), v2(新版目标组)。默认为v1旧版目标组。
21887
21886
  :type TargetGroupType: str
21888
21887
  :param _AssociatedRuleCount: 目标组已关联的规则数。
21889
21888
  :type AssociatedRuleCount: int
@@ -21892,9 +21891,14 @@ class TargetGroupInfo(AbstractModel):
21892
21891
  :param _Tag: 标签。
21893
21892
  :type Tag: list of TagInfo
21894
21893
  :param _Weight: 默认权重。只有v2类型目标组返回该字段。当返回为NULL时, 表示未设置默认权重。
21894
+ 注意:此字段可能返回 null,表示取不到有效值。
21895
21895
  :type Weight: int
21896
- :param _FullListenSwitch: 是否全监听目标组
21896
+ :param _FullListenSwitch: 是否全监听目标组。
21897
21897
  :type FullListenSwitch: bool
21898
+ :param _KeepaliveEnable: 是否开启长连接, 仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
21899
+ :type KeepaliveEnable: bool
21900
+ :param _SessionExpireTime: 会话保持时间,仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
21901
+ :type SessionExpireTime: int
21898
21902
  """
21899
21903
  self._TargetGroupId = None
21900
21904
  self._VpcId = None
@@ -21910,6 +21914,8 @@ class TargetGroupInfo(AbstractModel):
21910
21914
  self._Tag = None
21911
21915
  self._Weight = None
21912
21916
  self._FullListenSwitch = None
21917
+ self._KeepaliveEnable = None
21918
+ self._SessionExpireTime = None
21913
21919
 
21914
21920
  @property
21915
21921
  def TargetGroupId(self):
@@ -21992,8 +21998,7 @@ class TargetGroupInfo(AbstractModel):
21992
21998
 
21993
21999
  @property
21994
22000
  def Protocol(self):
21995
- """后端转发协议类型,支持类型TCP, UDP。仅V2新版目标组支持返回该参数。
21996
-
22001
+ """目标组后端转发协议, 仅v2新版目标组返回有效值。
21997
22002
  注意:此字段可能返回 null,表示取不到有效值。
21998
22003
  :rtype: str
21999
22004
  """
@@ -22005,7 +22010,7 @@ class TargetGroupInfo(AbstractModel):
22005
22010
 
22006
22011
  @property
22007
22012
  def TargetGroupType(self):
22008
- """目标组类型,当前支持v1(旧版目标组), v2(新版目标组), gwlb(全局负载均衡目标组)。
22013
+ """目标组类型,当前支持v1(旧版目标组), v2(新版目标组)。默认为v1旧版目标组。
22009
22014
  :rtype: str
22010
22015
  """
22011
22016
  return self._TargetGroupType
@@ -22050,6 +22055,7 @@ class TargetGroupInfo(AbstractModel):
22050
22055
  @property
22051
22056
  def Weight(self):
22052
22057
  """默认权重。只有v2类型目标组返回该字段。当返回为NULL时, 表示未设置默认权重。
22058
+ 注意:此字段可能返回 null,表示取不到有效值。
22053
22059
  :rtype: int
22054
22060
  """
22055
22061
  return self._Weight
@@ -22060,7 +22066,7 @@ class TargetGroupInfo(AbstractModel):
22060
22066
 
22061
22067
  @property
22062
22068
  def FullListenSwitch(self):
22063
- """是否全监听目标组
22069
+ """是否全监听目标组。
22064
22070
  :rtype: bool
22065
22071
  """
22066
22072
  return self._FullListenSwitch
@@ -22069,6 +22075,28 @@ class TargetGroupInfo(AbstractModel):
22069
22075
  def FullListenSwitch(self, FullListenSwitch):
22070
22076
  self._FullListenSwitch = FullListenSwitch
22071
22077
 
22078
+ @property
22079
+ def KeepaliveEnable(self):
22080
+ """是否开启长连接, 仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
22081
+ :rtype: bool
22082
+ """
22083
+ return self._KeepaliveEnable
22084
+
22085
+ @KeepaliveEnable.setter
22086
+ def KeepaliveEnable(self, KeepaliveEnable):
22087
+ self._KeepaliveEnable = KeepaliveEnable
22088
+
22089
+ @property
22090
+ def SessionExpireTime(self):
22091
+ """会话保持时间,仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
22092
+ :rtype: int
22093
+ """
22094
+ return self._SessionExpireTime
22095
+
22096
+ @SessionExpireTime.setter
22097
+ def SessionExpireTime(self, SessionExpireTime):
22098
+ self._SessionExpireTime = SessionExpireTime
22099
+
22072
22100
 
22073
22101
  def _deserialize(self, params):
22074
22102
  self._TargetGroupId = params.get("TargetGroupId")
@@ -22095,6 +22123,8 @@ class TargetGroupInfo(AbstractModel):
22095
22123
  self._Tag.append(obj)
22096
22124
  self._Weight = params.get("Weight")
22097
22125
  self._FullListenSwitch = params.get("FullListenSwitch")
22126
+ self._KeepaliveEnable = params.get("KeepaliveEnable")
22127
+ self._SessionExpireTime = params.get("SessionExpireTime")
22098
22128
  memeber_set = set(params.keys())
22099
22129
  for name, value in vars(self).items():
22100
22130
  property_name = name[1:]