tencentcloud-sdk-python 3.0.1345__py2.py3-none-any.whl → 3.0.1346__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 (36) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/antiddos/v20200309/antiddos_client.py +0 -50
  3. tencentcloud/antiddos/v20200309/models.py +12 -687
  4. tencentcloud/apm/v20210622/models.py +60 -60
  5. tencentcloud/batch/v20170312/models.py +0 -150
  6. tencentcloud/cdwch/v20200915/models.py +111 -146
  7. tencentcloud/ckafka/v20190819/models.py +18 -960
  8. tencentcloud/cls/v20201016/models.py +0 -112
  9. tencentcloud/dbbrain/v20191016/models.py +2 -2
  10. tencentcloud/dbbrain/v20210527/models.py +17 -4
  11. tencentcloud/emr/v20190103/emr_client.py +1 -1
  12. tencentcloud/emr/v20190103/models.py +422 -15
  13. tencentcloud/hunyuan/v20230901/models.py +17 -2
  14. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
  15. tencentcloud/iotexplorer/v20190423/models.py +131 -0
  16. tencentcloud/iotvideoindustry/v20201201/models.py +0 -52
  17. tencentcloud/lke/v20231130/lke_client.py +0 -23
  18. tencentcloud/lke/v20231130/models.py +0 -79
  19. tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
  20. tencentcloud/memcached/v20190318/models.py +2 -2
  21. tencentcloud/monitor/v20180724/models.py +446 -0
  22. tencentcloud/monitor/v20180724/monitor_client.py +23 -0
  23. tencentcloud/redis/v20180412/models.py +2 -4
  24. tencentcloud/svp/v20240125/models.py +0 -2
  25. tencentcloud/tdmq/v20200217/models.py +266 -0
  26. tencentcloud/teo/v20220901/errorcodes.py +3 -0
  27. tencentcloud/teo/v20220901/models.py +81 -2
  28. tencentcloud/teo/v20220901/teo_client.py +23 -0
  29. tencentcloud/thpc/v20220401/models.py +0 -6
  30. tencentcloud/thpc/v20230321/models.py +0 -12
  31. tencentcloud/wedata/v20210820/models.py +222 -0
  32. {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/METADATA +1 -1
  33. {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/RECORD +36 -36
  34. {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/LICENSE +0 -0
  35. {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/WHEEL +0 -0
  36. {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/top_level.txt +0 -0
@@ -2190,7 +2190,7 @@ class DescribeHealthScoreRequest(AbstractModel):
2190
2190
  :type InstanceId: str
2191
2191
  :param _Time: 获取健康得分的时间。
2192
2192
  :type Time: str
2193
- :param _Product: 服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
2193
+ :param _Product: 服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,"redis" - 云数据库 Redis,默认为"mysql"。
2194
2194
  :type Product: str
2195
2195
  """
2196
2196
  self._InstanceId = None
@@ -2221,7 +2221,7 @@ class DescribeHealthScoreRequest(AbstractModel):
2221
2221
 
2222
2222
  @property
2223
2223
  def Product(self):
2224
- """服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
2224
+ """服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,"redis" - 云数据库 Redis,默认为"mysql"。
2225
2225
  :rtype: str
2226
2226
  """
2227
2227
  return self._Product
@@ -2930,9 +2930,12 @@ class CreateProxySessionKillTaskRequest(AbstractModel):
2930
2930
  :type InstanceId: str
2931
2931
  :param _Product: 服务产品类型,支持值包括: "redis" - 云数据库 Redis。
2932
2932
  :type Product: str
2933
+ :param _InstanceProxyId: 实列代理ID。
2934
+ :type InstanceProxyId: str
2933
2935
  """
2934
2936
  self._InstanceId = None
2935
2937
  self._Product = None
2938
+ self._InstanceProxyId = None
2936
2939
 
2937
2940
  @property
2938
2941
  def InstanceId(self):
@@ -2956,10 +2959,22 @@ class CreateProxySessionKillTaskRequest(AbstractModel):
2956
2959
  def Product(self, Product):
2957
2960
  self._Product = Product
2958
2961
 
2962
+ @property
2963
+ def InstanceProxyId(self):
2964
+ """实列代理ID。
2965
+ :rtype: str
2966
+ """
2967
+ return self._InstanceProxyId
2968
+
2969
+ @InstanceProxyId.setter
2970
+ def InstanceProxyId(self, InstanceProxyId):
2971
+ self._InstanceProxyId = InstanceProxyId
2972
+
2959
2973
 
2960
2974
  def _deserialize(self, params):
2961
2975
  self._InstanceId = params.get("InstanceId")
2962
2976
  self._Product = params.get("Product")
2977
+ self._InstanceProxyId = params.get("InstanceProxyId")
2963
2978
  memeber_set = set(params.keys())
2964
2979
  for name, value in vars(self).items():
2965
2980
  property_name = name[1:]
@@ -6396,7 +6411,7 @@ class DescribeHealthScoreRequest(AbstractModel):
6396
6411
  :type InstanceId: str
6397
6412
  :param _Time: 获取健康得分的时间,时间格式如:2019-09-10 12:13:14。
6398
6413
  :type Time: str
6399
- :param _Product: 服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
6414
+ :param _Product: 服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,"redis" - 云数据库 Redis,默认为"mysql"。
6400
6415
  :type Product: str
6401
6416
  """
6402
6417
  self._InstanceId = None
@@ -6427,7 +6442,7 @@ class DescribeHealthScoreRequest(AbstractModel):
6427
6442
 
6428
6443
  @property
6429
6444
  def Product(self):
6430
- """服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
6445
+ """服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 TDSQL-C for MySQL,"redis" - 云数据库 Redis,默认为"mysql"。
6431
6446
  :rtype: str
6432
6447
  """
6433
6448
  return self._Product
@@ -14139,7 +14154,6 @@ class MonitorMetric(AbstractModel):
14139
14154
  :param _Unit: 指标单位。
14140
14155
  :type Unit: str
14141
14156
  :param _Values: 指标值。
14142
- 注意:此字段可能返回 null,表示取不到有效值。
14143
14157
  :type Values: list of float
14144
14158
  """
14145
14159
  self._Metric = None
@@ -14171,7 +14185,6 @@ class MonitorMetric(AbstractModel):
14171
14185
  @property
14172
14186
  def Values(self):
14173
14187
  """指标值。
14174
- 注意:此字段可能返回 null,表示取不到有效值。
14175
14188
  :rtype: list of float
14176
14189
  """
14177
14190
  return self._Values
@@ -1598,7 +1598,7 @@ class EmrClient(AbstractClient):
1598
1598
 
1599
1599
 
1600
1600
  def ResizeDataDisks(self, request):
1601
- """云盘扩容
1601
+ """云数据盘扩容
1602
1602
 
1603
1603
  :param request: Request instance for ResizeDataDisks.
1604
1604
  :type request: :class:`tencentcloud.emr.v20190103.models.ResizeDataDisksRequest`