tencentcloud-sdk-python 3.0.1248__py2.py3-none-any.whl → 3.0.1250__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/cbs/v20170312/models.py +3 -3
- tencentcloud/cdn/v20180606/models.py +1 -1
- tencentcloud/cdwch/v20200915/models.py +26 -0
- tencentcloud/clb/v20180317/models.py +10 -5
- tencentcloud/cls/v20201016/models.py +81 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +1 -1
- tencentcloud/cynosdb/v20190107/models.py +146 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +388 -0
- tencentcloud/dsgc/v20190723/models.py +190 -26
- tencentcloud/emr/v20190103/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +43 -21
- tencentcloud/ess/v20201111/models.py +126 -15
- tencentcloud/essbasic/v20210526/essbasic_client.py +35 -15
- tencentcloud/essbasic/v20210526/models.py +144 -4
- tencentcloud/faceid/v20180301/models.py +1 -1
- tencentcloud/iotexplorer/v20190423/errorcodes.py +6 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
- tencentcloud/iotexplorer/v20190423/models.py +293 -0
- tencentcloud/lke/v20231130/models.py +1 -2
- tencentcloud/mongodb/v20190725/models.py +3 -4
- tencentcloud/mps/v20190612/errorcodes.py +3 -0
- tencentcloud/mps/v20190612/models.py +981 -17
- tencentcloud/mps/v20190612/mps_client.py +93 -0
- tencentcloud/oceanus/v20190422/models.py +146 -0
- tencentcloud/oceanus/v20190422/oceanus_client.py +23 -0
- tencentcloud/redis/v20180412/models.py +98 -1
- tencentcloud/redis/v20180412/redis_client.py +24 -1
- tencentcloud/tcss/v20201101/tcss_client.py +15 -5
- tencentcloud/tke/v20180525/models.py +0 -106
- tencentcloud/tke/v20180525/tke_client.py +0 -25
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/tms/v20201229/models.py +1 -1
- tencentcloud/trtc/v20190722/models.py +24 -5
- tencentcloud/vod/v20180717/vod_client.py +1 -0
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +16 -4
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/waf/v20180125/models.py +1456 -515
- tencentcloud/waf/v20180125/waf_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -4290,15 +4290,15 @@ class DiskConfig(AbstractModel):
|
|
4290
4290
|
|
4291
4291
|
|
4292
4292
|
class Filter(AbstractModel):
|
4293
|
-
"""
|
4293
|
+
"""过滤条件
|
4294
4294
|
|
4295
4295
|
"""
|
4296
4296
|
|
4297
4297
|
def __init__(self):
|
4298
4298
|
r"""
|
4299
|
-
:param _Name:
|
4299
|
+
:param _Name: 过滤键的名称
|
4300
4300
|
:type Name: str
|
4301
|
-
:param _Values:
|
4301
|
+
:param _Values: 一个或者多个过滤值
|
4302
4302
|
:type Values: list of str
|
4303
4303
|
"""
|
4304
4304
|
self._Name = None
|
@@ -14448,7 +14448,7 @@ class DomainFilter(AbstractModel):
|
|
14448
14448
|
- originPullProtocol:回源协议类型,支持http,follow或https。
|
14449
14449
|
- tagKey:标签键。
|
14450
14450
|
:type Name: str
|
14451
|
-
:param _Value:
|
14451
|
+
:param _Value: 过滤字段值,默认最多传 5 个。当 Name 是 origin/domain 且 Fuzzy 传 true,最多传 1 个。
|
14452
14452
|
:type Value: list of str
|
14453
14453
|
:param _Fuzzy: 是否启用模糊查询,仅支持过滤字段名为origin,domain。
|
14454
14454
|
模糊查询时,Value长度最大为1,否则Value长度最大为5。
|
@@ -3522,6 +3522,12 @@ Modify 集群变更中;
|
|
3522
3522
|
:param _Details: 实例扩展信息
|
3523
3523
|
注意:此字段可能返回 null,表示取不到有效值。
|
3524
3524
|
:type Details: :class:`tencentcloud.cdwch.v20200915.models.InstanceDetail`
|
3525
|
+
:param _IsWhiteSGs: 安全组白名单
|
3526
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3527
|
+
:type IsWhiteSGs: bool
|
3528
|
+
:param _BindSGs: 绑定的安全组
|
3529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3530
|
+
:type BindSGs: list of str
|
3525
3531
|
"""
|
3526
3532
|
self._InstanceId = None
|
3527
3533
|
self._InstanceName = None
|
@@ -3573,6 +3579,8 @@ Modify 集群变更中;
|
|
3573
3579
|
self._SecondaryZoneInfo = None
|
3574
3580
|
self._ClickHouseKeeper = None
|
3575
3581
|
self._Details = None
|
3582
|
+
self._IsWhiteSGs = None
|
3583
|
+
self._BindSGs = None
|
3576
3584
|
|
3577
3585
|
@property
|
3578
3586
|
def InstanceId(self):
|
@@ -3974,6 +3982,22 @@ Modify 集群变更中;
|
|
3974
3982
|
def Details(self, Details):
|
3975
3983
|
self._Details = Details
|
3976
3984
|
|
3985
|
+
@property
|
3986
|
+
def IsWhiteSGs(self):
|
3987
|
+
return self._IsWhiteSGs
|
3988
|
+
|
3989
|
+
@IsWhiteSGs.setter
|
3990
|
+
def IsWhiteSGs(self, IsWhiteSGs):
|
3991
|
+
self._IsWhiteSGs = IsWhiteSGs
|
3992
|
+
|
3993
|
+
@property
|
3994
|
+
def BindSGs(self):
|
3995
|
+
return self._BindSGs
|
3996
|
+
|
3997
|
+
@BindSGs.setter
|
3998
|
+
def BindSGs(self, BindSGs):
|
3999
|
+
self._BindSGs = BindSGs
|
4000
|
+
|
3977
4001
|
|
3978
4002
|
def _deserialize(self, params):
|
3979
4003
|
self._InstanceId = params.get("InstanceId")
|
@@ -4044,6 +4068,8 @@ Modify 集群变更中;
|
|
4044
4068
|
if params.get("Details") is not None:
|
4045
4069
|
self._Details = InstanceDetail()
|
4046
4070
|
self._Details._deserialize(params.get("Details"))
|
4071
|
+
self._IsWhiteSGs = params.get("IsWhiteSGs")
|
4072
|
+
self._BindSGs = params.get("BindSGs")
|
4047
4073
|
memeber_set = set(params.keys())
|
4048
4074
|
for name, value in vars(self).items():
|
4049
4075
|
property_name = name[1:]
|
@@ -16163,15 +16163,20 @@ class SetCustomizedConfigForLoadBalancerRequest(AbstractModel):
|
|
16163
16163
|
|
16164
16164
|
def __init__(self):
|
16165
16165
|
r"""
|
16166
|
-
:param _OperationType:
|
16166
|
+
:param _OperationType: 操作类型。
|
16167
|
+
- ADD:添加
|
16168
|
+
- DELETE:删除
|
16169
|
+
- UPDATE:修改
|
16170
|
+
- BIND:绑定
|
16171
|
+
- UNBIND:解绑
|
16167
16172
|
:type OperationType: str
|
16168
|
-
:param _UconfigId:
|
16173
|
+
:param _UconfigId: 个性化配置ID。除了创建个性化配置外,必传此字段,如:pz-1234abcd
|
16169
16174
|
:type UconfigId: str
|
16170
|
-
:param _ConfigContent:
|
16175
|
+
:param _ConfigContent: 个性化配置内容。创建个性化配置或修改个性化配置的内容时,必传此字段
|
16171
16176
|
:type ConfigContent: str
|
16172
|
-
:param _ConfigName:
|
16177
|
+
:param _ConfigName: 个性化配置名称。创建个性化配置或修改个性化配置的名字时,必传此字段
|
16173
16178
|
:type ConfigName: str
|
16174
|
-
:param _LoadBalancerIds:
|
16179
|
+
:param _LoadBalancerIds: 负载均衡实例ID。绑定解绑时,必传此字段
|
16175
16180
|
:type LoadBalancerIds: list of str
|
16176
16181
|
"""
|
16177
16182
|
self._OperationType = None
|
@@ -91,6 +91,66 @@ class AddMachineGroupInfoResponse(AbstractModel):
|
|
91
91
|
self._RequestId = params.get("RequestId")
|
92
92
|
|
93
93
|
|
94
|
+
class AdvanceFilterRuleInfo(AbstractModel):
|
95
|
+
"""高级过滤规则
|
96
|
+
|
97
|
+
"""
|
98
|
+
|
99
|
+
def __init__(self):
|
100
|
+
r"""
|
101
|
+
:param _Key: 过滤字段
|
102
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
103
|
+
:type Key: str
|
104
|
+
:param _Rule: 过滤规则,0:等于,1:字段存在,2:字段不存在
|
105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
106
|
+
:type Rule: int
|
107
|
+
:param _Value: 过滤值
|
108
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
109
|
+
:type Value: str
|
110
|
+
"""
|
111
|
+
self._Key = None
|
112
|
+
self._Rule = None
|
113
|
+
self._Value = None
|
114
|
+
|
115
|
+
@property
|
116
|
+
def Key(self):
|
117
|
+
return self._Key
|
118
|
+
|
119
|
+
@Key.setter
|
120
|
+
def Key(self, Key):
|
121
|
+
self._Key = Key
|
122
|
+
|
123
|
+
@property
|
124
|
+
def Rule(self):
|
125
|
+
return self._Rule
|
126
|
+
|
127
|
+
@Rule.setter
|
128
|
+
def Rule(self, Rule):
|
129
|
+
self._Rule = Rule
|
130
|
+
|
131
|
+
@property
|
132
|
+
def Value(self):
|
133
|
+
return self._Value
|
134
|
+
|
135
|
+
@Value.setter
|
136
|
+
def Value(self, Value):
|
137
|
+
self._Value = Value
|
138
|
+
|
139
|
+
|
140
|
+
def _deserialize(self, params):
|
141
|
+
self._Key = params.get("Key")
|
142
|
+
self._Rule = params.get("Rule")
|
143
|
+
self._Value = params.get("Value")
|
144
|
+
memeber_set = set(params.keys())
|
145
|
+
for name, value in vars(self).items():
|
146
|
+
property_name = name[1:]
|
147
|
+
if property_name in memeber_set:
|
148
|
+
memeber_set.remove(property_name)
|
149
|
+
if len(memeber_set) > 0:
|
150
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
151
|
+
|
152
|
+
|
153
|
+
|
94
154
|
class AlarmAnalysisConfig(AbstractModel):
|
95
155
|
"""告警多维分析一些配置信息
|
96
156
|
|
@@ -13048,6 +13108,12 @@ auto:自动匹配rfc3164或者rfc5424其中一种协议。
|
|
13048
13108
|
:type MetaTags: list of MetaTagInfo
|
13049
13109
|
:param _EventLogRules: Windows事件日志采集规则,只有在LogType为windows_event_log时生效,其余类型无需填写。
|
13050
13110
|
:type EventLogRules: list of EventLog
|
13111
|
+
:param _AdvanceFilterRules: 日志过滤规则列表(新版)。
|
13112
|
+
注意:
|
13113
|
+
- 2.9.3以下版本LogListener不支持, 请使用FilterKeyRegex配置日志过滤规则。
|
13114
|
+
- 自建k8s采集配置(CreateConfigExtra、ModifyConfigExtra)不支持此字段。
|
13115
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13116
|
+
:type AdvanceFilterRules: list of AdvanceFilterRuleInfo
|
13051
13117
|
"""
|
13052
13118
|
self._TimeKey = None
|
13053
13119
|
self._TimeFormat = None
|
@@ -13068,6 +13134,7 @@ auto:自动匹配rfc3164或者rfc5424其中一种协议。
|
|
13068
13134
|
self._PathRegex = None
|
13069
13135
|
self._MetaTags = None
|
13070
13136
|
self._EventLogRules = None
|
13137
|
+
self._AdvanceFilterRules = None
|
13071
13138
|
|
13072
13139
|
@property
|
13073
13140
|
def TimeKey(self):
|
@@ -13221,6 +13288,14 @@ auto:自动匹配rfc3164或者rfc5424其中一种协议。
|
|
13221
13288
|
def EventLogRules(self, EventLogRules):
|
13222
13289
|
self._EventLogRules = EventLogRules
|
13223
13290
|
|
13291
|
+
@property
|
13292
|
+
def AdvanceFilterRules(self):
|
13293
|
+
return self._AdvanceFilterRules
|
13294
|
+
|
13295
|
+
@AdvanceFilterRules.setter
|
13296
|
+
def AdvanceFilterRules(self, AdvanceFilterRules):
|
13297
|
+
self._AdvanceFilterRules = AdvanceFilterRules
|
13298
|
+
|
13224
13299
|
|
13225
13300
|
def _deserialize(self, params):
|
13226
13301
|
self._TimeKey = params.get("TimeKey")
|
@@ -13257,6 +13332,12 @@ auto:自动匹配rfc3164或者rfc5424其中一种协议。
|
|
13257
13332
|
obj = EventLog()
|
13258
13333
|
obj._deserialize(item)
|
13259
13334
|
self._EventLogRules.append(obj)
|
13335
|
+
if params.get("AdvanceFilterRules") is not None:
|
13336
|
+
self._AdvanceFilterRules = []
|
13337
|
+
for item in params.get("AdvanceFilterRules"):
|
13338
|
+
obj = AdvanceFilterRuleInfo()
|
13339
|
+
obj._deserialize(item)
|
13340
|
+
self._AdvanceFilterRules.append(obj)
|
13260
13341
|
memeber_set = set(params.keys())
|
13261
13342
|
for name, value in vars(self).items():
|
13262
13343
|
property_name = name[1:]
|
@@ -1798,7 +1798,7 @@ class CynosdbClient(AbstractClient):
|
|
1798
1798
|
|
1799
1799
|
|
1800
1800
|
def DescribeTasks(self, request):
|
1801
|
-
"""
|
1801
|
+
"""本接口(DescribeTasks)用于查询任务列表。
|
1802
1802
|
|
1803
1803
|
:param request: Request instance for DescribeTasks.
|
1804
1804
|
:type request: :class:`tencentcloud.cynosdb.v20190107.models.DescribeTasksRequest`
|
@@ -2617,10 +2617,14 @@ class BizTaskInfo(AbstractModel):
|
|
2617
2617
|
|
2618
2618
|
@property
|
2619
2619
|
def ModifyParamsData(self):
|
2620
|
+
warnings.warn("parameter `ModifyParamsData` is deprecated", DeprecationWarning)
|
2621
|
+
|
2620
2622
|
return self._ModifyParamsData
|
2621
2623
|
|
2622
2624
|
@ModifyParamsData.setter
|
2623
2625
|
def ModifyParamsData(self, ModifyParamsData):
|
2626
|
+
warnings.warn("parameter `ModifyParamsData` is deprecated", DeprecationWarning)
|
2627
|
+
|
2624
2628
|
self._ModifyParamsData = ModifyParamsData
|
2625
2629
|
|
2626
2630
|
@property
|
@@ -6123,6 +6127,66 @@ class CreateResourcePackageResponse(AbstractModel):
|
|
6123
6127
|
self._RequestId = params.get("RequestId")
|
6124
6128
|
|
6125
6129
|
|
6130
|
+
class CrossRegionBackupItem(AbstractModel):
|
6131
|
+
"""跨地域备份各地域备份信息
|
6132
|
+
|
6133
|
+
"""
|
6134
|
+
|
6135
|
+
def __init__(self):
|
6136
|
+
r"""
|
6137
|
+
:param _CrossRegion: 备份的目标地域
|
6138
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6139
|
+
:type CrossRegion: str
|
6140
|
+
:param _BackupId: 目标地域的备份任务ID
|
6141
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6142
|
+
:type BackupId: str
|
6143
|
+
:param _BackupStatus: 目标地域的备份状态
|
6144
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6145
|
+
:type BackupStatus: str
|
6146
|
+
"""
|
6147
|
+
self._CrossRegion = None
|
6148
|
+
self._BackupId = None
|
6149
|
+
self._BackupStatus = None
|
6150
|
+
|
6151
|
+
@property
|
6152
|
+
def CrossRegion(self):
|
6153
|
+
return self._CrossRegion
|
6154
|
+
|
6155
|
+
@CrossRegion.setter
|
6156
|
+
def CrossRegion(self, CrossRegion):
|
6157
|
+
self._CrossRegion = CrossRegion
|
6158
|
+
|
6159
|
+
@property
|
6160
|
+
def BackupId(self):
|
6161
|
+
return self._BackupId
|
6162
|
+
|
6163
|
+
@BackupId.setter
|
6164
|
+
def BackupId(self, BackupId):
|
6165
|
+
self._BackupId = BackupId
|
6166
|
+
|
6167
|
+
@property
|
6168
|
+
def BackupStatus(self):
|
6169
|
+
return self._BackupStatus
|
6170
|
+
|
6171
|
+
@BackupStatus.setter
|
6172
|
+
def BackupStatus(self, BackupStatus):
|
6173
|
+
self._BackupStatus = BackupStatus
|
6174
|
+
|
6175
|
+
|
6176
|
+
def _deserialize(self, params):
|
6177
|
+
self._CrossRegion = params.get("CrossRegion")
|
6178
|
+
self._BackupId = params.get("BackupId")
|
6179
|
+
self._BackupStatus = params.get("BackupStatus")
|
6180
|
+
memeber_set = set(params.keys())
|
6181
|
+
for name, value in vars(self).items():
|
6182
|
+
property_name = name[1:]
|
6183
|
+
if property_name in memeber_set:
|
6184
|
+
memeber_set.remove(property_name)
|
6185
|
+
if len(memeber_set) > 0:
|
6186
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6187
|
+
|
6188
|
+
|
6189
|
+
|
6126
6190
|
class CynosdbCluster(AbstractModel):
|
6127
6191
|
"""集群信息
|
6128
6192
|
|
@@ -16285,11 +16349,14 @@ class DescribeSupportProxyVersionResponse(AbstractModel):
|
|
16285
16349
|
:param _CurrentProxyVersion: 当前proxy版本号
|
16286
16350
|
注意:此字段可能返回 null,表示取不到有效值。
|
16287
16351
|
:type CurrentProxyVersion: str
|
16352
|
+
:param _SupportProxyVersionDetail: 代理版本详情
|
16353
|
+
:type SupportProxyVersionDetail: list of ProxyVersionInfo
|
16288
16354
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16289
16355
|
:type RequestId: str
|
16290
16356
|
"""
|
16291
16357
|
self._SupportProxyVersions = None
|
16292
16358
|
self._CurrentProxyVersion = None
|
16359
|
+
self._SupportProxyVersionDetail = None
|
16293
16360
|
self._RequestId = None
|
16294
16361
|
|
16295
16362
|
@property
|
@@ -16308,6 +16375,14 @@ class DescribeSupportProxyVersionResponse(AbstractModel):
|
|
16308
16375
|
def CurrentProxyVersion(self, CurrentProxyVersion):
|
16309
16376
|
self._CurrentProxyVersion = CurrentProxyVersion
|
16310
16377
|
|
16378
|
+
@property
|
16379
|
+
def SupportProxyVersionDetail(self):
|
16380
|
+
return self._SupportProxyVersionDetail
|
16381
|
+
|
16382
|
+
@SupportProxyVersionDetail.setter
|
16383
|
+
def SupportProxyVersionDetail(self, SupportProxyVersionDetail):
|
16384
|
+
self._SupportProxyVersionDetail = SupportProxyVersionDetail
|
16385
|
+
|
16311
16386
|
@property
|
16312
16387
|
def RequestId(self):
|
16313
16388
|
return self._RequestId
|
@@ -16320,6 +16395,12 @@ class DescribeSupportProxyVersionResponse(AbstractModel):
|
|
16320
16395
|
def _deserialize(self, params):
|
16321
16396
|
self._SupportProxyVersions = params.get("SupportProxyVersions")
|
16322
16397
|
self._CurrentProxyVersion = params.get("CurrentProxyVersion")
|
16398
|
+
if params.get("SupportProxyVersionDetail") is not None:
|
16399
|
+
self._SupportProxyVersionDetail = []
|
16400
|
+
for item in params.get("SupportProxyVersionDetail"):
|
16401
|
+
obj = ProxyVersionInfo()
|
16402
|
+
obj._deserialize(item)
|
16403
|
+
self._SupportProxyVersionDetail.append(obj)
|
16323
16404
|
self._RequestId = params.get("RequestId")
|
16324
16405
|
|
16325
16406
|
|
@@ -19470,10 +19551,14 @@ class ManualBackupData(AbstractModel):
|
|
19470
19551
|
:type BackupMethod: str
|
19471
19552
|
:param _SnapshotTime: 备份时间
|
19472
19553
|
:type SnapshotTime: str
|
19554
|
+
:param _CrossRegionBackupInfos: 跨地域备份项详细信息
|
19555
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19556
|
+
:type CrossRegionBackupInfos: list of CrossRegionBackupItem
|
19473
19557
|
"""
|
19474
19558
|
self._BackupType = None
|
19475
19559
|
self._BackupMethod = None
|
19476
19560
|
self._SnapshotTime = None
|
19561
|
+
self._CrossRegionBackupInfos = None
|
19477
19562
|
|
19478
19563
|
@property
|
19479
19564
|
def BackupType(self):
|
@@ -19499,11 +19584,25 @@ class ManualBackupData(AbstractModel):
|
|
19499
19584
|
def SnapshotTime(self, SnapshotTime):
|
19500
19585
|
self._SnapshotTime = SnapshotTime
|
19501
19586
|
|
19587
|
+
@property
|
19588
|
+
def CrossRegionBackupInfos(self):
|
19589
|
+
return self._CrossRegionBackupInfos
|
19590
|
+
|
19591
|
+
@CrossRegionBackupInfos.setter
|
19592
|
+
def CrossRegionBackupInfos(self, CrossRegionBackupInfos):
|
19593
|
+
self._CrossRegionBackupInfos = CrossRegionBackupInfos
|
19594
|
+
|
19502
19595
|
|
19503
19596
|
def _deserialize(self, params):
|
19504
19597
|
self._BackupType = params.get("BackupType")
|
19505
19598
|
self._BackupMethod = params.get("BackupMethod")
|
19506
19599
|
self._SnapshotTime = params.get("SnapshotTime")
|
19600
|
+
if params.get("CrossRegionBackupInfos") is not None:
|
19601
|
+
self._CrossRegionBackupInfos = []
|
19602
|
+
for item in params.get("CrossRegionBackupInfos"):
|
19603
|
+
obj = CrossRegionBackupItem()
|
19604
|
+
obj._deserialize(item)
|
19605
|
+
self._CrossRegionBackupInfos.append(obj)
|
19507
19606
|
memeber_set = set(params.keys())
|
19508
19607
|
for name, value in vars(self).items():
|
19509
19608
|
property_name = name[1:]
|
@@ -26337,6 +26436,53 @@ class ProxySpec(AbstractModel):
|
|
26337
26436
|
|
26338
26437
|
|
26339
26438
|
|
26439
|
+
class ProxyVersionInfo(AbstractModel):
|
26440
|
+
"""TDSQL-C MySQL支持的proxy版本信息
|
26441
|
+
|
26442
|
+
"""
|
26443
|
+
|
26444
|
+
def __init__(self):
|
26445
|
+
r"""
|
26446
|
+
:param _ProxyVersion: proxy版本号
|
26447
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
26448
|
+
:type ProxyVersion: str
|
26449
|
+
:param _ProxyVersionType: 版本描述:GA:稳定版 BETA:尝鲜版,DEPRECATED:过旧,
|
26450
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
26451
|
+
:type ProxyVersionType: str
|
26452
|
+
"""
|
26453
|
+
self._ProxyVersion = None
|
26454
|
+
self._ProxyVersionType = None
|
26455
|
+
|
26456
|
+
@property
|
26457
|
+
def ProxyVersion(self):
|
26458
|
+
return self._ProxyVersion
|
26459
|
+
|
26460
|
+
@ProxyVersion.setter
|
26461
|
+
def ProxyVersion(self, ProxyVersion):
|
26462
|
+
self._ProxyVersion = ProxyVersion
|
26463
|
+
|
26464
|
+
@property
|
26465
|
+
def ProxyVersionType(self):
|
26466
|
+
return self._ProxyVersionType
|
26467
|
+
|
26468
|
+
@ProxyVersionType.setter
|
26469
|
+
def ProxyVersionType(self, ProxyVersionType):
|
26470
|
+
self._ProxyVersionType = ProxyVersionType
|
26471
|
+
|
26472
|
+
|
26473
|
+
def _deserialize(self, params):
|
26474
|
+
self._ProxyVersion = params.get("ProxyVersion")
|
26475
|
+
self._ProxyVersionType = params.get("ProxyVersionType")
|
26476
|
+
memeber_set = set(params.keys())
|
26477
|
+
for name, value in vars(self).items():
|
26478
|
+
property_name = name[1:]
|
26479
|
+
if property_name in memeber_set:
|
26480
|
+
memeber_set.remove(property_name)
|
26481
|
+
if len(memeber_set) > 0:
|
26482
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
26483
|
+
|
26484
|
+
|
26485
|
+
|
26340
26486
|
class ProxyZone(AbstractModel):
|
26341
26487
|
"""proxy节点可用区内个数
|
26342
26488
|
|
@@ -2165,6 +2165,29 @@ class DlcClient(AbstractClient):
|
|
2165
2165
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2166
2166
|
|
2167
2167
|
|
2168
|
+
def DescribeTasksAnalysis(self, request):
|
2169
|
+
"""该接口用于洞察分析列表
|
2170
|
+
|
2171
|
+
:param request: Request instance for DescribeTasksAnalysis.
|
2172
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTasksAnalysisRequest`
|
2173
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTasksAnalysisResponse`
|
2174
|
+
|
2175
|
+
"""
|
2176
|
+
try:
|
2177
|
+
params = request._serialize()
|
2178
|
+
headers = request.headers
|
2179
|
+
body = self.call("DescribeTasksAnalysis", params, headers=headers)
|
2180
|
+
response = json.loads(body)
|
2181
|
+
model = models.DescribeTasksAnalysisResponse()
|
2182
|
+
model._deserialize(response["Response"])
|
2183
|
+
return model
|
2184
|
+
except Exception as e:
|
2185
|
+
if isinstance(e, TencentCloudSDKException):
|
2186
|
+
raise
|
2187
|
+
else:
|
2188
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2189
|
+
|
2190
|
+
|
2168
2191
|
def DescribeTasksCostInfo(self, request):
|
2169
2192
|
"""该接口(DescribeTasksCostInfo)用于查询任务消耗
|
2170
2193
|
|