tencentcloud-sdk-python 3.0.1227__py2.py3-none-any.whl → 3.0.1229__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/aiart/v20221229/aiart_client.py +24 -0
- tencentcloud/aiart/v20221229/models.py +173 -0
- tencentcloud/cfg/v20210820/models.py +13 -0
- tencentcloud/ckafka/v20190819/models.py +5 -1
- tencentcloud/cvm/v20170312/cvm_client.py +23 -0
- tencentcloud/cvm/v20170312/errorcodes.py +24 -0
- tencentcloud/cvm/v20170312/models.py +170 -0
- tencentcloud/dc/v20180410/dc_client.py +4 -4
- tencentcloud/dc/v20180410/models.py +6 -7
- tencentcloud/dcdb/v20180411/dcdb_client.py +48 -0
- tencentcloud/dcdb/v20180411/models.py +518 -0
- tencentcloud/dlc/v20210125/dlc_client.py +46 -0
- tencentcloud/dlc/v20210125/models.py +142 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
- tencentcloud/dnspod/v20210323/models.py +185 -0
- tencentcloud/dts/v20211206/errorcodes.py +3 -0
- tencentcloud/emr/v20190103/emr_client.py +142 -0
- tencentcloud/emr/v20190103/errorcodes.py +9 -0
- tencentcloud/emr/v20190103/models.py +2045 -760
- tencentcloud/es/v20180416/es_client.py +23 -0
- tencentcloud/es/v20180416/models.py +240 -0
- tencentcloud/ess/v20201111/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +23 -0
- tencentcloud/ess/v20201111/models.py +231 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +33 -0
- tencentcloud/essbasic/v20210526/models.py +172 -0
- tencentcloud/mariadb/v20170312/errorcodes.py +3 -0
- tencentcloud/mariadb/v20170312/mariadb_client.py +48 -0
- tencentcloud/mariadb/v20170312/models.py +519 -1
- tencentcloud/ocr/v20181119/models.py +14 -6
- tencentcloud/rce/v20201103/rce_client.py +2 -2
- tencentcloud/redis/v20180412/models.py +313 -0
- tencentcloud/redis/v20180412/redis_client.py +46 -0
- tencentcloud/sms/v20190711/errorcodes.py +3 -0
- tencentcloud/sms/v20190711/models.py +2 -2
- tencentcloud/sms/v20210111/errorcodes.py +3 -0
- tencentcloud/sms/v20210111/models.py +2 -2
- tencentcloud/teo/v20220901/models.py +27 -9
- tencentcloud/trtc/v20190722/models.py +13 -0
- tencentcloud/tse/v20201207/models.py +24 -24
- tencentcloud/tsf/v20180326/models.py +51 -0
- tencentcloud/vclm/v20240523/models.py +1 -1
- tencentcloud/vdb/v20230616/errorcodes.py +21 -0
- tencentcloud/vdb/v20230616/models.py +742 -0
- tencentcloud/vdb/v20230616/vdb_client.py +115 -0
- tencentcloud/vpc/v20170312/models.py +8 -5
- tencentcloud/vpc/v20170312/vpc_client.py +2 -2
- tencentcloud/vtc/v20240223/models.py +1 -1
- {tencentcloud_sdk_python-3.0.1227.dist-info → tencentcloud_sdk_python-3.0.1229.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1227.dist-info → tencentcloud_sdk_python-3.0.1229.dist-info}/RECORD +54 -54
- {tencentcloud_sdk_python-3.0.1227.dist-info → tencentcloud_sdk_python-3.0.1229.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1227.dist-info → tencentcloud_sdk_python-3.0.1229.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1227.dist-info → tencentcloud_sdk_python-3.0.1229.dist-info}/top_level.txt +0 -0
@@ -5265,8 +5265,6 @@ class CreateCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
5265
5265
|
- tcp
|
5266
5266
|
- udp
|
5267
5267
|
:type Protocol: str
|
5268
|
-
:param _Path: 请求路径
|
5269
|
-
:type Path: str
|
5270
5268
|
:param _Timeout: 超时时间,单位ms
|
5271
5269
|
:type Timeout: int
|
5272
5270
|
:param _Retries: 重试次数
|
@@ -5280,15 +5278,17 @@ class CreateCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
5280
5278
|
:type UpstreamType: str
|
5281
5279
|
:param _UpstreamInfo: 服务配置信息
|
5282
5280
|
:type UpstreamInfo: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
|
5281
|
+
:param _Path: 请求路径
|
5282
|
+
:type Path: str
|
5283
5283
|
"""
|
5284
5284
|
self._GatewayId = None
|
5285
5285
|
self._Name = None
|
5286
5286
|
self._Protocol = None
|
5287
|
-
self._Path = None
|
5288
5287
|
self._Timeout = None
|
5289
5288
|
self._Retries = None
|
5290
5289
|
self._UpstreamType = None
|
5291
5290
|
self._UpstreamInfo = None
|
5291
|
+
self._Path = None
|
5292
5292
|
|
5293
5293
|
@property
|
5294
5294
|
def GatewayId(self):
|
@@ -5314,14 +5314,6 @@ class CreateCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
5314
5314
|
def Protocol(self, Protocol):
|
5315
5315
|
self._Protocol = Protocol
|
5316
5316
|
|
5317
|
-
@property
|
5318
|
-
def Path(self):
|
5319
|
-
return self._Path
|
5320
|
-
|
5321
|
-
@Path.setter
|
5322
|
-
def Path(self, Path):
|
5323
|
-
self._Path = Path
|
5324
|
-
|
5325
5317
|
@property
|
5326
5318
|
def Timeout(self):
|
5327
5319
|
return self._Timeout
|
@@ -5354,18 +5346,26 @@ class CreateCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
5354
5346
|
def UpstreamInfo(self, UpstreamInfo):
|
5355
5347
|
self._UpstreamInfo = UpstreamInfo
|
5356
5348
|
|
5349
|
+
@property
|
5350
|
+
def Path(self):
|
5351
|
+
return self._Path
|
5352
|
+
|
5353
|
+
@Path.setter
|
5354
|
+
def Path(self, Path):
|
5355
|
+
self._Path = Path
|
5356
|
+
|
5357
5357
|
|
5358
5358
|
def _deserialize(self, params):
|
5359
5359
|
self._GatewayId = params.get("GatewayId")
|
5360
5360
|
self._Name = params.get("Name")
|
5361
5361
|
self._Protocol = params.get("Protocol")
|
5362
|
-
self._Path = params.get("Path")
|
5363
5362
|
self._Timeout = params.get("Timeout")
|
5364
5363
|
self._Retries = params.get("Retries")
|
5365
5364
|
self._UpstreamType = params.get("UpstreamType")
|
5366
5365
|
if params.get("UpstreamInfo") is not None:
|
5367
5366
|
self._UpstreamInfo = KongUpstreamInfo()
|
5368
5367
|
self._UpstreamInfo._deserialize(params.get("UpstreamInfo"))
|
5368
|
+
self._Path = params.get("Path")
|
5369
5369
|
memeber_set = set(params.keys())
|
5370
5370
|
for name, value in vars(self).items():
|
5371
5371
|
property_name = name[1:]
|
@@ -20314,8 +20314,6 @@ class ModifyCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
20314
20314
|
- tcp
|
20315
20315
|
- udp
|
20316
20316
|
:type Protocol: str
|
20317
|
-
:param _Path: 请求路径
|
20318
|
-
:type Path: str
|
20319
20317
|
:param _Timeout: 超时时间,单位ms
|
20320
20318
|
:type Timeout: int
|
20321
20319
|
:param _Retries: 重试次数
|
@@ -20331,16 +20329,18 @@ class ModifyCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
20331
20329
|
:type UpstreamInfo: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
|
20332
20330
|
:param _ID: 服务ID
|
20333
20331
|
:type ID: str
|
20332
|
+
:param _Path: 请求路径
|
20333
|
+
:type Path: str
|
20334
20334
|
"""
|
20335
20335
|
self._GatewayId = None
|
20336
20336
|
self._Name = None
|
20337
20337
|
self._Protocol = None
|
20338
|
-
self._Path = None
|
20339
20338
|
self._Timeout = None
|
20340
20339
|
self._Retries = None
|
20341
20340
|
self._UpstreamType = None
|
20342
20341
|
self._UpstreamInfo = None
|
20343
20342
|
self._ID = None
|
20343
|
+
self._Path = None
|
20344
20344
|
|
20345
20345
|
@property
|
20346
20346
|
def GatewayId(self):
|
@@ -20366,14 +20366,6 @@ class ModifyCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
20366
20366
|
def Protocol(self, Protocol):
|
20367
20367
|
self._Protocol = Protocol
|
20368
20368
|
|
20369
|
-
@property
|
20370
|
-
def Path(self):
|
20371
|
-
return self._Path
|
20372
|
-
|
20373
|
-
@Path.setter
|
20374
|
-
def Path(self, Path):
|
20375
|
-
self._Path = Path
|
20376
|
-
|
20377
20369
|
@property
|
20378
20370
|
def Timeout(self):
|
20379
20371
|
return self._Timeout
|
@@ -20414,12 +20406,19 @@ class ModifyCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
20414
20406
|
def ID(self, ID):
|
20415
20407
|
self._ID = ID
|
20416
20408
|
|
20409
|
+
@property
|
20410
|
+
def Path(self):
|
20411
|
+
return self._Path
|
20412
|
+
|
20413
|
+
@Path.setter
|
20414
|
+
def Path(self, Path):
|
20415
|
+
self._Path = Path
|
20416
|
+
|
20417
20417
|
|
20418
20418
|
def _deserialize(self, params):
|
20419
20419
|
self._GatewayId = params.get("GatewayId")
|
20420
20420
|
self._Name = params.get("Name")
|
20421
20421
|
self._Protocol = params.get("Protocol")
|
20422
|
-
self._Path = params.get("Path")
|
20423
20422
|
self._Timeout = params.get("Timeout")
|
20424
20423
|
self._Retries = params.get("Retries")
|
20425
20424
|
self._UpstreamType = params.get("UpstreamType")
|
@@ -20427,6 +20426,7 @@ class ModifyCloudNativeAPIGatewayServiceRequest(AbstractModel):
|
|
20427
20426
|
self._UpstreamInfo = KongUpstreamInfo()
|
20428
20427
|
self._UpstreamInfo._deserialize(params.get("UpstreamInfo"))
|
20429
20428
|
self._ID = params.get("ID")
|
20429
|
+
self._Path = params.get("Path")
|
20430
20430
|
memeber_set = set(params.keys())
|
20431
20431
|
for name, value in vars(self).items():
|
20432
20432
|
property_name = name[1:]
|
@@ -1479,6 +1479,15 @@ class ApiRateLimitRule(AbstractModel):
|
|
1479
1479
|
:param _UpdatedTime: 更新时间
|
1480
1480
|
注意:此字段可能返回 null,表示取不到有效值。
|
1481
1481
|
:type UpdatedTime: str
|
1482
|
+
:param _Limit: 分页参数limit
|
1483
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1484
|
+
:type Limit: int
|
1485
|
+
:param _Offset: 分页参数offset
|
1486
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1487
|
+
:type Offset: int
|
1488
|
+
:param _AppId: AppId
|
1489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1490
|
+
:type AppId: str
|
1482
1491
|
"""
|
1483
1492
|
self._RuleId = None
|
1484
1493
|
self._ApiId = None
|
@@ -1490,6 +1499,9 @@ class ApiRateLimitRule(AbstractModel):
|
|
1490
1499
|
self._Description = None
|
1491
1500
|
self._CreatedTime = None
|
1492
1501
|
self._UpdatedTime = None
|
1502
|
+
self._Limit = None
|
1503
|
+
self._Offset = None
|
1504
|
+
self._AppId = None
|
1493
1505
|
|
1494
1506
|
@property
|
1495
1507
|
def RuleId(self):
|
@@ -1571,6 +1583,30 @@ class ApiRateLimitRule(AbstractModel):
|
|
1571
1583
|
def UpdatedTime(self, UpdatedTime):
|
1572
1584
|
self._UpdatedTime = UpdatedTime
|
1573
1585
|
|
1586
|
+
@property
|
1587
|
+
def Limit(self):
|
1588
|
+
return self._Limit
|
1589
|
+
|
1590
|
+
@Limit.setter
|
1591
|
+
def Limit(self, Limit):
|
1592
|
+
self._Limit = Limit
|
1593
|
+
|
1594
|
+
@property
|
1595
|
+
def Offset(self):
|
1596
|
+
return self._Offset
|
1597
|
+
|
1598
|
+
@Offset.setter
|
1599
|
+
def Offset(self, Offset):
|
1600
|
+
self._Offset = Offset
|
1601
|
+
|
1602
|
+
@property
|
1603
|
+
def AppId(self):
|
1604
|
+
return self._AppId
|
1605
|
+
|
1606
|
+
@AppId.setter
|
1607
|
+
def AppId(self, AppId):
|
1608
|
+
self._AppId = AppId
|
1609
|
+
|
1574
1610
|
|
1575
1611
|
def _deserialize(self, params):
|
1576
1612
|
self._RuleId = params.get("RuleId")
|
@@ -1583,6 +1619,9 @@ class ApiRateLimitRule(AbstractModel):
|
|
1583
1619
|
self._Description = params.get("Description")
|
1584
1620
|
self._CreatedTime = params.get("CreatedTime")
|
1585
1621
|
self._UpdatedTime = params.get("UpdatedTime")
|
1622
|
+
self._Limit = params.get("Limit")
|
1623
|
+
self._Offset = params.get("Offset")
|
1624
|
+
self._AppId = params.get("AppId")
|
1586
1625
|
memeber_set = set(params.keys())
|
1587
1626
|
for name, value in vars(self).items():
|
1588
1627
|
property_name = name[1:]
|
@@ -7040,9 +7079,12 @@ class CreateAllGatewayApiAsyncRequest(AbstractModel):
|
|
7040
7079
|
:type GroupId: str
|
7041
7080
|
:param _MicroserviceId: 微服务ID
|
7042
7081
|
:type MicroserviceId: str
|
7082
|
+
:param _NamespaceId: 命名空间ID
|
7083
|
+
:type NamespaceId: str
|
7043
7084
|
"""
|
7044
7085
|
self._GroupId = None
|
7045
7086
|
self._MicroserviceId = None
|
7087
|
+
self._NamespaceId = None
|
7046
7088
|
|
7047
7089
|
@property
|
7048
7090
|
def GroupId(self):
|
@@ -7060,10 +7102,19 @@ class CreateAllGatewayApiAsyncRequest(AbstractModel):
|
|
7060
7102
|
def MicroserviceId(self, MicroserviceId):
|
7061
7103
|
self._MicroserviceId = MicroserviceId
|
7062
7104
|
|
7105
|
+
@property
|
7106
|
+
def NamespaceId(self):
|
7107
|
+
return self._NamespaceId
|
7108
|
+
|
7109
|
+
@NamespaceId.setter
|
7110
|
+
def NamespaceId(self, NamespaceId):
|
7111
|
+
self._NamespaceId = NamespaceId
|
7112
|
+
|
7063
7113
|
|
7064
7114
|
def _deserialize(self, params):
|
7065
7115
|
self._GroupId = params.get("GroupId")
|
7066
7116
|
self._MicroserviceId = params.get("MicroserviceId")
|
7117
|
+
self._NamespaceId = params.get("NamespaceId")
|
7067
7118
|
memeber_set = set(params.keys())
|
7068
7119
|
for name, value in vars(self).items():
|
7069
7120
|
property_name = name[1:]
|
@@ -1214,7 +1214,7 @@ class SubmitVideoTranslateJobResponse(AbstractModel):
|
|
1214
1214
|
|
1215
1215
|
def __init__(self):
|
1216
1216
|
r"""
|
1217
|
-
:param _JobId:
|
1217
|
+
:param _JobId: 视频转译任务的Job id
|
1218
1218
|
:type JobId: str
|
1219
1219
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1220
1220
|
:type RequestId: str
|
@@ -19,3 +19,24 @@ AUTHFAILURE = 'AuthFailure'
|
|
19
19
|
|
20
20
|
# 操作失败。
|
21
21
|
FAILEDOPERATION = 'FailedOperation'
|
22
|
+
|
23
|
+
# 内部错误。
|
24
|
+
INTERNALERROR = 'InternalError'
|
25
|
+
|
26
|
+
# 参数错误。
|
27
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
28
|
+
|
29
|
+
# 超过配额限制。
|
30
|
+
LIMITEXCEEDED = 'LimitExceeded'
|
31
|
+
|
32
|
+
# 请求的次数超过了频率限制。
|
33
|
+
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
34
|
+
|
35
|
+
# 资源不存在。
|
36
|
+
RESOURCENOTFOUND = 'ResourceNotFound'
|
37
|
+
|
38
|
+
# 资源不可用。
|
39
|
+
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
40
|
+
|
41
|
+
# 未授权操作。
|
42
|
+
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|