tencentcloud-sdk-python 3.0.1439__py2.py3-none-any.whl → 3.0.1440__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/models.py +83 -0
- tencentcloud/cdb/v20170320/models.py +4 -4
- tencentcloud/cdwch/v20200915/models.py +19 -6
- tencentcloud/cfg/v20210820/models.py +20 -0
- tencentcloud/clb/v20180317/models.py +2 -2
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +578 -4
- tencentcloud/emr/v20190103/models.py +15 -0
- tencentcloud/es/v20180416/errorcodes.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +24 -0
- tencentcloud/omics/v20221128/models.py +175 -0
- tencentcloud/sqlserver/v20180328/models.py +30 -0
- tencentcloud/tdmq/v20200217/models.py +17 -2
- tencentcloud/teo/v20220901/models.py +130 -0
- tencentcloud/trocket/v20230308/models.py +20 -20
- tencentcloud/tsf/v20180326/errorcodes.py +11 -11
- tencentcloud/vdb/v20230616/models.py +15 -0
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/RECORD +24 -24
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -3378,11 +3378,19 @@ class DescribeJobMonitorDataRequest(AbstractModel):
|
|
|
3378
3378
|
- MemUsage:内存利用率,单位:%
|
|
3379
3379
|
- LanOuttraffic:内网出带宽,单位:Bytes/s
|
|
3380
3380
|
- LanIntraffic:内网入带宽,单位:Bytes/s
|
|
3381
|
+
- MaxDiskUsage:所有磁盘中的使用率最高的磁盘使用率,单位:%
|
|
3382
|
+
- TargetDiskUsage:指定磁盘的使用率,单位:%;配合Dimensions参数使用
|
|
3381
3383
|
:type MetricName: str
|
|
3382
3384
|
:param _StartTime: 查询任务实例的起始时间;如果未传入查询起始时间或传入的时间小于任务实例的创建时间(任务实例创建时间详见[任务详情](https://cloud.tencent.com/document/product/599/15905)),会自动将查询时间调整到任务实例的创建时间。传入时间格式只支持零时区格式。
|
|
3383
3385
|
:type StartTime: str
|
|
3384
3386
|
:param _EndTime: 查询任务实例的终止时间;如果未传入查询终止时间或传入的时间大于任务实例的终止时间(任务实例终止时间详见[任务详情](https://cloud.tencent.com/document/product/599/15905)),并且任务实例已经结束,会自动将查询终止时间调整到任务实例的终止时间;如果任务实例未结束,会自动将查询终止时间调整到当前时间。传入时间格式只支持零时区格式。
|
|
3385
3387
|
:type EndTime: str
|
|
3388
|
+
:param _Dimensions: 查询指标的扩展参数;当前只支持TargetDiskUsage;
|
|
3389
|
+
|
|
3390
|
+
- TargetDiskUsage
|
|
3391
|
+
-支持的查询维度diskname, 维度值为磁盘挂载名,例如vdb;如果不传此参数,默认查询vdb磁盘的使用率。
|
|
3392
|
+
样例:[{"Name":"diskname", "Value":"vdb"}]
|
|
3393
|
+
:type Dimensions: list of Dimension
|
|
3386
3394
|
"""
|
|
3387
3395
|
self._JobId = None
|
|
3388
3396
|
self._TaskName = None
|
|
@@ -3390,6 +3398,7 @@ class DescribeJobMonitorDataRequest(AbstractModel):
|
|
|
3390
3398
|
self._MetricName = None
|
|
3391
3399
|
self._StartTime = None
|
|
3392
3400
|
self._EndTime = None
|
|
3401
|
+
self._Dimensions = None
|
|
3393
3402
|
|
|
3394
3403
|
@property
|
|
3395
3404
|
def JobId(self):
|
|
@@ -3432,6 +3441,8 @@ class DescribeJobMonitorDataRequest(AbstractModel):
|
|
|
3432
3441
|
- MemUsage:内存利用率,单位:%
|
|
3433
3442
|
- LanOuttraffic:内网出带宽,单位:Bytes/s
|
|
3434
3443
|
- LanIntraffic:内网入带宽,单位:Bytes/s
|
|
3444
|
+
- MaxDiskUsage:所有磁盘中的使用率最高的磁盘使用率,单位:%
|
|
3445
|
+
- TargetDiskUsage:指定磁盘的使用率,单位:%;配合Dimensions参数使用
|
|
3435
3446
|
:rtype: str
|
|
3436
3447
|
"""
|
|
3437
3448
|
return self._MetricName
|
|
@@ -3462,6 +3473,21 @@ class DescribeJobMonitorDataRequest(AbstractModel):
|
|
|
3462
3473
|
def EndTime(self, EndTime):
|
|
3463
3474
|
self._EndTime = EndTime
|
|
3464
3475
|
|
|
3476
|
+
@property
|
|
3477
|
+
def Dimensions(self):
|
|
3478
|
+
"""查询指标的扩展参数;当前只支持TargetDiskUsage;
|
|
3479
|
+
|
|
3480
|
+
- TargetDiskUsage
|
|
3481
|
+
-支持的查询维度diskname, 维度值为磁盘挂载名,例如vdb;如果不传此参数,默认查询vdb磁盘的使用率。
|
|
3482
|
+
样例:[{"Name":"diskname", "Value":"vdb"}]
|
|
3483
|
+
:rtype: list of Dimension
|
|
3484
|
+
"""
|
|
3485
|
+
return self._Dimensions
|
|
3486
|
+
|
|
3487
|
+
@Dimensions.setter
|
|
3488
|
+
def Dimensions(self, Dimensions):
|
|
3489
|
+
self._Dimensions = Dimensions
|
|
3490
|
+
|
|
3465
3491
|
|
|
3466
3492
|
def _deserialize(self, params):
|
|
3467
3493
|
self._JobId = params.get("JobId")
|
|
@@ -3470,6 +3496,12 @@ class DescribeJobMonitorDataRequest(AbstractModel):
|
|
|
3470
3496
|
self._MetricName = params.get("MetricName")
|
|
3471
3497
|
self._StartTime = params.get("StartTime")
|
|
3472
3498
|
self._EndTime = params.get("EndTime")
|
|
3499
|
+
if params.get("Dimensions") is not None:
|
|
3500
|
+
self._Dimensions = []
|
|
3501
|
+
for item in params.get("Dimensions"):
|
|
3502
|
+
obj = Dimension()
|
|
3503
|
+
obj._deserialize(item)
|
|
3504
|
+
self._Dimensions.append(obj)
|
|
3473
3505
|
memeber_set = set(params.keys())
|
|
3474
3506
|
for name, value in vars(self).items():
|
|
3475
3507
|
property_name = name[1:]
|
|
@@ -4879,6 +4911,57 @@ class DetachInstancesResponse(AbstractModel):
|
|
|
4879
4911
|
self._RequestId = params.get("RequestId")
|
|
4880
4912
|
|
|
4881
4913
|
|
|
4914
|
+
class Dimension(AbstractModel):
|
|
4915
|
+
"""Job资源监控查询维度
|
|
4916
|
+
|
|
4917
|
+
"""
|
|
4918
|
+
|
|
4919
|
+
def __init__(self):
|
|
4920
|
+
r"""
|
|
4921
|
+
:param _Name: 查询指标的维度名称
|
|
4922
|
+
:type Name: str
|
|
4923
|
+
:param _Value: 查询指标的维度值
|
|
4924
|
+
:type Value: str
|
|
4925
|
+
"""
|
|
4926
|
+
self._Name = None
|
|
4927
|
+
self._Value = None
|
|
4928
|
+
|
|
4929
|
+
@property
|
|
4930
|
+
def Name(self):
|
|
4931
|
+
"""查询指标的维度名称
|
|
4932
|
+
:rtype: str
|
|
4933
|
+
"""
|
|
4934
|
+
return self._Name
|
|
4935
|
+
|
|
4936
|
+
@Name.setter
|
|
4937
|
+
def Name(self, Name):
|
|
4938
|
+
self._Name = Name
|
|
4939
|
+
|
|
4940
|
+
@property
|
|
4941
|
+
def Value(self):
|
|
4942
|
+
"""查询指标的维度值
|
|
4943
|
+
:rtype: str
|
|
4944
|
+
"""
|
|
4945
|
+
return self._Value
|
|
4946
|
+
|
|
4947
|
+
@Value.setter
|
|
4948
|
+
def Value(self, Value):
|
|
4949
|
+
self._Value = Value
|
|
4950
|
+
|
|
4951
|
+
|
|
4952
|
+
def _deserialize(self, params):
|
|
4953
|
+
self._Name = params.get("Name")
|
|
4954
|
+
self._Value = params.get("Value")
|
|
4955
|
+
memeber_set = set(params.keys())
|
|
4956
|
+
for name, value in vars(self).items():
|
|
4957
|
+
property_name = name[1:]
|
|
4958
|
+
if property_name in memeber_set:
|
|
4959
|
+
memeber_set.remove(property_name)
|
|
4960
|
+
if len(memeber_set) > 0:
|
|
4961
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4962
|
+
|
|
4963
|
+
|
|
4964
|
+
|
|
4882
4965
|
class Docker(AbstractModel):
|
|
4883
4966
|
"""Docker容器信息
|
|
4884
4967
|
|
|
@@ -29684,7 +29684,7 @@ class ModifyInstanceParamRequest(AbstractModel):
|
|
|
29684
29684
|
:type InstanceIds: list of str
|
|
29685
29685
|
:param _ParamList: 要修改的参数列表。每一个元素是 Name 和 CurrentValue 的组合。Name 是参数名,CurrentValue 是要修改成的值。
|
|
29686
29686
|
:type ParamList: list of Parameter
|
|
29687
|
-
:param _TemplateId: 模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [
|
|
29687
|
+
:param _TemplateId: 模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
29688
29688
|
:type TemplateId: int
|
|
29689
29689
|
:param _WaitSwitch: 执行参数调整任务的方式,默认为 0。支持值包括:0 - 立刻执行,1 - 时间窗执行;当该值为 1 时,每次只能传一个实例(InstanceIds数量为1)
|
|
29690
29690
|
:type WaitSwitch: int
|
|
@@ -29724,7 +29724,7 @@ class ModifyInstanceParamRequest(AbstractModel):
|
|
|
29724
29724
|
|
|
29725
29725
|
@property
|
|
29726
29726
|
def TemplateId(self):
|
|
29727
|
-
"""模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [
|
|
29727
|
+
"""模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
29728
29728
|
:rtype: int
|
|
29729
29729
|
"""
|
|
29730
29730
|
return self._TemplateId
|
|
@@ -30266,7 +30266,7 @@ class ModifyParamTemplateRequest(AbstractModel):
|
|
|
30266
30266
|
|
|
30267
30267
|
def __init__(self):
|
|
30268
30268
|
r"""
|
|
30269
|
-
:param _TemplateId: 模板 ID。可通过 [
|
|
30269
|
+
:param _TemplateId: 模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
30270
30270
|
:type TemplateId: int
|
|
30271
30271
|
:param _Name: 模板名称,仅支持数字、英文大小写字母、中文以及特殊字符_-./()()[]+=::@,且长度不能超过60。
|
|
30272
30272
|
:type Name: str
|
|
@@ -30282,7 +30282,7 @@ class ModifyParamTemplateRequest(AbstractModel):
|
|
|
30282
30282
|
|
|
30283
30283
|
@property
|
|
30284
30284
|
def TemplateId(self):
|
|
30285
|
-
"""模板 ID。可通过 [
|
|
30285
|
+
"""模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
30286
30286
|
:rtype: int
|
|
30287
30287
|
"""
|
|
30288
30288
|
return self._TemplateId
|
|
@@ -1561,13 +1561,14 @@ SpecName从DescribeSpec接口中返回的DataSpec.Name获取
|
|
|
1561
1561
|
:type MountDiskType: int
|
|
1562
1562
|
:param _HAZk: 是否是ZK高可用
|
|
1563
1563
|
:type HAZk: bool
|
|
1564
|
-
:param _CommonSpec: ZK节点
|
|
1565
|
-
SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
1564
|
+
:param _CommonSpec: ZK节点SpecName从DescribeSpec接口中返回的CommonSpec结构体的Name(ZK节点)获取
|
|
1566
1565
|
:type CommonSpec: :class:`tencentcloud.cdwch.v20200915.models.NodeSpec`
|
|
1567
1566
|
:param _TagItems: 标签列表
|
|
1568
1567
|
:type TagItems: list of Tag
|
|
1569
|
-
:param _SecondaryZoneInfo:
|
|
1568
|
+
:param _SecondaryZoneInfo: 副可用区信息
|
|
1570
1569
|
:type SecondaryZoneInfo: list of SecondaryZoneInfo
|
|
1570
|
+
:param _CkDefaultUserPwd: default账号登陆实例的密码。8-16个字符,至少包含大写字母、小写字母、数字和特殊字符!@#%^*中的三种,第一个字符不能为特殊字符
|
|
1571
|
+
:type CkDefaultUserPwd: str
|
|
1571
1572
|
"""
|
|
1572
1573
|
self._Zone = None
|
|
1573
1574
|
self._HaFlag = None
|
|
@@ -1585,6 +1586,7 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
|
1585
1586
|
self._CommonSpec = None
|
|
1586
1587
|
self._TagItems = None
|
|
1587
1588
|
self._SecondaryZoneInfo = None
|
|
1589
|
+
self._CkDefaultUserPwd = None
|
|
1588
1590
|
|
|
1589
1591
|
@property
|
|
1590
1592
|
def Zone(self):
|
|
@@ -1736,8 +1738,7 @@ SpecName从DescribeSpec接口中返回的DataSpec.Name获取
|
|
|
1736
1738
|
|
|
1737
1739
|
@property
|
|
1738
1740
|
def CommonSpec(self):
|
|
1739
|
-
"""ZK节点
|
|
1740
|
-
SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
1741
|
+
"""ZK节点SpecName从DescribeSpec接口中返回的CommonSpec结构体的Name(ZK节点)获取
|
|
1741
1742
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.NodeSpec`
|
|
1742
1743
|
"""
|
|
1743
1744
|
return self._CommonSpec
|
|
@@ -1759,7 +1760,7 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
|
1759
1760
|
|
|
1760
1761
|
@property
|
|
1761
1762
|
def SecondaryZoneInfo(self):
|
|
1762
|
-
"""
|
|
1763
|
+
"""副可用区信息
|
|
1763
1764
|
:rtype: list of SecondaryZoneInfo
|
|
1764
1765
|
"""
|
|
1765
1766
|
return self._SecondaryZoneInfo
|
|
@@ -1768,6 +1769,17 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
|
1768
1769
|
def SecondaryZoneInfo(self, SecondaryZoneInfo):
|
|
1769
1770
|
self._SecondaryZoneInfo = SecondaryZoneInfo
|
|
1770
1771
|
|
|
1772
|
+
@property
|
|
1773
|
+
def CkDefaultUserPwd(self):
|
|
1774
|
+
"""default账号登陆实例的密码。8-16个字符,至少包含大写字母、小写字母、数字和特殊字符!@#%^*中的三种,第一个字符不能为特殊字符
|
|
1775
|
+
:rtype: str
|
|
1776
|
+
"""
|
|
1777
|
+
return self._CkDefaultUserPwd
|
|
1778
|
+
|
|
1779
|
+
@CkDefaultUserPwd.setter
|
|
1780
|
+
def CkDefaultUserPwd(self, CkDefaultUserPwd):
|
|
1781
|
+
self._CkDefaultUserPwd = CkDefaultUserPwd
|
|
1782
|
+
|
|
1771
1783
|
|
|
1772
1784
|
def _deserialize(self, params):
|
|
1773
1785
|
self._Zone = params.get("Zone")
|
|
@@ -1804,6 +1816,7 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
|
1804
1816
|
obj = SecondaryZoneInfo()
|
|
1805
1817
|
obj._deserialize(item)
|
|
1806
1818
|
self._SecondaryZoneInfo.append(obj)
|
|
1819
|
+
self._CkDefaultUserPwd = params.get("CkDefaultUserPwd")
|
|
1807
1820
|
memeber_set = set(params.keys())
|
|
1808
1821
|
for name, value in vars(self).items():
|
|
1809
1822
|
property_name = name[1:]
|
|
@@ -784,6 +784,8 @@ class CreateTaskFromActionRequest(AbstractModel):
|
|
|
784
784
|
:type TaskActionCustomConfiguration: str
|
|
785
785
|
:param _TaskPauseDuration: 演练自动暂停时间,单位分钟, 不填则默认为60
|
|
786
786
|
:type TaskPauseDuration: int
|
|
787
|
+
:param _TaskTags: 标签列表
|
|
788
|
+
:type TaskTags: list of TagWithCreate
|
|
787
789
|
"""
|
|
788
790
|
self._TaskActionId = None
|
|
789
791
|
self._TaskInstances = None
|
|
@@ -792,6 +794,7 @@ class CreateTaskFromActionRequest(AbstractModel):
|
|
|
792
794
|
self._TaskActionGeneralConfiguration = None
|
|
793
795
|
self._TaskActionCustomConfiguration = None
|
|
794
796
|
self._TaskPauseDuration = None
|
|
797
|
+
self._TaskTags = None
|
|
795
798
|
|
|
796
799
|
@property
|
|
797
800
|
def TaskActionId(self):
|
|
@@ -870,6 +873,17 @@ class CreateTaskFromActionRequest(AbstractModel):
|
|
|
870
873
|
def TaskPauseDuration(self, TaskPauseDuration):
|
|
871
874
|
self._TaskPauseDuration = TaskPauseDuration
|
|
872
875
|
|
|
876
|
+
@property
|
|
877
|
+
def TaskTags(self):
|
|
878
|
+
"""标签列表
|
|
879
|
+
:rtype: list of TagWithCreate
|
|
880
|
+
"""
|
|
881
|
+
return self._TaskTags
|
|
882
|
+
|
|
883
|
+
@TaskTags.setter
|
|
884
|
+
def TaskTags(self, TaskTags):
|
|
885
|
+
self._TaskTags = TaskTags
|
|
886
|
+
|
|
873
887
|
|
|
874
888
|
def _deserialize(self, params):
|
|
875
889
|
self._TaskActionId = params.get("TaskActionId")
|
|
@@ -879,6 +893,12 @@ class CreateTaskFromActionRequest(AbstractModel):
|
|
|
879
893
|
self._TaskActionGeneralConfiguration = params.get("TaskActionGeneralConfiguration")
|
|
880
894
|
self._TaskActionCustomConfiguration = params.get("TaskActionCustomConfiguration")
|
|
881
895
|
self._TaskPauseDuration = params.get("TaskPauseDuration")
|
|
896
|
+
if params.get("TaskTags") is not None:
|
|
897
|
+
self._TaskTags = []
|
|
898
|
+
for item in params.get("TaskTags"):
|
|
899
|
+
obj = TagWithCreate()
|
|
900
|
+
obj._deserialize(item)
|
|
901
|
+
self._TaskTags.append(obj)
|
|
882
902
|
memeber_set = set(params.keys())
|
|
883
903
|
for name, value in vars(self).items():
|
|
884
904
|
property_name = name[1:]
|
|
@@ -3987,7 +3987,7 @@ class CreateListenerRequest(AbstractModel):
|
|
|
3987
3987
|
:type Certificate: :class:`tencentcloud.clb.v20180317.models.CertificateInput`
|
|
3988
3988
|
:param _SessionExpireTime: 会话保持时间,单位:秒。可选值:30~3600,默认为0,默认不开启。此参数仅适用于TCP/UDP监听器。
|
|
3989
3989
|
:type SessionExpireTime: int
|
|
3990
|
-
:param _Scheduler: 监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN
|
|
3990
|
+
:param _Scheduler: 监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN(按最小连接数)
|
|
3991
3991
|
默认为 WRR。此参数仅适用于TCP/UDP/TCP_SSL/QUIC监听器。
|
|
3992
3992
|
:type Scheduler: str
|
|
3993
3993
|
:param _SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS监听器。0表示未开启,1表示开启。
|
|
@@ -4136,7 +4136,7 @@ class CreateListenerRequest(AbstractModel):
|
|
|
4136
4136
|
|
|
4137
4137
|
@property
|
|
4138
4138
|
def Scheduler(self):
|
|
4139
|
-
"""监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN
|
|
4139
|
+
"""监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN(按最小连接数)
|
|
4140
4140
|
默认为 WRR。此参数仅适用于TCP/UDP/TCP_SSL/QUIC监听器。
|
|
4141
4141
|
:rtype: str
|
|
4142
4142
|
"""
|
|
@@ -647,6 +647,29 @@ class CsipClient(AbstractClient):
|
|
|
647
647
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
648
648
|
|
|
649
649
|
|
|
650
|
+
def DescribeConfigCheckRules(self, request):
|
|
651
|
+
"""云资源配置风险规则列表示例
|
|
652
|
+
|
|
653
|
+
:param request: Request instance for DescribeConfigCheckRules.
|
|
654
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeConfigCheckRulesRequest`
|
|
655
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeConfigCheckRulesResponse`
|
|
656
|
+
|
|
657
|
+
"""
|
|
658
|
+
try:
|
|
659
|
+
params = request._serialize()
|
|
660
|
+
headers = request.headers
|
|
661
|
+
body = self.call("DescribeConfigCheckRules", params, headers=headers)
|
|
662
|
+
response = json.loads(body)
|
|
663
|
+
model = models.DescribeConfigCheckRulesResponse()
|
|
664
|
+
model._deserialize(response["Response"])
|
|
665
|
+
return model
|
|
666
|
+
except Exception as e:
|
|
667
|
+
if isinstance(e, TencentCloudSDKException):
|
|
668
|
+
raise
|
|
669
|
+
else:
|
|
670
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
671
|
+
|
|
672
|
+
|
|
650
673
|
def DescribeDbAssetInfo(self, request):
|
|
651
674
|
"""db资产详情
|
|
652
675
|
|