tencentcloud-sdk-python 3.0.1163__py2.py3-none-any.whl → 3.0.1164__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/common/credential.py +1 -1
- tencentcloud/dlc/v20210125/dlc_client.py +230 -0
- tencentcloud/dlc/v20210125/models.py +1298 -22
- tencentcloud/dts/v20180330/models.py +13 -13
- tencentcloud/eb/v20210416/models.py +10 -1
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/mongodb/v20190725/models.py +4 -4
- tencentcloud/ocr/v20181119/ocr_client.py +3 -2
- tencentcloud/postgres/v20170312/models.py +249 -86
- tencentcloud/postgres/v20170312/postgres_client.py +25 -2
- tencentcloud/teo/v20220901/models.py +5 -3
- tencentcloud/tione/v20211111/errorcodes.py +15 -0
- tencentcloud/tione/v20211111/models.py +119 -13
- tencentcloud/vtc/v20240223/errorcodes.py +3 -0
- tencentcloud/vtc/v20240223/models.py +24 -0
- tencentcloud/wedata/v20210820/models.py +26 -0
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1164.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1164.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1164.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1164.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1164.dist-info}/top_level.txt +0 -0
@@ -3731,6 +3731,9 @@ class SubscribeInfo(AbstractModel):
|
|
3731
3731
|
:type OfflineTime: str
|
3732
3732
|
:param _ConsumeStartTime: 最近一次修改的消费时间起点,如果从未修改则为零值
|
3733
3733
|
:type ConsumeStartTime: str
|
3734
|
+
:param _AutoRenewFlag: 自动续费标识。0-不自动续费,1-自动续费
|
3735
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3736
|
+
:type AutoRenewFlag: int
|
3734
3737
|
:param _Region: 数据订阅实例所属地域
|
3735
3738
|
:type Region: str
|
3736
3739
|
:param _PayType: 计费方式,0 - 包年包月,1 - 按量计费
|
@@ -3750,9 +3753,6 @@ class SubscribeInfo(AbstractModel):
|
|
3750
3753
|
:param _Tags: 标签
|
3751
3754
|
注意:此字段可能返回 null,表示取不到有效值。
|
3752
3755
|
:type Tags: list of TagItem
|
3753
|
-
:param _AutoRenewFlag: 自动续费标识。0-不自动续费,1-自动续费
|
3754
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3755
|
-
:type AutoRenewFlag: int
|
3756
3756
|
:param _SubscribeVersion: 订阅实例版本;txdts-旧版数据订阅,kafka-kafka版本数据订阅
|
3757
3757
|
注意:此字段可能返回 null,表示取不到有效值。
|
3758
3758
|
:type SubscribeVersion: str
|
@@ -3770,6 +3770,7 @@ class SubscribeInfo(AbstractModel):
|
|
3770
3770
|
self._ExpireTime = None
|
3771
3771
|
self._OfflineTime = None
|
3772
3772
|
self._ConsumeStartTime = None
|
3773
|
+
self._AutoRenewFlag = None
|
3773
3774
|
self._Region = None
|
3774
3775
|
self._PayType = None
|
3775
3776
|
self._Vip = None
|
@@ -3779,7 +3780,6 @@ class SubscribeInfo(AbstractModel):
|
|
3779
3780
|
self._Status = None
|
3780
3781
|
self._SdkConsumedTime = None
|
3781
3782
|
self._Tags = None
|
3782
|
-
self._AutoRenewFlag = None
|
3783
3783
|
self._SubscribeVersion = None
|
3784
3784
|
|
3785
3785
|
@property
|
@@ -3886,6 +3886,14 @@ class SubscribeInfo(AbstractModel):
|
|
3886
3886
|
def ConsumeStartTime(self, ConsumeStartTime):
|
3887
3887
|
self._ConsumeStartTime = ConsumeStartTime
|
3888
3888
|
|
3889
|
+
@property
|
3890
|
+
def AutoRenewFlag(self):
|
3891
|
+
return self._AutoRenewFlag
|
3892
|
+
|
3893
|
+
@AutoRenewFlag.setter
|
3894
|
+
def AutoRenewFlag(self, AutoRenewFlag):
|
3895
|
+
self._AutoRenewFlag = AutoRenewFlag
|
3896
|
+
|
3889
3897
|
@property
|
3890
3898
|
def Region(self):
|
3891
3899
|
return self._Region
|
@@ -3958,14 +3966,6 @@ class SubscribeInfo(AbstractModel):
|
|
3958
3966
|
def Tags(self, Tags):
|
3959
3967
|
self._Tags = Tags
|
3960
3968
|
|
3961
|
-
@property
|
3962
|
-
def AutoRenewFlag(self):
|
3963
|
-
return self._AutoRenewFlag
|
3964
|
-
|
3965
|
-
@AutoRenewFlag.setter
|
3966
|
-
def AutoRenewFlag(self, AutoRenewFlag):
|
3967
|
-
self._AutoRenewFlag = AutoRenewFlag
|
3968
|
-
|
3969
3969
|
@property
|
3970
3970
|
def SubscribeVersion(self):
|
3971
3971
|
return self._SubscribeVersion
|
@@ -3989,6 +3989,7 @@ class SubscribeInfo(AbstractModel):
|
|
3989
3989
|
self._ExpireTime = params.get("ExpireTime")
|
3990
3990
|
self._OfflineTime = params.get("OfflineTime")
|
3991
3991
|
self._ConsumeStartTime = params.get("ConsumeStartTime")
|
3992
|
+
self._AutoRenewFlag = params.get("AutoRenewFlag")
|
3992
3993
|
self._Region = params.get("Region")
|
3993
3994
|
self._PayType = params.get("PayType")
|
3994
3995
|
self._Vip = params.get("Vip")
|
@@ -4003,7 +4004,6 @@ class SubscribeInfo(AbstractModel):
|
|
4003
4004
|
obj = TagItem()
|
4004
4005
|
obj._deserialize(item)
|
4005
4006
|
self._Tags.append(obj)
|
4006
|
-
self._AutoRenewFlag = params.get("AutoRenewFlag")
|
4007
4007
|
self._SubscribeVersion = params.get("SubscribeVersion")
|
4008
4008
|
memeber_set = set(params.keys())
|
4009
4009
|
for name, value in vars(self).items():
|
@@ -1836,16 +1836,22 @@ class ESTargetParams(AbstractModel):
|
|
1836
1836
|
def __init__(self):
|
1837
1837
|
r"""
|
1838
1838
|
:param _NetMode: 网络连接类型
|
1839
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1839
1840
|
:type NetMode: str
|
1840
1841
|
:param _IndexPrefix: 索引前缀
|
1842
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1841
1843
|
:type IndexPrefix: str
|
1842
1844
|
:param _RotationInterval: es日志轮换粒度
|
1845
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1843
1846
|
:type RotationInterval: str
|
1844
1847
|
:param _OutputMode: DTS事件配置
|
1848
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1845
1849
|
:type OutputMode: str
|
1846
1850
|
:param _IndexSuffixMode: DTS索引配置
|
1851
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1847
1852
|
:type IndexSuffixMode: str
|
1848
1853
|
:param _IndexTemplateType: es模版类型
|
1854
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1849
1855
|
:type IndexTemplateType: str
|
1850
1856
|
"""
|
1851
1857
|
self._NetMode = None
|
@@ -3385,7 +3391,7 @@ class ListRulesRequest(AbstractModel):
|
|
3385
3391
|
r"""
|
3386
3392
|
:param _EventBusId: 事件集ID
|
3387
3393
|
:type EventBusId: str
|
3388
|
-
:param _OrderBy: 根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime
|
3394
|
+
:param _OrderBy: 根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间),name(规则名称)
|
3389
3395
|
:type OrderBy: str
|
3390
3396
|
:param _Limit: 返回数量,默认为20,最大值为100。
|
3391
3397
|
:type Limit: int
|
@@ -4352,10 +4358,13 @@ class SCFParams(AbstractModel):
|
|
4352
4358
|
def __init__(self):
|
4353
4359
|
r"""
|
4354
4360
|
:param _BatchTimeout: 批量投递最长等待时间
|
4361
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4355
4362
|
:type BatchTimeout: int
|
4356
4363
|
:param _BatchEventCount: 批量投递最大事件条数
|
4364
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4357
4365
|
:type BatchEventCount: int
|
4358
4366
|
:param _EnableBatchDelivery: 开启批量投递使能
|
4367
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4359
4368
|
:type EnableBatchDelivery: bool
|
4360
4369
|
"""
|
4361
4370
|
self._BatchTimeout = None
|
@@ -2193,8 +2193,8 @@ class Component(AbstractModel):
|
|
2193
2193
|
<ul><li> <b>Middle</b> :居中</li>
|
2194
2194
|
<li> <b>Below</b> :正下方</li>
|
2195
2195
|
<li> <b>Right</b> :正右方</li>
|
2196
|
-
<li> <b>LowerRight</b>
|
2197
|
-
<li> <b>UpperRight</b>
|
2196
|
+
<li> <b>LowerRight</b> :右下角</li>
|
2197
|
+
<li> <b>UpperRight</b> :右上角。</li></ul>
|
2198
2198
|
示例:如果设置Middle的关键字盖章,则印章的中心会和关键字的中心重合,如果设置Below,则印章在关键字的正下方
|
2199
2199
|
:type RelativeLocation: str
|
2200
2200
|
:param _KeywordIndexes: **如果控件是关键字定位方式**,关键字索引是指在PDF文件中存在多个相同的关键字时,通过索引指定使用哪一个关键字作为最后的结果。可以通过指定多个索引来同时使用多个关键字。例如,[0,2]表示使用PDF文件内第1个和第3个关键字位置作为最后的结果。
|
@@ -9179,8 +9179,8 @@ class Component(AbstractModel):
|
|
9179
9179
|
<ul><li> <b>Middle</b> :居中</li>
|
9180
9180
|
<li> <b>Below</b> :正下方</li>
|
9181
9181
|
<li> <b>Right</b> :正右方</li>
|
9182
|
-
<li> <b>LowerRight</b>
|
9183
|
-
<li> <b>UpperRight</b>
|
9182
|
+
<li> <b>LowerRight</b> :右下角</li>
|
9183
|
+
<li> <b>UpperRight</b> :右上角。</li></ul>
|
9184
9184
|
示例:如果设置Middle的关键字盖章,则印章的中心会和关键字的中心重合,如果设置Below,则印章在关键字的正下方
|
9185
9185
|
:type RelativeLocation: str
|
9186
9186
|
:param _KeywordIndexes: **如果控件是关键字定位方式**,关键字索引是指在PDF文件中存在多个相同的关键字时,通过索引指定使用哪一个关键字作为最后的结果。可以通过指定多个索引来同时使用多个关键字。例如,[0,2]表示使用PDF文件内第1个和第3个关键字位置作为最后的结果。
|
@@ -3415,7 +3415,7 @@ class DescribeInstanceParamsRequest(AbstractModel):
|
|
3415
3415
|
|
3416
3416
|
def __init__(self):
|
3417
3417
|
r"""
|
3418
|
-
:param _InstanceId: 指定待查询参数列表的实例ID。例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
|
3418
|
+
:param _InstanceId: 指定待查询参数列表的实例 ID。例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
|
3419
3419
|
:type InstanceId: str
|
3420
3420
|
"""
|
3421
3421
|
self._InstanceId = None
|
@@ -3448,15 +3448,15 @@ class DescribeInstanceParamsResponse(AbstractModel):
|
|
3448
3448
|
|
3449
3449
|
def __init__(self):
|
3450
3450
|
r"""
|
3451
|
-
:param _InstanceEnumParam:
|
3451
|
+
:param _InstanceEnumParam: 参数值为枚举类型的参数集合。
|
3452
3452
|
:type InstanceEnumParam: list of InstanceEnumParam
|
3453
|
-
:param _InstanceIntegerParam: 参数值为 Integer
|
3453
|
+
:param _InstanceIntegerParam: 参数值为 Integer 类型的参数集合。
|
3454
3454
|
:type InstanceIntegerParam: list of InstanceIntegerParam
|
3455
3455
|
:param _InstanceTextParam: 参数值为 Text 类型的参数集合。
|
3456
3456
|
:type InstanceTextParam: list of InstanceTextParam
|
3457
3457
|
:param _InstanceMultiParam: 参数值为混合类型的参数集合。
|
3458
3458
|
:type InstanceMultiParam: list of InstanceMultiParam
|
3459
|
-
:param _TotalCount:
|
3459
|
+
:param _TotalCount: 当前实例支持修改的参数数量。
|
3460
3460
|
:type TotalCount: int
|
3461
3461
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3462
3462
|
:type RequestId: str
|
@@ -540,9 +540,9 @@ class OcrClient(AbstractClient):
|
|
540
540
|
|
541
541
|
适用于文字较多、版式复杂、对识别准召率要求较高的场景,如试卷试题、网络图片、街景店招牌、法律卷宗等场景。
|
542
542
|
|
543
|
-
|
543
|
+
产品优势:与通用印刷体识别接口相比,本接口提供更高精度的通用文字识别服务,在手写体、文字较多、长串数字、小字、模糊字、倾斜文本等困难场景下,高精度版的准确率和召回率更高。
|
544
544
|
|
545
|
-
|
545
|
+
通用文字识别不同版本的差异如下:
|
546
546
|
<table style="width:715px">
|
547
547
|
<thead>
|
548
548
|
<tr>
|
@@ -2524,6 +2524,7 @@ class OcrClient(AbstractClient):
|
|
2524
2524
|
|
2525
2525
|
def VinOCR(self, request):
|
2526
2526
|
"""本接口支持图片内车辆识别代号(VIN)的检测和识别。
|
2527
|
+
默认接口请求频率限制:10次/秒。
|
2527
2528
|
|
2528
2529
|
:param request: Request instance for VinOCR.
|
2529
2530
|
:type request: :class:`tencentcloud.ocr.v20181119.models.VinOCRRequest`
|