tencentcloud-sdk-python 3.0.1394__py2.py3-none-any.whl → 3.0.1396__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/apm/v20210622/models.py +17 -2
- tencentcloud/bh/v20230418/models.py +15 -0
- tencentcloud/cbs/v20170312/cbs_client.py +3 -1
- tencentcloud/cdb/v20170320/models.py +36 -6
- tencentcloud/cfs/v20190719/models.py +2 -2
- tencentcloud/chc/v20230418/chc_client.py +23 -0
- tencentcloud/chc/v20230418/errorcodes.py +9 -0
- tencentcloud/chc/v20230418/models.py +109 -0
- tencentcloud/cvm/v20170312/models.py +8 -0
- tencentcloud/cwp/v20180228/models.py +137 -2
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +1 -1
- tencentcloud/dbbrain/v20210527/models.py +4 -4
- tencentcloud/dts/v20211206/models.py +6 -6
- tencentcloud/emr/v20190103/models.py +304 -4
- tencentcloud/ess/v20201111/ess_client.py +56 -0
- tencentcloud/ess/v20201111/models.py +255 -0
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/gs/v20191118/gs_client.py +233 -3
- tencentcloud/gs/v20191118/models.py +1310 -55
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +2 -2
- tencentcloud/mariadb/v20170312/models.py +30 -10
- tencentcloud/ocr/v20181119/models.py +131 -18
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/tcss/v20201101/models.py +94 -4
- tencentcloud/tem/v20210701/errorcodes.py +6 -0
- tencentcloud/tem/v20210701/models.py +200 -0
- tencentcloud/tem/v20210701/tem_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +1417 -117
- tencentcloud/trtc/v20190722/models.py +12 -4
- tencentcloud/vclm/v20240523/models.py +350 -0
- tencentcloud/vclm/v20240523/vclm_client.py +46 -0
- tencentcloud/vod/v20180717/models.py +44 -0
- tencentcloud/vpc/v20170312/models.py +19 -2
- tencentcloud/waf/v20180125/models.py +0 -2
- tencentcloud/wedata/v20210820/models.py +1902 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1394.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1394.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/RECORD +42 -42
- {tencentcloud_sdk_python-3.0.1394.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1394.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1394.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/top_level.txt +0 -0
@@ -71881,11 +71881,14 @@ class FileTamperRule(AbstractModel):
|
|
71881
71881
|
<li>write 修改文件</li>
|
71882
71882
|
<li>read-write 读取修改文件</li>
|
71883
71883
|
:type FileAction: str
|
71884
|
+
:param _Args: 命令行参数 没有填*
|
71885
|
+
:type Args: str
|
71884
71886
|
"""
|
71885
71887
|
self._ProcessPath = None
|
71886
71888
|
self._Target = None
|
71887
71889
|
self._Action = None
|
71888
71890
|
self._FileAction = None
|
71891
|
+
self._Args = None
|
71889
71892
|
|
71890
71893
|
@property
|
71891
71894
|
def ProcessPath(self):
|
@@ -71934,12 +71937,24 @@ class FileTamperRule(AbstractModel):
|
|
71934
71937
|
def FileAction(self, FileAction):
|
71935
71938
|
self._FileAction = FileAction
|
71936
71939
|
|
71940
|
+
@property
|
71941
|
+
def Args(self):
|
71942
|
+
"""命令行参数 没有填*
|
71943
|
+
:rtype: str
|
71944
|
+
"""
|
71945
|
+
return self._Args
|
71946
|
+
|
71947
|
+
@Args.setter
|
71948
|
+
def Args(self, Args):
|
71949
|
+
self._Args = Args
|
71950
|
+
|
71937
71951
|
|
71938
71952
|
def _deserialize(self, params):
|
71939
71953
|
self._ProcessPath = params.get("ProcessPath")
|
71940
71954
|
self._Target = params.get("Target")
|
71941
71955
|
self._Action = params.get("Action")
|
71942
71956
|
self._FileAction = params.get("FileAction")
|
71957
|
+
self._Args = params.get("Args")
|
71943
71958
|
memeber_set = set(params.keys())
|
71944
71959
|
for name, value in vars(self).items():
|
71945
71960
|
property_name = name[1:]
|
@@ -103520,6 +103535,16 @@ class VulEffectHostList(AbstractModel):
|
|
103520
103535
|
:type CloudTags: list of Tags
|
103521
103536
|
:param _MachineExtraInfo: 主机额外信息
|
103522
103537
|
:type MachineExtraInfo: :class:`tencentcloud.cwp.v20180228.models.MachineExtraInfo`
|
103538
|
+
:param _MachineType: 主机类型
|
103539
|
+
:type MachineType: str
|
103540
|
+
:param _RegionId: 可用区ID
|
103541
|
+
:type RegionId: int
|
103542
|
+
:param _HasSnapshot: 修复任务是否创建了快照: 0-未创建,其他-已创建
|
103543
|
+
:type HasSnapshot: int
|
103544
|
+
:param _LatestFixTime: 最后修复时间
|
103545
|
+
:type LatestFixTime: str
|
103546
|
+
:param _DescriptionEn: 说明
|
103547
|
+
:type DescriptionEn: str
|
103523
103548
|
"""
|
103524
103549
|
self._EventId = None
|
103525
103550
|
self._Status = None
|
@@ -103539,6 +103564,11 @@ class VulEffectHostList(AbstractModel):
|
|
103539
103564
|
self._PublicIpAddresses = None
|
103540
103565
|
self._CloudTags = None
|
103541
103566
|
self._MachineExtraInfo = None
|
103567
|
+
self._MachineType = None
|
103568
|
+
self._RegionId = None
|
103569
|
+
self._HasSnapshot = None
|
103570
|
+
self._LatestFixTime = None
|
103571
|
+
self._DescriptionEn = None
|
103542
103572
|
|
103543
103573
|
@property
|
103544
103574
|
def EventId(self):
|
@@ -103738,6 +103768,61 @@ class VulEffectHostList(AbstractModel):
|
|
103738
103768
|
def MachineExtraInfo(self, MachineExtraInfo):
|
103739
103769
|
self._MachineExtraInfo = MachineExtraInfo
|
103740
103770
|
|
103771
|
+
@property
|
103772
|
+
def MachineType(self):
|
103773
|
+
"""主机类型
|
103774
|
+
:rtype: str
|
103775
|
+
"""
|
103776
|
+
return self._MachineType
|
103777
|
+
|
103778
|
+
@MachineType.setter
|
103779
|
+
def MachineType(self, MachineType):
|
103780
|
+
self._MachineType = MachineType
|
103781
|
+
|
103782
|
+
@property
|
103783
|
+
def RegionId(self):
|
103784
|
+
"""可用区ID
|
103785
|
+
:rtype: int
|
103786
|
+
"""
|
103787
|
+
return self._RegionId
|
103788
|
+
|
103789
|
+
@RegionId.setter
|
103790
|
+
def RegionId(self, RegionId):
|
103791
|
+
self._RegionId = RegionId
|
103792
|
+
|
103793
|
+
@property
|
103794
|
+
def HasSnapshot(self):
|
103795
|
+
"""修复任务是否创建了快照: 0-未创建,其他-已创建
|
103796
|
+
:rtype: int
|
103797
|
+
"""
|
103798
|
+
return self._HasSnapshot
|
103799
|
+
|
103800
|
+
@HasSnapshot.setter
|
103801
|
+
def HasSnapshot(self, HasSnapshot):
|
103802
|
+
self._HasSnapshot = HasSnapshot
|
103803
|
+
|
103804
|
+
@property
|
103805
|
+
def LatestFixTime(self):
|
103806
|
+
"""最后修复时间
|
103807
|
+
:rtype: str
|
103808
|
+
"""
|
103809
|
+
return self._LatestFixTime
|
103810
|
+
|
103811
|
+
@LatestFixTime.setter
|
103812
|
+
def LatestFixTime(self, LatestFixTime):
|
103813
|
+
self._LatestFixTime = LatestFixTime
|
103814
|
+
|
103815
|
+
@property
|
103816
|
+
def DescriptionEn(self):
|
103817
|
+
"""说明
|
103818
|
+
:rtype: str
|
103819
|
+
"""
|
103820
|
+
return self._DescriptionEn
|
103821
|
+
|
103822
|
+
@DescriptionEn.setter
|
103823
|
+
def DescriptionEn(self, DescriptionEn):
|
103824
|
+
self._DescriptionEn = DescriptionEn
|
103825
|
+
|
103741
103826
|
|
103742
103827
|
def _deserialize(self, params):
|
103743
103828
|
self._EventId = params.get("EventId")
|
@@ -103765,6 +103850,11 @@ class VulEffectHostList(AbstractModel):
|
|
103765
103850
|
if params.get("MachineExtraInfo") is not None:
|
103766
103851
|
self._MachineExtraInfo = MachineExtraInfo()
|
103767
103852
|
self._MachineExtraInfo._deserialize(params.get("MachineExtraInfo"))
|
103853
|
+
self._MachineType = params.get("MachineType")
|
103854
|
+
self._RegionId = params.get("RegionId")
|
103855
|
+
self._HasSnapshot = params.get("HasSnapshot")
|
103856
|
+
self._LatestFixTime = params.get("LatestFixTime")
|
103857
|
+
self._DescriptionEn = params.get("DescriptionEn")
|
103768
103858
|
memeber_set = set(params.keys())
|
103769
103859
|
for name, value in vars(self).items():
|
103770
103860
|
property_name = name[1:]
|
@@ -104245,10 +104335,12 @@ class VulFixStatusSnapshotInfo(AbstractModel):
|
|
104245
104335
|
:type SnapshotId: str
|
104246
104336
|
:param _Id: 记录唯一id
|
104247
104337
|
:type Id: int
|
104248
|
-
:param _Status: 快照状态 0-初始状态1-快照创建成功;2-快照创建失败;
|
104338
|
+
:param _Status: 快照状态 0-初始状态1-快照创建成功;2-快照创建失败;10-不支持,11-无需创建
|
104249
104339
|
:type Status: int
|
104250
104340
|
:param _FailReason: 快照创建失败原因
|
104251
104341
|
:type FailReason: str
|
104342
|
+
:param _MachineType: 主机类型
|
104343
|
+
:type MachineType: str
|
104252
104344
|
"""
|
104253
104345
|
self._Quuid = None
|
104254
104346
|
self._HostName = None
|
@@ -104259,6 +104351,7 @@ class VulFixStatusSnapshotInfo(AbstractModel):
|
|
104259
104351
|
self._Id = None
|
104260
104352
|
self._Status = None
|
104261
104353
|
self._FailReason = None
|
104354
|
+
self._MachineType = None
|
104262
104355
|
|
104263
104356
|
@property
|
104264
104357
|
def Quuid(self):
|
@@ -104339,7 +104432,7 @@ class VulFixStatusSnapshotInfo(AbstractModel):
|
|
104339
104432
|
|
104340
104433
|
@property
|
104341
104434
|
def Status(self):
|
104342
|
-
"""快照状态 0-初始状态1-快照创建成功;2-快照创建失败;
|
104435
|
+
"""快照状态 0-初始状态1-快照创建成功;2-快照创建失败;10-不支持,11-无需创建
|
104343
104436
|
:rtype: int
|
104344
104437
|
"""
|
104345
104438
|
return self._Status
|
@@ -104359,6 +104452,17 @@ class VulFixStatusSnapshotInfo(AbstractModel):
|
|
104359
104452
|
def FailReason(self, FailReason):
|
104360
104453
|
self._FailReason = FailReason
|
104361
104454
|
|
104455
|
+
@property
|
104456
|
+
def MachineType(self):
|
104457
|
+
"""主机类型
|
104458
|
+
:rtype: str
|
104459
|
+
"""
|
104460
|
+
return self._MachineType
|
104461
|
+
|
104462
|
+
@MachineType.setter
|
104463
|
+
def MachineType(self, MachineType):
|
104464
|
+
self._MachineType = MachineType
|
104465
|
+
|
104362
104466
|
|
104363
104467
|
def _deserialize(self, params):
|
104364
104468
|
self._Quuid = params.get("Quuid")
|
@@ -104370,6 +104474,7 @@ class VulFixStatusSnapshotInfo(AbstractModel):
|
|
104370
104474
|
self._Id = params.get("Id")
|
104371
104475
|
self._Status = params.get("Status")
|
104372
104476
|
self._FailReason = params.get("FailReason")
|
104477
|
+
self._MachineType = params.get("MachineType")
|
104373
104478
|
memeber_set = set(params.keys())
|
104374
104479
|
for name, value in vars(self).items():
|
104375
104480
|
property_name = name[1:]
|
@@ -104538,6 +104643,8 @@ class VulInfoHostInfo(AbstractModel):
|
|
104538
104643
|
:type Uuid: str
|
104539
104644
|
:param _InstanceId: 主机InstanceId
|
104540
104645
|
:type InstanceId: str
|
104646
|
+
:param _MachineType: 主机类型
|
104647
|
+
:type MachineType: str
|
104541
104648
|
"""
|
104542
104649
|
self._HostName = None
|
104543
104650
|
self._HostIp = None
|
@@ -104546,6 +104653,7 @@ class VulInfoHostInfo(AbstractModel):
|
|
104546
104653
|
self._IsSupportAutoFix = None
|
104547
104654
|
self._Uuid = None
|
104548
104655
|
self._InstanceId = None
|
104656
|
+
self._MachineType = None
|
104549
104657
|
|
104550
104658
|
@property
|
104551
104659
|
def HostName(self):
|
@@ -104624,6 +104732,17 @@ class VulInfoHostInfo(AbstractModel):
|
|
104624
104732
|
def InstanceId(self, InstanceId):
|
104625
104733
|
self._InstanceId = InstanceId
|
104626
104734
|
|
104735
|
+
@property
|
104736
|
+
def MachineType(self):
|
104737
|
+
"""主机类型
|
104738
|
+
:rtype: str
|
104739
|
+
"""
|
104740
|
+
return self._MachineType
|
104741
|
+
|
104742
|
+
@MachineType.setter
|
104743
|
+
def MachineType(self, MachineType):
|
104744
|
+
self._MachineType = MachineType
|
104745
|
+
|
104627
104746
|
|
104628
104747
|
def _deserialize(self, params):
|
104629
104748
|
self._HostName = params.get("HostName")
|
@@ -104633,6 +104752,7 @@ class VulInfoHostInfo(AbstractModel):
|
|
104633
104752
|
self._IsSupportAutoFix = params.get("IsSupportAutoFix")
|
104634
104753
|
self._Uuid = params.get("Uuid")
|
104635
104754
|
self._InstanceId = params.get("InstanceId")
|
104755
|
+
self._MachineType = params.get("MachineType")
|
104636
104756
|
memeber_set = set(params.keys())
|
104637
104757
|
for name, value in vars(self).items():
|
104638
104758
|
property_name = name[1:]
|
@@ -104712,6 +104832,8 @@ class VulInfoList(AbstractModel):
|
|
104712
104832
|
:type Method: int
|
104713
104833
|
:param _VulFixSwitch: 漏洞是否支持修复 0不支持,1支持
|
104714
104834
|
:type VulFixSwitch: int
|
104835
|
+
:param _LatestFixTime: 最近修复时间
|
104836
|
+
:type LatestFixTime: str
|
104715
104837
|
"""
|
104716
104838
|
self._Ids = None
|
104717
104839
|
self._Name = None
|
@@ -104740,6 +104862,7 @@ class VulInfoList(AbstractModel):
|
|
104740
104862
|
self._FixNoNeedRestart = None
|
104741
104863
|
self._Method = None
|
104742
104864
|
self._VulFixSwitch = None
|
104865
|
+
self._LatestFixTime = None
|
104743
104866
|
|
104744
104867
|
@property
|
104745
104868
|
def Ids(self):
|
@@ -105046,6 +105169,17 @@ class VulInfoList(AbstractModel):
|
|
105046
105169
|
def VulFixSwitch(self, VulFixSwitch):
|
105047
105170
|
self._VulFixSwitch = VulFixSwitch
|
105048
105171
|
|
105172
|
+
@property
|
105173
|
+
def LatestFixTime(self):
|
105174
|
+
"""最近修复时间
|
105175
|
+
:rtype: str
|
105176
|
+
"""
|
105177
|
+
return self._LatestFixTime
|
105178
|
+
|
105179
|
+
@LatestFixTime.setter
|
105180
|
+
def LatestFixTime(self, LatestFixTime):
|
105181
|
+
self._LatestFixTime = LatestFixTime
|
105182
|
+
|
105049
105183
|
|
105050
105184
|
def _deserialize(self, params):
|
105051
105185
|
self._Ids = params.get("Ids")
|
@@ -105075,6 +105209,7 @@ class VulInfoList(AbstractModel):
|
|
105075
105209
|
self._FixNoNeedRestart = params.get("FixNoNeedRestart")
|
105076
105210
|
self._Method = params.get("Method")
|
105077
105211
|
self._VulFixSwitch = params.get("VulFixSwitch")
|
105212
|
+
self._LatestFixTime = params.get("LatestFixTime")
|
105078
105213
|
memeber_set = set(params.keys())
|
105079
105214
|
for name, value in vars(self).items():
|
105080
105215
|
property_name = name[1:]
|
@@ -924,7 +924,7 @@ class DbbrainClient(AbstractClient):
|
|
924
924
|
|
925
925
|
|
926
926
|
def DescribeIndexRecommendAggregationSlowLogs(self, request):
|
927
|
-
"""
|
927
|
+
"""查询某张表的慢查模板概览,这个接口是对用户点击对应的推荐索引后,展示慢日志用的
|
928
928
|
|
929
929
|
:param request: Request instance for DescribeIndexRecommendAggregationSlowLogs.
|
930
930
|
:type request: :class:`tencentcloud.dbbrain.v20210527.models.DescribeIndexRecommendAggregationSlowLogsRequest`
|
@@ -7347,9 +7347,9 @@ class DescribeIndexRecommendAggregationSlowLogsRequest(AbstractModel):
|
|
7347
7347
|
:type InstanceId: str
|
7348
7348
|
:param _Db: 数据库名称。
|
7349
7349
|
:type Db: str
|
7350
|
-
:param _Collection:
|
7350
|
+
:param _Collection: 表名。
|
7351
7351
|
:type Collection: str
|
7352
|
-
:param _Signs:
|
7352
|
+
:param _Signs: 签名。这个值是DescribelndexRecommendInfo接口返回
|
7353
7353
|
:type Signs: list of str
|
7354
7354
|
"""
|
7355
7355
|
self._Product = None
|
@@ -7393,7 +7393,7 @@ class DescribeIndexRecommendAggregationSlowLogsRequest(AbstractModel):
|
|
7393
7393
|
|
7394
7394
|
@property
|
7395
7395
|
def Collection(self):
|
7396
|
-
"""
|
7396
|
+
"""表名。
|
7397
7397
|
:rtype: str
|
7398
7398
|
"""
|
7399
7399
|
return self._Collection
|
@@ -7404,7 +7404,7 @@ class DescribeIndexRecommendAggregationSlowLogsRequest(AbstractModel):
|
|
7404
7404
|
|
7405
7405
|
@property
|
7406
7406
|
def Signs(self):
|
7407
|
-
"""
|
7407
|
+
"""签名。这个值是DescribelndexRecommendInfo接口返回
|
7408
7408
|
:rtype: list of str
|
7409
7409
|
"""
|
7410
7410
|
return self._Signs
|
@@ -963,7 +963,7 @@ class CompareOptions(AbstractModel):
|
|
963
963
|
:type Method: str
|
964
964
|
:param _SampleRate: 抽样比例;范围0,100。默认为100
|
965
965
|
:type SampleRate: int
|
966
|
-
:param _ThreadCount: 线程数,取值1-
|
966
|
+
:param _ThreadCount: 线程数,取值1-8,默认为1
|
967
967
|
:type ThreadCount: int
|
968
968
|
"""
|
969
969
|
self._Method = None
|
@@ -994,7 +994,7 @@ class CompareOptions(AbstractModel):
|
|
994
994
|
|
995
995
|
@property
|
996
996
|
def ThreadCount(self):
|
997
|
-
"""线程数,取值1-
|
997
|
+
"""线程数,取值1-8,默认为1
|
998
998
|
:rtype: int
|
999
999
|
"""
|
1000
1000
|
return self._ThreadCount
|
@@ -9221,7 +9221,7 @@ class DynamicOptions(AbstractModel):
|
|
9221
9221
|
r"""
|
9222
9222
|
:param _OpTypes: 所要同步的DML和DDL的选项,Insert(插入操作)、Update(更新操作)、Delete(删除操作)、DDL(结构同步),PartialDDL(自定义,和DdlOptions一起起作用 );必填、dts会用该值覆盖原有的值
|
9223
9223
|
:type OpTypes: list of str
|
9224
|
-
:param _DdlOptions: DDL
|
9224
|
+
:param _DdlOptions: DDL同步选项,具体描述要同步哪些DDL; 当OpTypes取值PartialDDL时、字段不能为空;必填、dts会用该值覆盖原有的值
|
9225
9225
|
:type DdlOptions: list of DdlOption
|
9226
9226
|
:param _ConflictHandleType: 冲突处理选项,ReportError(报错)、Ignore(忽略)、Cover(覆盖)、ConditionCover(条件覆盖); 目前目标端为kafka的链路不支持修改该配置
|
9227
9227
|
:type ConflictHandleType: str
|
@@ -9261,7 +9261,7 @@ class DynamicOptions(AbstractModel):
|
|
9261
9261
|
|
9262
9262
|
@property
|
9263
9263
|
def DdlOptions(self):
|
9264
|
-
"""DDL
|
9264
|
+
"""DDL同步选项,具体描述要同步哪些DDL; 当OpTypes取值PartialDDL时、字段不能为空;必填、dts会用该值覆盖原有的值
|
9265
9265
|
:rtype: list of DdlOption
|
9266
9266
|
"""
|
9267
9267
|
return self._DdlOptions
|
@@ -13498,7 +13498,7 @@ class Options(AbstractModel):
|
|
13498
13498
|
:type OpTypes: list of str
|
13499
13499
|
:param _ConflictHandleOption: 冲突处理的详细选项,如条件覆盖中的条件行和条件操作
|
13500
13500
|
:type ConflictHandleOption: :class:`tencentcloud.dts.v20211206.models.ConflictHandleOption`
|
13501
|
-
:param _DdlOptions: DDL
|
13501
|
+
:param _DdlOptions: DDL同步选项,具体描述要同步哪些DDL
|
13502
13502
|
注意:此字段可能返回 null,表示取不到有效值。
|
13503
13503
|
:type DdlOptions: list of DdlOption
|
13504
13504
|
:param _KafkaOption: kafka同步选项
|
@@ -13597,7 +13597,7 @@ class Options(AbstractModel):
|
|
13597
13597
|
|
13598
13598
|
@property
|
13599
13599
|
def DdlOptions(self):
|
13600
|
-
"""DDL
|
13600
|
+
"""DDL同步选项,具体描述要同步哪些DDL
|
13601
13601
|
注意:此字段可能返回 null,表示取不到有效值。
|
13602
13602
|
:rtype: list of DdlOption
|
13603
13603
|
"""
|