tencentcloud-sdk-python 3.0.1328__py2.py3-none-any.whl → 3.0.1329__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/asr/v20190614/asr_client.py +1 -1
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/clb/v20180317/models.py +45 -0
- tencentcloud/dlc/v20210125/models.py +0 -10
- tencentcloud/faceid/v20180301/models.py +20 -12
- tencentcloud/live/v20180801/models.py +10 -110
- tencentcloud/ocr/v20181119/models.py +23 -0
- tencentcloud/ocr/v20181119/ocr_client.py +10 -0
- tencentcloud/organization/v20210331/models.py +30 -0
- tencentcloud/rce/v20201103/models.py +2 -2
- tencentcloud/tcbr/v20220217/models.py +30 -0
- tencentcloud/tke/v20180525/models.py +0 -142
- tencentcloud/tke/v20220501/models.py +0 -8
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/weilingwith/v20230427/models.py +0 -20
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1329.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1329.dist-info}/RECORD +21 -36
- tencentcloud/lp/__init__.py +0 -0
- tencentcloud/lp/v20200224/__init__.py +0 -0
- tencentcloud/lp/v20200224/errorcodes.py +0 -78
- tencentcloud/lp/v20200224/lp_client.py +0 -49
- tencentcloud/lp/v20200224/models.py +0 -748
- tencentcloud/rkp/__init__.py +0 -0
- tencentcloud/rkp/v20191209/__init__.py +0 -0
- tencentcloud/rkp/v20191209/errorcodes.py +0 -102
- tencentcloud/rkp/v20191209/models.py +0 -1007
- tencentcloud/rkp/v20191209/rkp_client.py +0 -101
- tencentcloud/rp/__init__.py +0 -0
- tencentcloud/rp/v20200224/__init__.py +0 -0
- tencentcloud/rp/v20200224/errorcodes.py +0 -78
- tencentcloud/rp/v20200224/models.py +0 -655
- tencentcloud/rp/v20200224/rp_client.py +0 -49
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1329.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1329.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1329.dist-info}/top_level.txt +0 -0
@@ -10630,11 +10630,14 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10630
10630
|
:type TextDetections: list of TextDetection
|
10631
10631
|
:param _Angel: 图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10632
10632
|
:type Angel: float
|
10633
|
+
:param _Angle: 图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10634
|
+
:type Angle: float
|
10633
10635
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10634
10636
|
:type RequestId: str
|
10635
10637
|
"""
|
10636
10638
|
self._TextDetections = None
|
10637
10639
|
self._Angel = None
|
10640
|
+
self._Angle = None
|
10638
10641
|
self._RequestId = None
|
10639
10642
|
|
10640
10643
|
@property
|
@@ -10650,6 +10653,8 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10650
10653
|
|
10651
10654
|
@property
|
10652
10655
|
def Angel(self):
|
10656
|
+
warnings.warn("parameter `Angel` is deprecated", DeprecationWarning)
|
10657
|
+
|
10653
10658
|
"""图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10654
10659
|
:rtype: float
|
10655
10660
|
"""
|
@@ -10657,8 +10662,21 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10657
10662
|
|
10658
10663
|
@Angel.setter
|
10659
10664
|
def Angel(self, Angel):
|
10665
|
+
warnings.warn("parameter `Angel` is deprecated", DeprecationWarning)
|
10666
|
+
|
10660
10667
|
self._Angel = Angel
|
10661
10668
|
|
10669
|
+
@property
|
10670
|
+
def Angle(self):
|
10671
|
+
"""图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10672
|
+
:rtype: float
|
10673
|
+
"""
|
10674
|
+
return self._Angle
|
10675
|
+
|
10676
|
+
@Angle.setter
|
10677
|
+
def Angle(self, Angle):
|
10678
|
+
self._Angle = Angle
|
10679
|
+
|
10662
10680
|
@property
|
10663
10681
|
def RequestId(self):
|
10664
10682
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -10679,6 +10697,7 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10679
10697
|
obj._deserialize(item)
|
10680
10698
|
self._TextDetections.append(obj)
|
10681
10699
|
self._Angel = params.get("Angel")
|
10700
|
+
self._Angle = params.get("Angle")
|
10682
10701
|
self._RequestId = params.get("RequestId")
|
10683
10702
|
|
10684
10703
|
|
@@ -24100,6 +24119,8 @@ class RecognizeGeneralInvoiceRequest(AbstractModel):
|
|
24100
24119
|
15:非税发票
|
24101
24120
|
16:全电发票
|
24102
24121
|
17:医疗发票
|
24122
|
+
18:完税凭证
|
24123
|
+
19:海关缴款书
|
24103
24124
|
-1:其他发票
|
24104
24125
|
:type Types: list of int
|
24105
24126
|
:param _EnableOther: 是否开启其他票识别,默认值为true,开启后可支持其他发票的智能识别。
|
@@ -24174,6 +24195,8 @@ class RecognizeGeneralInvoiceRequest(AbstractModel):
|
|
24174
24195
|
15:非税发票
|
24175
24196
|
16:全电发票
|
24176
24197
|
17:医疗发票
|
24198
|
+
18:完税凭证
|
24199
|
+
19:海关缴款书
|
24177
24200
|
-1:其他发票
|
24178
24201
|
:rtype: list of int
|
24179
24202
|
"""
|
@@ -1827,6 +1827,16 @@ class OcrClient(AbstractClient):
|
|
1827
1827
|
<td> 医疗住院收费票据(电子) </td>
|
1828
1828
|
<td> 17 </td>
|
1829
1829
|
</tr>
|
1830
|
+
<tr>
|
1831
|
+
<td> TaxPayment </td>
|
1832
|
+
<td> 完税凭证 </td>
|
1833
|
+
<td> 18 </td>
|
1834
|
+
</tr>
|
1835
|
+
<tr>
|
1836
|
+
<td> CustomsPaymentReceipt </td>
|
1837
|
+
<td> 海关缴款 </td>
|
1838
|
+
<td> 19 </td>
|
1839
|
+
</tr>
|
1830
1840
|
<tr>
|
1831
1841
|
<td> OtherInvoice </td>
|
1832
1842
|
<td> 其他发票 </td>
|
@@ -14858,6 +14858,8 @@ class OrgMember(AbstractModel):
|
|
14858
14858
|
:type PermissionStatus: str
|
14859
14859
|
:param _Tags: 成员标签列表
|
14860
14860
|
:type Tags: list of Tag
|
14861
|
+
:param _NickName: 腾讯云昵称
|
14862
|
+
:type NickName: str
|
14861
14863
|
"""
|
14862
14864
|
self._MemberUin = None
|
14863
14865
|
self._Name = None
|
@@ -14877,6 +14879,7 @@ class OrgMember(AbstractModel):
|
|
14877
14879
|
self._BindStatus = None
|
14878
14880
|
self._PermissionStatus = None
|
14879
14881
|
self._Tags = None
|
14882
|
+
self._NickName = None
|
14880
14883
|
|
14881
14884
|
@property
|
14882
14885
|
def MemberUin(self):
|
@@ -15076,6 +15079,17 @@ class OrgMember(AbstractModel):
|
|
15076
15079
|
def Tags(self, Tags):
|
15077
15080
|
self._Tags = Tags
|
15078
15081
|
|
15082
|
+
@property
|
15083
|
+
def NickName(self):
|
15084
|
+
"""腾讯云昵称
|
15085
|
+
:rtype: str
|
15086
|
+
"""
|
15087
|
+
return self._NickName
|
15088
|
+
|
15089
|
+
@NickName.setter
|
15090
|
+
def NickName(self, NickName):
|
15091
|
+
self._NickName = NickName
|
15092
|
+
|
15079
15093
|
|
15080
15094
|
def _deserialize(self, params):
|
15081
15095
|
self._MemberUin = params.get("MemberUin")
|
@@ -15111,6 +15125,7 @@ class OrgMember(AbstractModel):
|
|
15111
15125
|
obj = Tag()
|
15112
15126
|
obj._deserialize(item)
|
15113
15127
|
self._Tags.append(obj)
|
15128
|
+
self._NickName = params.get("NickName")
|
15114
15129
|
memeber_set = set(params.keys())
|
15115
15130
|
for name, value in vars(self).items():
|
15116
15131
|
property_name = name[1:]
|
@@ -19821,6 +19836,8 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19821
19836
|
:type IsAllowQuit: str
|
19822
19837
|
:param _PayUin: 代付者Uin。成员财务权限有代付费时需要,取值为成员对应主体的主体管理员Uin
|
19823
19838
|
:type PayUin: str
|
19839
|
+
:param _IsModifyNickName: 是否同步组织成员名称到成员账号昵称。取值: 1-同步 0-不同步
|
19840
|
+
:type IsModifyNickName: int
|
19824
19841
|
"""
|
19825
19842
|
self._MemberUin = None
|
19826
19843
|
self._Name = None
|
@@ -19829,6 +19846,7 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19829
19846
|
self._PermissionIds = None
|
19830
19847
|
self._IsAllowQuit = None
|
19831
19848
|
self._PayUin = None
|
19849
|
+
self._IsModifyNickName = None
|
19832
19850
|
|
19833
19851
|
@property
|
19834
19852
|
def MemberUin(self):
|
@@ -19908,6 +19926,17 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19908
19926
|
def PayUin(self, PayUin):
|
19909
19927
|
self._PayUin = PayUin
|
19910
19928
|
|
19929
|
+
@property
|
19930
|
+
def IsModifyNickName(self):
|
19931
|
+
"""是否同步组织成员名称到成员账号昵称。取值: 1-同步 0-不同步
|
19932
|
+
:rtype: int
|
19933
|
+
"""
|
19934
|
+
return self._IsModifyNickName
|
19935
|
+
|
19936
|
+
@IsModifyNickName.setter
|
19937
|
+
def IsModifyNickName(self, IsModifyNickName):
|
19938
|
+
self._IsModifyNickName = IsModifyNickName
|
19939
|
+
|
19911
19940
|
|
19912
19941
|
def _deserialize(self, params):
|
19913
19942
|
self._MemberUin = params.get("MemberUin")
|
@@ -19917,6 +19946,7 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19917
19946
|
self._PermissionIds = params.get("PermissionIds")
|
19918
19947
|
self._IsAllowQuit = params.get("IsAllowQuit")
|
19919
19948
|
self._PayUin = params.get("PayUin")
|
19949
|
+
self._IsModifyNickName = params.get("IsModifyNickName")
|
19920
19950
|
memeber_set = set(params.keys())
|
19921
19951
|
for name, value in vars(self).items():
|
19922
19952
|
property_name = name[1:]
|
@@ -4166,7 +4166,7 @@ class OutputManageMarketingRiskValue(AbstractModel):
|
|
4166
4166
|
:type UserId: str
|
4167
4167
|
:param _PostTime: 操作时间戳,单位秒(对应输入参数)。
|
4168
4168
|
:type PostTime: int
|
4169
|
-
:param _AssociateAccount:
|
4169
|
+
:param _AssociateAccount: 业务预留参数(暂无实际业务含义, 无需关注返回值)
|
4170
4170
|
:type AssociateAccount: str
|
4171
4171
|
:param _UserIp: 操作来源的外网IP(对应输入参数)。
|
4172
4172
|
:type UserIp: str
|
@@ -4237,7 +4237,7 @@ reject:高风险,建议拦截
|
|
4237
4237
|
|
4238
4238
|
@property
|
4239
4239
|
def AssociateAccount(self):
|
4240
|
-
"""
|
4240
|
+
"""业务预留参数(暂无实际业务含义, 无需关注返回值)
|
4241
4241
|
:rtype: str
|
4242
4242
|
"""
|
4243
4243
|
return self._AssociateAccount
|
@@ -1041,10 +1041,16 @@ class DescribeCloudRunServersRequest(AbstractModel):
|
|
1041
1041
|
:type PageSize: int
|
1042
1042
|
:param _PageNum: 不传或传0时 会默认为1
|
1043
1043
|
:type PageNum: int
|
1044
|
+
:param _ServerName: 服务名
|
1045
|
+
:type ServerName: str
|
1046
|
+
:param _ServerType: 服务类型:function | container
|
1047
|
+
:type ServerType: str
|
1044
1048
|
"""
|
1045
1049
|
self._EnvId = None
|
1046
1050
|
self._PageSize = None
|
1047
1051
|
self._PageNum = None
|
1052
|
+
self._ServerName = None
|
1053
|
+
self._ServerType = None
|
1048
1054
|
|
1049
1055
|
@property
|
1050
1056
|
def EnvId(self):
|
@@ -1081,11 +1087,35 @@ class DescribeCloudRunServersRequest(AbstractModel):
|
|
1081
1087
|
def PageNum(self, PageNum):
|
1082
1088
|
self._PageNum = PageNum
|
1083
1089
|
|
1090
|
+
@property
|
1091
|
+
def ServerName(self):
|
1092
|
+
"""服务名
|
1093
|
+
:rtype: str
|
1094
|
+
"""
|
1095
|
+
return self._ServerName
|
1096
|
+
|
1097
|
+
@ServerName.setter
|
1098
|
+
def ServerName(self, ServerName):
|
1099
|
+
self._ServerName = ServerName
|
1100
|
+
|
1101
|
+
@property
|
1102
|
+
def ServerType(self):
|
1103
|
+
"""服务类型:function | container
|
1104
|
+
:rtype: str
|
1105
|
+
"""
|
1106
|
+
return self._ServerType
|
1107
|
+
|
1108
|
+
@ServerType.setter
|
1109
|
+
def ServerType(self, ServerType):
|
1110
|
+
self._ServerType = ServerType
|
1111
|
+
|
1084
1112
|
|
1085
1113
|
def _deserialize(self, params):
|
1086
1114
|
self._EnvId = params.get("EnvId")
|
1087
1115
|
self._PageSize = params.get("PageSize")
|
1088
1116
|
self._PageNum = params.get("PageNum")
|
1117
|
+
self._ServerName = params.get("ServerName")
|
1118
|
+
self._ServerType = params.get("ServerType")
|
1089
1119
|
memeber_set = set(params.keys())
|
1090
1120
|
for name, value in vars(self).items():
|
1091
1121
|
property_name = name[1:]
|