tencentcloud-sdk-python 3.0.1433__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 +336 -15
  22. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  23. {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/METADATA +1 -1
  24. {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/RECORD +27 -27
  25. {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/LICENSE +0 -0
  26. {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/WHEEL +0 -0
  27. {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/top_level.txt +0 -0
@@ -3945,8 +3945,10 @@ class BinlogInfo(AbstractModel):
3945
3945
  :param _Date: 文件存储时间,时间格式:2016-03-17 02:10:37
3946
3946
  :type Date: str
3947
3947
  :param _IntranetUrl: 下载地址
3948
+ 说明:此下载地址和参数 InternetUrl 的下载地址一样。
3948
3949
  :type IntranetUrl: str
3949
3950
  :param _InternetUrl: 下载地址
3951
+ 说明:此下载地址和参数 IntranetUrl 的下载地址一样。
3950
3952
  :type InternetUrl: str
3951
3953
  :param _Type: 日志具体类型,可能的值有:binlog - 二进制日志
3952
3954
  :type Type: str
@@ -4015,6 +4017,7 @@ class BinlogInfo(AbstractModel):
4015
4017
  @property
4016
4018
  def IntranetUrl(self):
4017
4019
  """下载地址
4020
+ 说明:此下载地址和参数 InternetUrl 的下载地址一样。
4018
4021
  :rtype: str
4019
4022
  """
4020
4023
  return self._IntranetUrl
@@ -4026,6 +4029,7 @@ class BinlogInfo(AbstractModel):
4026
4029
  @property
4027
4030
  def InternetUrl(self):
4028
4031
  """下载地址
4032
+ 说明:此下载地址和参数 IntranetUrl 的下载地址一样。
4029
4033
  :rtype: str
4030
4034
  """
4031
4035
  return self._InternetUrl
@@ -4113,6 +4117,8 @@ class BinlogInfo(AbstractModel):
4113
4117
 
4114
4118
  @property
4115
4119
  def InstanceId(self):
4120
+ warnings.warn("parameter `InstanceId` is deprecated", DeprecationWarning)
4121
+
4116
4122
  """实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
4117
4123
  :rtype: str
4118
4124
  """
@@ -4120,6 +4126,8 @@ class BinlogInfo(AbstractModel):
4120
4126
 
4121
4127
  @InstanceId.setter
4122
4128
  def InstanceId(self, InstanceId):
4129
+ warnings.warn("parameter `InstanceId` is deprecated", DeprecationWarning)
4130
+
4123
4131
  self._InstanceId = InstanceId
4124
4132
 
4125
4133
 
@@ -14586,11 +14594,11 @@ class DescribeBackupsRequest(AbstractModel):
14586
14594
 
14587
14595
  def __init__(self):
14588
14596
  r"""
14589
- :param _InstanceId: 实例ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
14597
+ :param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
14590
14598
  :type InstanceId: str
14591
14599
  :param _Offset: 偏移量,最小值为0。
14592
14600
  :type Offset: int
14593
- :param _Limit: 分页大小,默认值为20,最小值为1,最大值为100
14601
+ :param _Limit: 分页大小,默认值为20,最小值为1,最大值为1000
14594
14602
  :type Limit: int
14595
14603
  """
14596
14604
  self._InstanceId = None
@@ -14599,7 +14607,7 @@ class DescribeBackupsRequest(AbstractModel):
14599
14607
 
14600
14608
  @property
14601
14609
  def InstanceId(self):
14602
- """实例ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
14610
+ """实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
14603
14611
  :rtype: str
14604
14612
  """
14605
14613
  return self._InstanceId
@@ -14621,7 +14629,7 @@ class DescribeBackupsRequest(AbstractModel):
14621
14629
 
14622
14630
  @property
14623
14631
  def Limit(self):
14624
- """分页大小,默认值为20,最小值为1,最大值为100
14632
+ """分页大小,默认值为20,最小值为1,最大值为1000
14625
14633
  :rtype: int
14626
14634
  """
14627
14635
  return self._Limit
@@ -14903,7 +14911,7 @@ class DescribeBinlogsRequest(AbstractModel):
14903
14911
  :type InstanceId: str
14904
14912
  :param _Offset: 偏移量,最小值为0。
14905
14913
  :type Offset: int
14906
- :param _Limit: 分页大小,默认值为20,最小值为1,最大值为100
14914
+ :param _Limit: 分页大小,默认值为20,最小值为1,最大值为1000
14907
14915
  :type Limit: int
14908
14916
  :param _MinStartTime: binlog最早开始时间,时间格式:2016-03-17 02:10:37
14909
14917
  :type MinStartTime: str
@@ -14943,7 +14951,7 @@ class DescribeBinlogsRequest(AbstractModel):
14943
14951
 
14944
14952
  @property
14945
14953
  def Limit(self):
14946
- """分页大小,默认值为20,最小值为1,最大值为100
14954
+ """分页大小,默认值为20,最小值为1,最大值为1000
14947
14955
  :rtype: int
14948
14956
  """
14949
14957
  return self._Limit
@@ -18940,13 +18948,13 @@ class DescribeErrorLogDataRequest(AbstractModel):
18940
18948
 
18941
18949
  def __init__(self):
18942
18950
  r"""
18943
- :param _InstanceId: 实例 ID
18951
+ :param _InstanceId: 实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
18944
18952
  :type InstanceId: str
18945
- :param _StartTime: 开始时间戳。例如 1585142640
18953
+ :param _StartTime: 开始时间戳。例如1585142640,秒级。
18946
18954
  :type StartTime: int
18947
- :param _EndTime: 结束时间戳。例如 1585142640
18955
+ :param _EndTime: 结束时间戳。例如1585142640,秒级。
18948
18956
  :type EndTime: int
18949
- :param _KeyWords: 要匹配的关键字列表,最多支持15个关键字。
18957
+ :param _KeyWords: 要匹配的关键字列表,最多支持15个关键字,支持模糊匹配。
18950
18958
  :type KeyWords: list of str
18951
18959
  :param _Limit: 分页的返回数量,默认为100,最大为400。
18952
18960
  :type Limit: int
@@ -18965,7 +18973,7 @@ class DescribeErrorLogDataRequest(AbstractModel):
18965
18973
 
18966
18974
  @property
18967
18975
  def InstanceId(self):
18968
- """实例 ID
18976
+ """实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
18969
18977
  :rtype: str
18970
18978
  """
18971
18979
  return self._InstanceId
@@ -18976,7 +18984,7 @@ class DescribeErrorLogDataRequest(AbstractModel):
18976
18984
 
18977
18985
  @property
18978
18986
  def StartTime(self):
18979
- """开始时间戳。例如 1585142640
18987
+ """开始时间戳。例如1585142640,秒级。
18980
18988
  :rtype: int
18981
18989
  """
18982
18990
  return self._StartTime
@@ -18987,7 +18995,7 @@ class DescribeErrorLogDataRequest(AbstractModel):
18987
18995
 
18988
18996
  @property
18989
18997
  def EndTime(self):
18990
- """结束时间戳。例如 1585142640
18998
+ """结束时间戳。例如1585142640,秒级。
18991
18999
  :rtype: int
18992
19000
  """
18993
19001
  return self._EndTime
@@ -18998,7 +19006,7 @@ class DescribeErrorLogDataRequest(AbstractModel):
18998
19006
 
18999
19007
  @property
19000
19008
  def KeyWords(self):
19001
- """要匹配的关键字列表,最多支持15个关键字。
19009
+ """要匹配的关键字列表,最多支持15个关键字,支持模糊匹配。
19002
19010
  :rtype: list of str
19003
19011
  """
19004
19012
  return self._KeyWords
@@ -20063,14 +20071,14 @@ class DescribeParamTemplateInfoRequest(AbstractModel):
20063
20071
 
20064
20072
  def __init__(self):
20065
20073
  r"""
20066
- :param _TemplateId: 参数模板 ID
20074
+ :param _TemplateId: 参数模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
20067
20075
  :type TemplateId: int
20068
20076
  """
20069
20077
  self._TemplateId = None
20070
20078
 
20071
20079
  @property
20072
20080
  def TemplateId(self):
20073
- """参数模板 ID
20081
+ """参数模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
20074
20082
  :rtype: int
20075
20083
  """
20076
20084
  return self._TemplateId
@@ -20103,7 +20111,7 @@ class DescribeParamTemplateInfoResponse(AbstractModel):
20103
20111
  :type TemplateId: int
20104
20112
  :param _Name: 参数模板名称。
20105
20113
  :type Name: str
20106
- :param _EngineVersion: 参数模板对应实例版本
20114
+ :param _EngineVersion: 参数模板对应实例版本,可取值:5.5、5.6、5.7、8.0。
20107
20115
  :type EngineVersion: str
20108
20116
  :param _TotalCount: 参数模板中的参数数量
20109
20117
  :type TotalCount: int
@@ -20152,7 +20160,7 @@ class DescribeParamTemplateInfoResponse(AbstractModel):
20152
20160
 
20153
20161
  @property
20154
20162
  def EngineVersion(self):
20155
- """参数模板对应实例版本
20163
+ """参数模板对应实例版本,可取值:5.5、5.6、5.7、8.0。
20156
20164
  :rtype: str
20157
20165
  """
20158
20166
  return self._EngineVersion
@@ -20252,13 +20260,13 @@ class DescribeParamTemplatesRequest(AbstractModel):
20252
20260
 
20253
20261
  def __init__(self):
20254
20262
  r"""
20255
- :param _EngineVersions: 引擎版本,缺省则查询所有
20263
+ :param _EngineVersions: 引擎版本,缺省则查询所有。可取值为:5.5、5.6、5.7、8.0。
20256
20264
  :type EngineVersions: list of str
20257
- :param _EngineTypes: 引擎类型,缺省则查询所有
20265
+ :param _EngineTypes: 引擎类型,缺省则查询所有。可取值为:InnoDB、RocksDB,不区分大小写。
20258
20266
  :type EngineTypes: list of str
20259
- :param _TemplateNames: 模板名称,缺省则查询所有
20267
+ :param _TemplateNames: 模板名称,缺省则查询所有。支持模糊匹配。
20260
20268
  :type TemplateNames: list of str
20261
- :param _TemplateIds: 模板id,缺省则查询所有
20269
+ :param _TemplateIds: 模板 ID,缺省则查询所有。
20262
20270
  :type TemplateIds: list of int
20263
20271
  """
20264
20272
  self._EngineVersions = None
@@ -20268,7 +20276,7 @@ class DescribeParamTemplatesRequest(AbstractModel):
20268
20276
 
20269
20277
  @property
20270
20278
  def EngineVersions(self):
20271
- """引擎版本,缺省则查询所有
20279
+ """引擎版本,缺省则查询所有。可取值为:5.5、5.6、5.7、8.0。
20272
20280
  :rtype: list of str
20273
20281
  """
20274
20282
  return self._EngineVersions
@@ -20279,7 +20287,7 @@ class DescribeParamTemplatesRequest(AbstractModel):
20279
20287
 
20280
20288
  @property
20281
20289
  def EngineTypes(self):
20282
- """引擎类型,缺省则查询所有
20290
+ """引擎类型,缺省则查询所有。可取值为:InnoDB、RocksDB,不区分大小写。
20283
20291
  :rtype: list of str
20284
20292
  """
20285
20293
  return self._EngineTypes
@@ -20290,7 +20298,7 @@ class DescribeParamTemplatesRequest(AbstractModel):
20290
20298
 
20291
20299
  @property
20292
20300
  def TemplateNames(self):
20293
- """模板名称,缺省则查询所有
20301
+ """模板名称,缺省则查询所有。支持模糊匹配。
20294
20302
  :rtype: list of str
20295
20303
  """
20296
20304
  return self._TemplateNames
@@ -20301,7 +20309,7 @@ class DescribeParamTemplatesRequest(AbstractModel):
20301
20309
 
20302
20310
  @property
20303
20311
  def TemplateIds(self):
20304
- """模板id,缺省则查询所有
20312
+ """模板 ID,缺省则查询所有。
20305
20313
  :rtype: list of int
20306
20314
  """
20307
20315
  return self._TemplateIds
@@ -21570,7 +21578,7 @@ class DescribeSlowLogDataRequest(AbstractModel):
21570
21578
 
21571
21579
  def __init__(self):
21572
21580
  r"""
21573
- :param _InstanceId: 实例 ID
21581
+ :param _InstanceId: 实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
21574
21582
  :type InstanceId: str
21575
21583
  :param _StartTime: 开始时间戳。例如 1585142640。
21576
21584
  说明:此参数单位为秒的时间戳。
@@ -21584,13 +21592,18 @@ class DescribeSlowLogDataRequest(AbstractModel):
21584
21592
  :type UserNames: list of str
21585
21593
  :param _DataBases: 访问的 数据库 列表。
21586
21594
  :type DataBases: list of str
21587
- :param _SortBy: 排序字段。当前支持:Timestamp,QueryTime,LockTime,RowsExamined,RowsSent
21595
+ :param _SortBy: 排序字段,当前支持字段及含义如下,默认值为 Timestamp。
21596
+ 1. Timestamp:SQL 的执行时间
21597
+ 2. QueryTime:SQL 的执行时长(秒)
21598
+ 3. LockTime:锁时长(秒)
21599
+ 4. RowsExamined:扫描行数
21600
+ 5. RowsSent:结果集行数
21588
21601
  :type SortBy: str
21589
- :param _OrderBy: 升序还是降序排列。当前支持:ASC,DESC 。
21602
+ :param _OrderBy: 升序还是降序排列。当前支持值为 ASC - 升序,DESC - 降序 ,默认值为 ASC
21590
21603
  :type OrderBy: str
21591
21604
  :param _Offset: 偏移量,默认为0,最大为9999。
21592
21605
  :type Offset: int
21593
- :param _Limit: 一次性返回的记录数量,默认为100,最大为400
21606
+ :param _Limit: 一次性返回的记录数量,默认为100,最大为800
21594
21607
  :type Limit: int
21595
21608
  :param _InstType: 仅在实例为主实例或者灾备实例时生效,可选值:slave,代表拉取从机的日志。
21596
21609
  :type InstType: str
@@ -21612,7 +21625,7 @@ class DescribeSlowLogDataRequest(AbstractModel):
21612
21625
 
21613
21626
  @property
21614
21627
  def InstanceId(self):
21615
- """实例 ID
21628
+ """实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
21616
21629
  :rtype: str
21617
21630
  """
21618
21631
  return self._InstanceId
@@ -21680,7 +21693,12 @@ class DescribeSlowLogDataRequest(AbstractModel):
21680
21693
 
21681
21694
  @property
21682
21695
  def SortBy(self):
21683
- """排序字段。当前支持:Timestamp,QueryTime,LockTime,RowsExamined,RowsSent
21696
+ """排序字段,当前支持字段及含义如下,默认值为 Timestamp。
21697
+ 1. Timestamp:SQL 的执行时间
21698
+ 2. QueryTime:SQL 的执行时长(秒)
21699
+ 3. LockTime:锁时长(秒)
21700
+ 4. RowsExamined:扫描行数
21701
+ 5. RowsSent:结果集行数
21684
21702
  :rtype: str
21685
21703
  """
21686
21704
  return self._SortBy
@@ -21691,7 +21709,7 @@ class DescribeSlowLogDataRequest(AbstractModel):
21691
21709
 
21692
21710
  @property
21693
21711
  def OrderBy(self):
21694
- """升序还是降序排列。当前支持:ASC,DESC 。
21712
+ """升序还是降序排列。当前支持值为 ASC - 升序,DESC - 降序 ,默认值为 ASC
21695
21713
  :rtype: str
21696
21714
  """
21697
21715
  return self._OrderBy
@@ -21713,7 +21731,7 @@ class DescribeSlowLogDataRequest(AbstractModel):
21713
21731
 
21714
21732
  @property
21715
21733
  def Limit(self):
21716
- """一次性返回的记录数量,默认为100,最大为400
21734
+ """一次性返回的记录数量,默认为100,最大为800
21717
21735
  :rtype: int
21718
21736
  """
21719
21737
  return self._Limit
@@ -21842,7 +21860,7 @@ class DescribeSlowLogsRequest(AbstractModel):
21842
21860
  :type InstanceId: str
21843
21861
  :param _Offset: 偏移量,默认值为0,最小值为0。
21844
21862
  :type Offset: int
21845
- :param _Limit: 分页大小,默认值为20,最小值为1,最大值为100
21863
+ :param _Limit: 分页大小,默认值为20,最小值为1,最大值为1000
21846
21864
  :type Limit: int
21847
21865
  """
21848
21866
  self._InstanceId = None
@@ -21873,7 +21891,7 @@ class DescribeSlowLogsRequest(AbstractModel):
21873
21891
 
21874
21892
  @property
21875
21893
  def Limit(self):
21876
- """分页大小,默认值为20,最小值为1,最大值为100
21894
+ """分页大小,默认值为20,最小值为1,最大值为1000
21877
21895
  :rtype: int
21878
21896
  """
21879
21897
  return self._Limit
@@ -31914,17 +31932,17 @@ class ParamTemplateInfo(AbstractModel):
31914
31932
 
31915
31933
  def __init__(self):
31916
31934
  r"""
31917
- :param _TemplateId: 参数模板ID
31935
+ :param _TemplateId: 参数模板 ID
31918
31936
  :type TemplateId: int
31919
31937
  :param _Name: 参数模板名称
31920
31938
  :type Name: str
31921
31939
  :param _Description: 参数模板描述
31922
31940
  :type Description: str
31923
- :param _EngineVersion: 实例引擎版本
31941
+ :param _EngineVersion: 实例引擎版本,值为:5.5、5.6、5.7、8.0。
31924
31942
  :type EngineVersion: str
31925
- :param _TemplateType: 参数模板类型
31943
+ :param _TemplateType: 参数模板类型,值为:HIGH_STABILITY、HIGH_PERFORMANCE。
31926
31944
  :type TemplateType: str
31927
- :param _EngineType: 参数模板引擎
31945
+ :param _EngineType: 参数模板引擎,值为:InnoDB、RocksDB。
31928
31946
  :type EngineType: str
31929
31947
  """
31930
31948
  self._TemplateId = None
@@ -31936,7 +31954,7 @@ class ParamTemplateInfo(AbstractModel):
31936
31954
 
31937
31955
  @property
31938
31956
  def TemplateId(self):
31939
- """参数模板ID
31957
+ """参数模板 ID
31940
31958
  :rtype: int
31941
31959
  """
31942
31960
  return self._TemplateId
@@ -31969,7 +31987,7 @@ class ParamTemplateInfo(AbstractModel):
31969
31987
 
31970
31988
  @property
31971
31989
  def EngineVersion(self):
31972
- """实例引擎版本
31990
+ """实例引擎版本,值为:5.5、5.6、5.7、8.0。
31973
31991
  :rtype: str
31974
31992
  """
31975
31993
  return self._EngineVersion
@@ -31980,7 +31998,7 @@ class ParamTemplateInfo(AbstractModel):
31980
31998
 
31981
31999
  @property
31982
32000
  def TemplateType(self):
31983
- """参数模板类型
32001
+ """参数模板类型,值为:HIGH_STABILITY、HIGH_PERFORMANCE。
31984
32002
  :rtype: str
31985
32003
  """
31986
32004
  return self._TemplateType
@@ -31991,7 +32009,7 @@ class ParamTemplateInfo(AbstractModel):
31991
32009
 
31992
32010
  @property
31993
32011
  def EngineType(self):
31994
- """参数模板引擎
32012
+ """参数模板引擎,值为:InnoDB、RocksDB。
31995
32013
  :rtype: str
31996
32014
  """
31997
32015
  return self._EngineType