tencentcloud-sdk-python 3.0.1377__py2.py3-none-any.whl → 3.0.1379__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 +34 -4
- tencentcloud/autoscaling/v20180419/models.py +45 -16
- tencentcloud/batch/v20170312/batch_client.py +3 -3
- tencentcloud/batch/v20170312/models.py +230 -168
- tencentcloud/billing/v20180709/billing_client.py +322 -0
- tencentcloud/billing/v20180709/errorcodes.py +9 -0
- tencentcloud/billing/v20180709/models.py +4894 -2542
- tencentcloud/cbs/v20170312/cbs_client.py +1 -1
- tencentcloud/cbs/v20170312/models.py +18 -18
- tencentcloud/clb/v20180317/clb_client.py +7 -7
- tencentcloud/clb/v20180317/models.py +51 -41
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +368 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
- tencentcloud/dnspod/v20210323/models.py +503 -0
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +68 -44
- tencentcloud/hunyuan/v20230901/models.py +260 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +1 -1
- tencentcloud/lighthouse/v20200324/models.py +2 -2
- tencentcloud/lke/v20231130/models.py +192 -2
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +211 -2
- tencentcloud/postgres/v20170312/models.py +12 -4
- tencentcloud/tag/v20180813/models.py +8 -8
- tencentcloud/tcb/v20180608/models.py +34 -4
- tencentcloud/tdmq/v20200217/errorcodes.py +27 -0
- tencentcloud/teo/v20220901/models.py +0 -20
- tencentcloud/thpc/v20211109/models.py +2 -2
- tencentcloud/thpc/v20220401/models.py +4 -4
- tencentcloud/thpc/v20230321/errorcodes.py +9 -0
- tencentcloud/thpc/v20230321/models.py +85 -8
- tencentcloud/thpc/v20230321/thpc_client.py +23 -0
- tencentcloud/tione/v20211111/models.py +274 -0
- tencentcloud/tke/v20180525/models.py +10 -0
- tencentcloud/tmt/v20180321/errorcodes.py +3 -0
- tencentcloud/tmt/v20180321/models.py +296 -1
- tencentcloud/tmt/v20180321/tmt_client.py +28 -0
- tencentcloud/trtc/v20190722/models.py +15 -0
- tencentcloud/vod/v20180717/models.py +2 -2
- tencentcloud/vpc/v20170312/models.py +24 -18
- tencentcloud/waf/v20180125/models.py +15 -0
- tencentcloud/wedata/v20210820/errorcodes.py +9 -0
- tencentcloud/wedata/v20210820/models.py +1078 -0
- tencentcloud/wedata/v20210820/wedata_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/RECORD +51 -51
- {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/top_level.txt +0 -0
@@ -1737,6 +1737,100 @@ class CancelDBAutonomyActionResponse(AbstractModel):
|
|
1737
1737
|
self._RequestId = params.get("RequestId")
|
1738
1738
|
|
1739
1739
|
|
1740
|
+
class CancelDBAutonomyEventRequest(AbstractModel):
|
1741
|
+
"""CancelDBAutonomyEvent请求参数结构体
|
1742
|
+
|
1743
|
+
"""
|
1744
|
+
|
1745
|
+
def __init__(self):
|
1746
|
+
r"""
|
1747
|
+
:param _EventId: 自治事件ID。
|
1748
|
+
:type EventId: int
|
1749
|
+
:param _InstanceId: 实列ID。
|
1750
|
+
:type InstanceId: str
|
1751
|
+
:param _Product: 服务产品类型,支持值包括: "redis" - 云数据库 Redis。
|
1752
|
+
:type Product: str
|
1753
|
+
"""
|
1754
|
+
self._EventId = None
|
1755
|
+
self._InstanceId = None
|
1756
|
+
self._Product = None
|
1757
|
+
|
1758
|
+
@property
|
1759
|
+
def EventId(self):
|
1760
|
+
"""自治事件ID。
|
1761
|
+
:rtype: int
|
1762
|
+
"""
|
1763
|
+
return self._EventId
|
1764
|
+
|
1765
|
+
@EventId.setter
|
1766
|
+
def EventId(self, EventId):
|
1767
|
+
self._EventId = EventId
|
1768
|
+
|
1769
|
+
@property
|
1770
|
+
def InstanceId(self):
|
1771
|
+
"""实列ID。
|
1772
|
+
:rtype: str
|
1773
|
+
"""
|
1774
|
+
return self._InstanceId
|
1775
|
+
|
1776
|
+
@InstanceId.setter
|
1777
|
+
def InstanceId(self, InstanceId):
|
1778
|
+
self._InstanceId = InstanceId
|
1779
|
+
|
1780
|
+
@property
|
1781
|
+
def Product(self):
|
1782
|
+
"""服务产品类型,支持值包括: "redis" - 云数据库 Redis。
|
1783
|
+
:rtype: str
|
1784
|
+
"""
|
1785
|
+
return self._Product
|
1786
|
+
|
1787
|
+
@Product.setter
|
1788
|
+
def Product(self, Product):
|
1789
|
+
self._Product = Product
|
1790
|
+
|
1791
|
+
|
1792
|
+
def _deserialize(self, params):
|
1793
|
+
self._EventId = params.get("EventId")
|
1794
|
+
self._InstanceId = params.get("InstanceId")
|
1795
|
+
self._Product = params.get("Product")
|
1796
|
+
memeber_set = set(params.keys())
|
1797
|
+
for name, value in vars(self).items():
|
1798
|
+
property_name = name[1:]
|
1799
|
+
if property_name in memeber_set:
|
1800
|
+
memeber_set.remove(property_name)
|
1801
|
+
if len(memeber_set) > 0:
|
1802
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1803
|
+
|
1804
|
+
|
1805
|
+
|
1806
|
+
class CancelDBAutonomyEventResponse(AbstractModel):
|
1807
|
+
"""CancelDBAutonomyEvent返回参数结构体
|
1808
|
+
|
1809
|
+
"""
|
1810
|
+
|
1811
|
+
def __init__(self):
|
1812
|
+
r"""
|
1813
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1814
|
+
:type RequestId: str
|
1815
|
+
"""
|
1816
|
+
self._RequestId = None
|
1817
|
+
|
1818
|
+
@property
|
1819
|
+
def RequestId(self):
|
1820
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1821
|
+
:rtype: str
|
1822
|
+
"""
|
1823
|
+
return self._RequestId
|
1824
|
+
|
1825
|
+
@RequestId.setter
|
1826
|
+
def RequestId(self, RequestId):
|
1827
|
+
self._RequestId = RequestId
|
1828
|
+
|
1829
|
+
|
1830
|
+
def _deserialize(self, params):
|
1831
|
+
self._RequestId = params.get("RequestId")
|
1832
|
+
|
1833
|
+
|
1740
1834
|
class CancelKillTaskRequest(AbstractModel):
|
1741
1835
|
"""CancelKillTask请求参数结构体
|
1742
1836
|
|
@@ -5073,6 +5167,280 @@ class DescribeAuditLogFilesResponse(AbstractModel):
|
|
5073
5167
|
self._RequestId = params.get("RequestId")
|
5074
5168
|
|
5075
5169
|
|
5170
|
+
class DescribeDBAutonomyActionRequest(AbstractModel):
|
5171
|
+
"""DescribeDBAutonomyAction请求参数结构体
|
5172
|
+
|
5173
|
+
"""
|
5174
|
+
|
5175
|
+
def __init__(self):
|
5176
|
+
r"""
|
5177
|
+
:param _ActionId: 自治任务ID。
|
5178
|
+
:type ActionId: int
|
5179
|
+
:param _InstanceId: 实列ID。
|
5180
|
+
:type InstanceId: str
|
5181
|
+
:param _Product: 服务产品类型,支持值包括: "redis" - 云数据库 Redis。
|
5182
|
+
:type Product: str
|
5183
|
+
"""
|
5184
|
+
self._ActionId = None
|
5185
|
+
self._InstanceId = None
|
5186
|
+
self._Product = None
|
5187
|
+
|
5188
|
+
@property
|
5189
|
+
def ActionId(self):
|
5190
|
+
"""自治任务ID。
|
5191
|
+
:rtype: int
|
5192
|
+
"""
|
5193
|
+
return self._ActionId
|
5194
|
+
|
5195
|
+
@ActionId.setter
|
5196
|
+
def ActionId(self, ActionId):
|
5197
|
+
self._ActionId = ActionId
|
5198
|
+
|
5199
|
+
@property
|
5200
|
+
def InstanceId(self):
|
5201
|
+
"""实列ID。
|
5202
|
+
:rtype: str
|
5203
|
+
"""
|
5204
|
+
return self._InstanceId
|
5205
|
+
|
5206
|
+
@InstanceId.setter
|
5207
|
+
def InstanceId(self, InstanceId):
|
5208
|
+
self._InstanceId = InstanceId
|
5209
|
+
|
5210
|
+
@property
|
5211
|
+
def Product(self):
|
5212
|
+
"""服务产品类型,支持值包括: "redis" - 云数据库 Redis。
|
5213
|
+
:rtype: str
|
5214
|
+
"""
|
5215
|
+
return self._Product
|
5216
|
+
|
5217
|
+
@Product.setter
|
5218
|
+
def Product(self, Product):
|
5219
|
+
self._Product = Product
|
5220
|
+
|
5221
|
+
|
5222
|
+
def _deserialize(self, params):
|
5223
|
+
self._ActionId = params.get("ActionId")
|
5224
|
+
self._InstanceId = params.get("InstanceId")
|
5225
|
+
self._Product = params.get("Product")
|
5226
|
+
memeber_set = set(params.keys())
|
5227
|
+
for name, value in vars(self).items():
|
5228
|
+
property_name = name[1:]
|
5229
|
+
if property_name in memeber_set:
|
5230
|
+
memeber_set.remove(property_name)
|
5231
|
+
if len(memeber_set) > 0:
|
5232
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5233
|
+
|
5234
|
+
|
5235
|
+
|
5236
|
+
class DescribeDBAutonomyActionResponse(AbstractModel):
|
5237
|
+
"""DescribeDBAutonomyAction返回参数结构体
|
5238
|
+
|
5239
|
+
"""
|
5240
|
+
|
5241
|
+
def __init__(self):
|
5242
|
+
r"""
|
5243
|
+
:param _ActionId: 自治任务ID。
|
5244
|
+
:type ActionId: int
|
5245
|
+
:param _EventId: 自治事件ID。
|
5246
|
+
:type EventId: int
|
5247
|
+
:param _TaskId: 任务ID。
|
5248
|
+
:type TaskId: int
|
5249
|
+
:param _Type: 类型:支持RedisAutoScaleUp
|
5250
|
+
:type Type: str
|
5251
|
+
:param _TriggerTime: 自治任务触发时间。
|
5252
|
+
:type TriggerTime: str
|
5253
|
+
:param _CreateTime: 自治任务创建时间。
|
5254
|
+
:type CreateTime: str
|
5255
|
+
:param _UpdateTime: 自治任务更新时间。
|
5256
|
+
:type UpdateTime: str
|
5257
|
+
:param _FinishTime: 自治任务完成时间。
|
5258
|
+
:type FinishTime: str
|
5259
|
+
:param _ExpireTime: 剩余时间,单位:秒。
|
5260
|
+
:type ExpireTime: int
|
5261
|
+
:param _Reason: 触发原因。
|
5262
|
+
:type Reason: str
|
5263
|
+
:param _Status: 自治任务状态:支持 RUNNING,FINISHED,TERMINATED,CANCELLED
|
5264
|
+
:type Status: str
|
5265
|
+
:param _Info: 任务相关的图表等信息。
|
5266
|
+
:type Info: str
|
5267
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5268
|
+
:type RequestId: str
|
5269
|
+
"""
|
5270
|
+
self._ActionId = None
|
5271
|
+
self._EventId = None
|
5272
|
+
self._TaskId = None
|
5273
|
+
self._Type = None
|
5274
|
+
self._TriggerTime = None
|
5275
|
+
self._CreateTime = None
|
5276
|
+
self._UpdateTime = None
|
5277
|
+
self._FinishTime = None
|
5278
|
+
self._ExpireTime = None
|
5279
|
+
self._Reason = None
|
5280
|
+
self._Status = None
|
5281
|
+
self._Info = None
|
5282
|
+
self._RequestId = None
|
5283
|
+
|
5284
|
+
@property
|
5285
|
+
def ActionId(self):
|
5286
|
+
"""自治任务ID。
|
5287
|
+
:rtype: int
|
5288
|
+
"""
|
5289
|
+
return self._ActionId
|
5290
|
+
|
5291
|
+
@ActionId.setter
|
5292
|
+
def ActionId(self, ActionId):
|
5293
|
+
self._ActionId = ActionId
|
5294
|
+
|
5295
|
+
@property
|
5296
|
+
def EventId(self):
|
5297
|
+
"""自治事件ID。
|
5298
|
+
:rtype: int
|
5299
|
+
"""
|
5300
|
+
return self._EventId
|
5301
|
+
|
5302
|
+
@EventId.setter
|
5303
|
+
def EventId(self, EventId):
|
5304
|
+
self._EventId = EventId
|
5305
|
+
|
5306
|
+
@property
|
5307
|
+
def TaskId(self):
|
5308
|
+
"""任务ID。
|
5309
|
+
:rtype: int
|
5310
|
+
"""
|
5311
|
+
return self._TaskId
|
5312
|
+
|
5313
|
+
@TaskId.setter
|
5314
|
+
def TaskId(self, TaskId):
|
5315
|
+
self._TaskId = TaskId
|
5316
|
+
|
5317
|
+
@property
|
5318
|
+
def Type(self):
|
5319
|
+
"""类型:支持RedisAutoScaleUp
|
5320
|
+
:rtype: str
|
5321
|
+
"""
|
5322
|
+
return self._Type
|
5323
|
+
|
5324
|
+
@Type.setter
|
5325
|
+
def Type(self, Type):
|
5326
|
+
self._Type = Type
|
5327
|
+
|
5328
|
+
@property
|
5329
|
+
def TriggerTime(self):
|
5330
|
+
"""自治任务触发时间。
|
5331
|
+
:rtype: str
|
5332
|
+
"""
|
5333
|
+
return self._TriggerTime
|
5334
|
+
|
5335
|
+
@TriggerTime.setter
|
5336
|
+
def TriggerTime(self, TriggerTime):
|
5337
|
+
self._TriggerTime = TriggerTime
|
5338
|
+
|
5339
|
+
@property
|
5340
|
+
def CreateTime(self):
|
5341
|
+
"""自治任务创建时间。
|
5342
|
+
:rtype: str
|
5343
|
+
"""
|
5344
|
+
return self._CreateTime
|
5345
|
+
|
5346
|
+
@CreateTime.setter
|
5347
|
+
def CreateTime(self, CreateTime):
|
5348
|
+
self._CreateTime = CreateTime
|
5349
|
+
|
5350
|
+
@property
|
5351
|
+
def UpdateTime(self):
|
5352
|
+
"""自治任务更新时间。
|
5353
|
+
:rtype: str
|
5354
|
+
"""
|
5355
|
+
return self._UpdateTime
|
5356
|
+
|
5357
|
+
@UpdateTime.setter
|
5358
|
+
def UpdateTime(self, UpdateTime):
|
5359
|
+
self._UpdateTime = UpdateTime
|
5360
|
+
|
5361
|
+
@property
|
5362
|
+
def FinishTime(self):
|
5363
|
+
"""自治任务完成时间。
|
5364
|
+
:rtype: str
|
5365
|
+
"""
|
5366
|
+
return self._FinishTime
|
5367
|
+
|
5368
|
+
@FinishTime.setter
|
5369
|
+
def FinishTime(self, FinishTime):
|
5370
|
+
self._FinishTime = FinishTime
|
5371
|
+
|
5372
|
+
@property
|
5373
|
+
def ExpireTime(self):
|
5374
|
+
"""剩余时间,单位:秒。
|
5375
|
+
:rtype: int
|
5376
|
+
"""
|
5377
|
+
return self._ExpireTime
|
5378
|
+
|
5379
|
+
@ExpireTime.setter
|
5380
|
+
def ExpireTime(self, ExpireTime):
|
5381
|
+
self._ExpireTime = ExpireTime
|
5382
|
+
|
5383
|
+
@property
|
5384
|
+
def Reason(self):
|
5385
|
+
"""触发原因。
|
5386
|
+
:rtype: str
|
5387
|
+
"""
|
5388
|
+
return self._Reason
|
5389
|
+
|
5390
|
+
@Reason.setter
|
5391
|
+
def Reason(self, Reason):
|
5392
|
+
self._Reason = Reason
|
5393
|
+
|
5394
|
+
@property
|
5395
|
+
def Status(self):
|
5396
|
+
"""自治任务状态:支持 RUNNING,FINISHED,TERMINATED,CANCELLED
|
5397
|
+
:rtype: str
|
5398
|
+
"""
|
5399
|
+
return self._Status
|
5400
|
+
|
5401
|
+
@Status.setter
|
5402
|
+
def Status(self, Status):
|
5403
|
+
self._Status = Status
|
5404
|
+
|
5405
|
+
@property
|
5406
|
+
def Info(self):
|
5407
|
+
"""任务相关的图表等信息。
|
5408
|
+
:rtype: str
|
5409
|
+
"""
|
5410
|
+
return self._Info
|
5411
|
+
|
5412
|
+
@Info.setter
|
5413
|
+
def Info(self, Info):
|
5414
|
+
self._Info = Info
|
5415
|
+
|
5416
|
+
@property
|
5417
|
+
def RequestId(self):
|
5418
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5419
|
+
:rtype: str
|
5420
|
+
"""
|
5421
|
+
return self._RequestId
|
5422
|
+
|
5423
|
+
@RequestId.setter
|
5424
|
+
def RequestId(self, RequestId):
|
5425
|
+
self._RequestId = RequestId
|
5426
|
+
|
5427
|
+
|
5428
|
+
def _deserialize(self, params):
|
5429
|
+
self._ActionId = params.get("ActionId")
|
5430
|
+
self._EventId = params.get("EventId")
|
5431
|
+
self._TaskId = params.get("TaskId")
|
5432
|
+
self._Type = params.get("Type")
|
5433
|
+
self._TriggerTime = params.get("TriggerTime")
|
5434
|
+
self._CreateTime = params.get("CreateTime")
|
5435
|
+
self._UpdateTime = params.get("UpdateTime")
|
5436
|
+
self._FinishTime = params.get("FinishTime")
|
5437
|
+
self._ExpireTime = params.get("ExpireTime")
|
5438
|
+
self._Reason = params.get("Reason")
|
5439
|
+
self._Status = params.get("Status")
|
5440
|
+
self._Info = params.get("Info")
|
5441
|
+
self._RequestId = params.get("RequestId")
|
5442
|
+
|
5443
|
+
|
5076
5444
|
class DescribeDBAutonomyActionsRequest(AbstractModel):
|
5077
5445
|
"""DescribeDBAutonomyActions请求参数结构体
|
5078
5446
|
|
@@ -767,6 +767,29 @@ class DnspodClient(AbstractClient):
|
|
767
767
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
768
768
|
|
769
769
|
|
770
|
+
def DescribeDomainAndRecordList(self, request):
|
771
|
+
"""批量操作中搜索域名
|
772
|
+
|
773
|
+
:param request: Request instance for DescribeDomainAndRecordList.
|
774
|
+
:type request: :class:`tencentcloud.dnspod.v20210323.models.DescribeDomainAndRecordListRequest`
|
775
|
+
:rtype: :class:`tencentcloud.dnspod.v20210323.models.DescribeDomainAndRecordListResponse`
|
776
|
+
|
777
|
+
"""
|
778
|
+
try:
|
779
|
+
params = request._serialize()
|
780
|
+
headers = request.headers
|
781
|
+
body = self.call("DescribeDomainAndRecordList", params, headers=headers)
|
782
|
+
response = json.loads(body)
|
783
|
+
model = models.DescribeDomainAndRecordListResponse()
|
784
|
+
model._deserialize(response["Response"])
|
785
|
+
return model
|
786
|
+
except Exception as e:
|
787
|
+
if isinstance(e, TencentCloudSDKException):
|
788
|
+
raise
|
789
|
+
else:
|
790
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
791
|
+
|
792
|
+
|
770
793
|
def DescribeDomainCustomLineList(self, request):
|
771
794
|
"""获取域名的自定义线路列表
|
772
795
|
|