tencentcloud-sdk-python 3.0.1444__py2.py3-none-any.whl → 3.0.1445__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cls/v20201016/models.py +393 -62
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/models.py +105 -0
- tencentcloud/essbasic/v20210526/models.py +60 -0
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +1998 -50
- tencentcloud/ocr/v20181119/models.py +15 -0
- tencentcloud/partners/v20180321/models.py +4 -4
- tencentcloud/sqlserver/v20180328/models.py +6 -6
- tencentcloud/trabbit/v20230418/models.py +15 -0
- tencentcloud/tsf/v20180326/errorcodes.py +6 -0
- tencentcloud/tsf/v20180326/models.py +230 -74
- tencentcloud/tsf/v20180326/tsf_client.py +1 -1
- tencentcloud/vod/v20180717/models.py +507 -0
- tencentcloud/vod/v20180717/vod_client.py +101 -0
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/RECORD +21 -21
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/top_level.txt +0 -0
|
@@ -622,3 +622,6 @@ UNSUPPORTEDOPERATION_NOTINWHITELIST = 'UnsupportedOperation.NotInWhiteList'
|
|
|
622
622
|
|
|
623
623
|
# 该服务不支持此操作。
|
|
624
624
|
UNSUPPORTEDOPERATION_SERVICENOTSUPPORT = 'UnsupportedOperation.ServiceNotSupport'
|
|
625
|
+
|
|
626
|
+
# 操作不支持。
|
|
627
|
+
UNSUPPORTEDOPERATION_UNSUPPORTEDDISKTYPE = 'UnsupportedOperation.UnsupportedDiskType'
|
|
@@ -16620,6 +16620,8 @@ class CreateSealRequest(AbstractModel):
|
|
|
16620
16620
|
<li>2.印章类型SealType是INVOICE类型,且该字段没有传入值或传入空时,会取该企业对应的统一社会信用代码作为默认的企业税号(<font color="red">如果是通过授权书授权方式认证的企业,此参数必传不能为空</font>)</li>
|
|
16621
16621
|
</ul>
|
|
16622
16622
|
:type TaxIdentifyCode: str
|
|
16623
|
+
:param _SealDescription: 印章描述内容
|
|
16624
|
+
:type SealDescription: str
|
|
16623
16625
|
"""
|
|
16624
16626
|
self._Operator = None
|
|
16625
16627
|
self._SealName = None
|
|
@@ -16638,6 +16640,7 @@ class CreateSealRequest(AbstractModel):
|
|
|
16638
16640
|
self._SealStyle = None
|
|
16639
16641
|
self._SealSize = None
|
|
16640
16642
|
self._TaxIdentifyCode = None
|
|
16643
|
+
self._SealDescription = None
|
|
16641
16644
|
|
|
16642
16645
|
@property
|
|
16643
16646
|
def Operator(self):
|
|
@@ -16853,6 +16856,17 @@ class CreateSealRequest(AbstractModel):
|
|
|
16853
16856
|
def TaxIdentifyCode(self, TaxIdentifyCode):
|
|
16854
16857
|
self._TaxIdentifyCode = TaxIdentifyCode
|
|
16855
16858
|
|
|
16859
|
+
@property
|
|
16860
|
+
def SealDescription(self):
|
|
16861
|
+
"""印章描述内容
|
|
16862
|
+
:rtype: str
|
|
16863
|
+
"""
|
|
16864
|
+
return self._SealDescription
|
|
16865
|
+
|
|
16866
|
+
@SealDescription.setter
|
|
16867
|
+
def SealDescription(self, SealDescription):
|
|
16868
|
+
self._SealDescription = SealDescription
|
|
16869
|
+
|
|
16856
16870
|
|
|
16857
16871
|
def _deserialize(self, params):
|
|
16858
16872
|
if params.get("Operator") is not None:
|
|
@@ -16876,6 +16890,7 @@ class CreateSealRequest(AbstractModel):
|
|
|
16876
16890
|
self._SealStyle = params.get("SealStyle")
|
|
16877
16891
|
self._SealSize = params.get("SealSize")
|
|
16878
16892
|
self._TaxIdentifyCode = params.get("TaxIdentifyCode")
|
|
16893
|
+
self._SealDescription = params.get("SealDescription")
|
|
16879
16894
|
memeber_set = set(params.keys())
|
|
16880
16895
|
for name, value in vars(self).items():
|
|
16881
16896
|
property_name = name[1:]
|
|
@@ -31928,6 +31943,16 @@ class OccupiedSeal(AbstractModel):
|
|
|
31928
31943
|
:type AuthorizedUsers: list of AuthorizedUser
|
|
31929
31944
|
:param _ExtendScene: 印章扩展数据信息
|
|
31930
31945
|
:type ExtendScene: :class:`tencentcloud.ess.v20201111.models.ExtendScene`
|
|
31946
|
+
:param _RealWidth: 印章的真实宽度,单位毫米
|
|
31947
|
+
:type RealWidth: int
|
|
31948
|
+
:param _RealHeight: 印章的真实高度,单位毫米
|
|
31949
|
+
:type RealHeight: int
|
|
31950
|
+
:param _SubSealType: 自定义子类型印章
|
|
31951
|
+
:type SubSealType: str
|
|
31952
|
+
:param _SubSealName: 自定义子类型印章名称
|
|
31953
|
+
:type SubSealName: str
|
|
31954
|
+
:param _SealDescription: 印章描述
|
|
31955
|
+
:type SealDescription: str
|
|
31931
31956
|
"""
|
|
31932
31957
|
self._SealId = None
|
|
31933
31958
|
self._SealName = None
|
|
@@ -31941,6 +31966,11 @@ class OccupiedSeal(AbstractModel):
|
|
|
31941
31966
|
self._IsAllTime = None
|
|
31942
31967
|
self._AuthorizedUsers = None
|
|
31943
31968
|
self._ExtendScene = None
|
|
31969
|
+
self._RealWidth = None
|
|
31970
|
+
self._RealHeight = None
|
|
31971
|
+
self._SubSealType = None
|
|
31972
|
+
self._SubSealName = None
|
|
31973
|
+
self._SealDescription = None
|
|
31944
31974
|
|
|
31945
31975
|
@property
|
|
31946
31976
|
def SealId(self):
|
|
@@ -32074,6 +32104,61 @@ class OccupiedSeal(AbstractModel):
|
|
|
32074
32104
|
def ExtendScene(self, ExtendScene):
|
|
32075
32105
|
self._ExtendScene = ExtendScene
|
|
32076
32106
|
|
|
32107
|
+
@property
|
|
32108
|
+
def RealWidth(self):
|
|
32109
|
+
"""印章的真实宽度,单位毫米
|
|
32110
|
+
:rtype: int
|
|
32111
|
+
"""
|
|
32112
|
+
return self._RealWidth
|
|
32113
|
+
|
|
32114
|
+
@RealWidth.setter
|
|
32115
|
+
def RealWidth(self, RealWidth):
|
|
32116
|
+
self._RealWidth = RealWidth
|
|
32117
|
+
|
|
32118
|
+
@property
|
|
32119
|
+
def RealHeight(self):
|
|
32120
|
+
"""印章的真实高度,单位毫米
|
|
32121
|
+
:rtype: int
|
|
32122
|
+
"""
|
|
32123
|
+
return self._RealHeight
|
|
32124
|
+
|
|
32125
|
+
@RealHeight.setter
|
|
32126
|
+
def RealHeight(self, RealHeight):
|
|
32127
|
+
self._RealHeight = RealHeight
|
|
32128
|
+
|
|
32129
|
+
@property
|
|
32130
|
+
def SubSealType(self):
|
|
32131
|
+
"""自定义子类型印章
|
|
32132
|
+
:rtype: str
|
|
32133
|
+
"""
|
|
32134
|
+
return self._SubSealType
|
|
32135
|
+
|
|
32136
|
+
@SubSealType.setter
|
|
32137
|
+
def SubSealType(self, SubSealType):
|
|
32138
|
+
self._SubSealType = SubSealType
|
|
32139
|
+
|
|
32140
|
+
@property
|
|
32141
|
+
def SubSealName(self):
|
|
32142
|
+
"""自定义子类型印章名称
|
|
32143
|
+
:rtype: str
|
|
32144
|
+
"""
|
|
32145
|
+
return self._SubSealName
|
|
32146
|
+
|
|
32147
|
+
@SubSealName.setter
|
|
32148
|
+
def SubSealName(self, SubSealName):
|
|
32149
|
+
self._SubSealName = SubSealName
|
|
32150
|
+
|
|
32151
|
+
@property
|
|
32152
|
+
def SealDescription(self):
|
|
32153
|
+
"""印章描述
|
|
32154
|
+
:rtype: str
|
|
32155
|
+
"""
|
|
32156
|
+
return self._SealDescription
|
|
32157
|
+
|
|
32158
|
+
@SealDescription.setter
|
|
32159
|
+
def SealDescription(self, SealDescription):
|
|
32160
|
+
self._SealDescription = SealDescription
|
|
32161
|
+
|
|
32077
32162
|
|
|
32078
32163
|
def _deserialize(self, params):
|
|
32079
32164
|
self._SealId = params.get("SealId")
|
|
@@ -32095,6 +32180,11 @@ class OccupiedSeal(AbstractModel):
|
|
|
32095
32180
|
if params.get("ExtendScene") is not None:
|
|
32096
32181
|
self._ExtendScene = ExtendScene()
|
|
32097
32182
|
self._ExtendScene._deserialize(params.get("ExtendScene"))
|
|
32183
|
+
self._RealWidth = params.get("RealWidth")
|
|
32184
|
+
self._RealHeight = params.get("RealHeight")
|
|
32185
|
+
self._SubSealType = params.get("SubSealType")
|
|
32186
|
+
self._SubSealName = params.get("SubSealName")
|
|
32187
|
+
self._SealDescription = params.get("SealDescription")
|
|
32098
32188
|
memeber_set = set(params.keys())
|
|
32099
32189
|
for name, value in vars(self).items():
|
|
32100
32190
|
property_name = name[1:]
|
|
@@ -32534,10 +32624,13 @@ class OrganizationAuthUrl(AbstractModel):
|
|
|
32534
32624
|
:type ErrorMessage: str
|
|
32535
32625
|
:param _SubTaskId: 企业批量注册的唯一 Id, 此 Id 可以用在[创建企业批量认证链接-单链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationAuthorizationUrl)。
|
|
32536
32626
|
:type SubTaskId: str
|
|
32627
|
+
:param _OrganizationName: 企业批量注册 传递过来的企业名称,方便客户定位企业
|
|
32628
|
+
:type OrganizationName: str
|
|
32537
32629
|
"""
|
|
32538
32630
|
self._AuthUrl = None
|
|
32539
32631
|
self._ErrorMessage = None
|
|
32540
32632
|
self._SubTaskId = None
|
|
32633
|
+
self._OrganizationName = None
|
|
32541
32634
|
|
|
32542
32635
|
@property
|
|
32543
32636
|
def AuthUrl(self):
|
|
@@ -32580,11 +32673,23 @@ class OrganizationAuthUrl(AbstractModel):
|
|
|
32580
32673
|
def SubTaskId(self, SubTaskId):
|
|
32581
32674
|
self._SubTaskId = SubTaskId
|
|
32582
32675
|
|
|
32676
|
+
@property
|
|
32677
|
+
def OrganizationName(self):
|
|
32678
|
+
"""企业批量注册 传递过来的企业名称,方便客户定位企业
|
|
32679
|
+
:rtype: str
|
|
32680
|
+
"""
|
|
32681
|
+
return self._OrganizationName
|
|
32682
|
+
|
|
32683
|
+
@OrganizationName.setter
|
|
32684
|
+
def OrganizationName(self, OrganizationName):
|
|
32685
|
+
self._OrganizationName = OrganizationName
|
|
32686
|
+
|
|
32583
32687
|
|
|
32584
32688
|
def _deserialize(self, params):
|
|
32585
32689
|
self._AuthUrl = params.get("AuthUrl")
|
|
32586
32690
|
self._ErrorMessage = params.get("ErrorMessage")
|
|
32587
32691
|
self._SubTaskId = params.get("SubTaskId")
|
|
32692
|
+
self._OrganizationName = params.get("OrganizationName")
|
|
32588
32693
|
memeber_set = set(params.keys())
|
|
32589
32694
|
for name, value in vars(self).items():
|
|
32590
32695
|
property_name = name[1:]
|
|
@@ -17683,6 +17683,8 @@ class CreateSealByImageRequest(AbstractModel):
|
|
|
17683
17683
|
<li>2.印章类型SealType是INVOICE类型,且该字段没有传入值或传入空时,会取该企业对应的统一社会信用代码作为默认的企业税号(<font color="red">如果是通过授权书授权方式认证的企业,此参数必传不能为空</font>)</li>
|
|
17684
17684
|
</ul>
|
|
17685
17685
|
:type TaxIdentifyCode: str
|
|
17686
|
+
:param _SealDescription: 印章描述内容
|
|
17687
|
+
:type SealDescription: str
|
|
17686
17688
|
"""
|
|
17687
17689
|
self._Agent = None
|
|
17688
17690
|
self._SealName = None
|
|
@@ -17694,6 +17696,7 @@ class CreateSealByImageRequest(AbstractModel):
|
|
|
17694
17696
|
self._SealStyle = None
|
|
17695
17697
|
self._SealSize = None
|
|
17696
17698
|
self._TaxIdentifyCode = None
|
|
17699
|
+
self._SealDescription = None
|
|
17697
17700
|
|
|
17698
17701
|
@property
|
|
17699
17702
|
def Agent(self):
|
|
@@ -17838,6 +17841,17 @@ class CreateSealByImageRequest(AbstractModel):
|
|
|
17838
17841
|
def TaxIdentifyCode(self, TaxIdentifyCode):
|
|
17839
17842
|
self._TaxIdentifyCode = TaxIdentifyCode
|
|
17840
17843
|
|
|
17844
|
+
@property
|
|
17845
|
+
def SealDescription(self):
|
|
17846
|
+
"""印章描述内容
|
|
17847
|
+
:rtype: str
|
|
17848
|
+
"""
|
|
17849
|
+
return self._SealDescription
|
|
17850
|
+
|
|
17851
|
+
@SealDescription.setter
|
|
17852
|
+
def SealDescription(self, SealDescription):
|
|
17853
|
+
self._SealDescription = SealDescription
|
|
17854
|
+
|
|
17841
17855
|
|
|
17842
17856
|
def _deserialize(self, params):
|
|
17843
17857
|
if params.get("Agent") is not None:
|
|
@@ -17854,6 +17868,7 @@ class CreateSealByImageRequest(AbstractModel):
|
|
|
17854
17868
|
self._SealStyle = params.get("SealStyle")
|
|
17855
17869
|
self._SealSize = params.get("SealSize")
|
|
17856
17870
|
self._TaxIdentifyCode = params.get("TaxIdentifyCode")
|
|
17871
|
+
self._SealDescription = params.get("SealDescription")
|
|
17857
17872
|
memeber_set = set(params.keys())
|
|
17858
17873
|
for name, value in vars(self).items():
|
|
17859
17874
|
property_name = name[1:]
|
|
@@ -26444,6 +26459,12 @@ class OccupiedSeal(AbstractModel):
|
|
|
26444
26459
|
:type IsAllTime: bool
|
|
26445
26460
|
:param _AuthorizedUsers: 授权人列表
|
|
26446
26461
|
:type AuthorizedUsers: list of AuthorizedUser
|
|
26462
|
+
:param _RealWidth: 印章的真实宽度,单位毫米
|
|
26463
|
+
:type RealWidth: int
|
|
26464
|
+
:param _RealHeight: 印章的真实高度,单位毫米
|
|
26465
|
+
:type RealHeight: int
|
|
26466
|
+
:param _SealDescription: 印章描述
|
|
26467
|
+
:type SealDescription: str
|
|
26447
26468
|
"""
|
|
26448
26469
|
self._SealId = None
|
|
26449
26470
|
self._SealName = None
|
|
@@ -26456,6 +26477,9 @@ class OccupiedSeal(AbstractModel):
|
|
|
26456
26477
|
self._SealType = None
|
|
26457
26478
|
self._IsAllTime = None
|
|
26458
26479
|
self._AuthorizedUsers = None
|
|
26480
|
+
self._RealWidth = None
|
|
26481
|
+
self._RealHeight = None
|
|
26482
|
+
self._SealDescription = None
|
|
26459
26483
|
|
|
26460
26484
|
@property
|
|
26461
26485
|
def SealId(self):
|
|
@@ -26584,6 +26608,39 @@ class OccupiedSeal(AbstractModel):
|
|
|
26584
26608
|
def AuthorizedUsers(self, AuthorizedUsers):
|
|
26585
26609
|
self._AuthorizedUsers = AuthorizedUsers
|
|
26586
26610
|
|
|
26611
|
+
@property
|
|
26612
|
+
def RealWidth(self):
|
|
26613
|
+
"""印章的真实宽度,单位毫米
|
|
26614
|
+
:rtype: int
|
|
26615
|
+
"""
|
|
26616
|
+
return self._RealWidth
|
|
26617
|
+
|
|
26618
|
+
@RealWidth.setter
|
|
26619
|
+
def RealWidth(self, RealWidth):
|
|
26620
|
+
self._RealWidth = RealWidth
|
|
26621
|
+
|
|
26622
|
+
@property
|
|
26623
|
+
def RealHeight(self):
|
|
26624
|
+
"""印章的真实高度,单位毫米
|
|
26625
|
+
:rtype: int
|
|
26626
|
+
"""
|
|
26627
|
+
return self._RealHeight
|
|
26628
|
+
|
|
26629
|
+
@RealHeight.setter
|
|
26630
|
+
def RealHeight(self, RealHeight):
|
|
26631
|
+
self._RealHeight = RealHeight
|
|
26632
|
+
|
|
26633
|
+
@property
|
|
26634
|
+
def SealDescription(self):
|
|
26635
|
+
"""印章描述
|
|
26636
|
+
:rtype: str
|
|
26637
|
+
"""
|
|
26638
|
+
return self._SealDescription
|
|
26639
|
+
|
|
26640
|
+
@SealDescription.setter
|
|
26641
|
+
def SealDescription(self, SealDescription):
|
|
26642
|
+
self._SealDescription = SealDescription
|
|
26643
|
+
|
|
26587
26644
|
|
|
26588
26645
|
def _deserialize(self, params):
|
|
26589
26646
|
self._SealId = params.get("SealId")
|
|
@@ -26602,6 +26659,9 @@ class OccupiedSeal(AbstractModel):
|
|
|
26602
26659
|
obj = AuthorizedUser()
|
|
26603
26660
|
obj._deserialize(item)
|
|
26604
26661
|
self._AuthorizedUsers.append(obj)
|
|
26662
|
+
self._RealWidth = params.get("RealWidth")
|
|
26663
|
+
self._RealHeight = params.get("RealHeight")
|
|
26664
|
+
self._SealDescription = params.get("SealDescription")
|
|
26605
26665
|
memeber_set = set(params.keys())
|
|
26606
26666
|
for name, value in vars(self).items():
|
|
26607
26667
|
property_name = name[1:]
|
|
@@ -1823,7 +1823,7 @@ class LkeClient(AbstractClient):
|
|
|
1823
1823
|
|
|
1824
1824
|
|
|
1825
1825
|
def ListSelectDoc(self, request):
|
|
1826
|
-
"""
|
|
1826
|
+
"""文档生成问答时,可通过该接口获得当前支持生成问答的文档列表,当前不支持xlsx、xls、csv格式的文档生成问答,且文档需处于待发布或已发布状态才可生成问答。
|
|
1827
1827
|
|
|
1828
1828
|
:param request: Request instance for ListSelectDoc.
|
|
1829
1829
|
:type request: :class:`tencentcloud.lke.v20231130.models.ListSelectDocRequest`
|