tencentcloud-sdk-python 3.0.1443__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/batch/v20170312/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +422 -26
- tencentcloud/cls/v20201016/cls_client.py +1 -1
- tencentcloud/cls/v20201016/models.py +539 -172
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/models.py +105 -0
- tencentcloud/essbasic/v20210526/models.py +60 -0
- tencentcloud/keewidb/v20220308/errorcodes.py +3 -0
- tencentcloud/keewidb/v20220308/models.py +2 -2
- tencentcloud/lcic/v20220817/errorcodes.py +15 -0
- tencentcloud/lcic/v20220817/models.py +67 -16
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +1998 -50
- tencentcloud/lkeap/v20240522/errorcodes.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +4 -4
- tencentcloud/mps/v20190612/models.py +64 -0
- tencentcloud/ocr/v20181119/models.py +46 -16
- tencentcloud/partners/v20180321/models.py +4 -4
- tencentcloud/postgres/v20170312/errorcodes.py +0 -12
- tencentcloud/postgres/v20170312/models.py +191 -1527
- tencentcloud/postgres/v20170312/postgres_client.py +0 -75
- tencentcloud/sqlserver/v20180328/models.py +6 -6
- tencentcloud/sts/v20180813/sts_client.py +21 -7
- tencentcloud/tcbr/v20220217/models.py +151 -0
- tencentcloud/tcss/v20201101/models.py +45 -0
- tencentcloud/tke/v20180525/models.py +17 -2
- tencentcloud/trabbit/v20230418/models.py +75 -0
- tencentcloud/trocket/v20230308/models.py +319 -0
- tencentcloud/trocket/v20230308/trocket_client.py +25 -0
- tencentcloud/trtc/v20190722/errorcodes.py +3 -0
- tencentcloud/trtc/v20190722/models.py +6 -4
- tencentcloud/tsf/v20180326/errorcodes.py +15 -0
- tencentcloud/tsf/v20180326/models.py +989 -589
- tencentcloud/tsf/v20180326/tsf_client.py +1 -1
- tencentcloud/vod/v20180717/models.py +570 -10
- tencentcloud/vod/v20180717/vod_client.py +102 -0
- tencentcloud/waf/v20180125/errorcodes.py +6 -0
- tencentcloud/waf/v20180125/models.py +1926 -744
- tencentcloud/waf/v20180125/waf_client.py +161 -0
- tencentcloud/wedata/v20210820/models.py +204 -0
- {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1445.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1443.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:]
|
|
@@ -137,6 +137,9 @@ RESOURCEUNAVAILABLE_CALLOSSERROR = 'ResourceUnavailable.CallOssError'
|
|
|
137
137
|
# 实例配置错误。
|
|
138
138
|
RESOURCEUNAVAILABLE_INSTANCECONFERROR = 'ResourceUnavailable.InstanceConfError'
|
|
139
139
|
|
|
140
|
+
# 实例已经被回收了。
|
|
141
|
+
RESOURCEUNAVAILABLE_INSTANCEDELETED = 'ResourceUnavailable.InstanceDeleted'
|
|
142
|
+
|
|
140
143
|
# 实例已经被其它流程锁定。
|
|
141
144
|
RESOURCEUNAVAILABLE_INSTANCELOCKEDERROR = 'ResourceUnavailable.InstanceLockedError'
|
|
142
145
|
|
|
@@ -6743,7 +6743,7 @@ class ModifyInstanceRequest(AbstractModel):
|
|
|
6743
6743
|
:type InstanceNames: list of str
|
|
6744
6744
|
:param _ProjectId: 实例新的项目 ID。
|
|
6745
6745
|
:type ProjectId: int
|
|
6746
|
-
:param _AutoRenews: 包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</ul>
|
|
6746
|
+
:param _AutoRenews: 包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</li></ul>
|
|
6747
6747
|
:type AutoRenews: list of int
|
|
6748
6748
|
"""
|
|
6749
6749
|
self._Operation = None
|
|
@@ -6798,7 +6798,7 @@ class ModifyInstanceRequest(AbstractModel):
|
|
|
6798
6798
|
|
|
6799
6799
|
@property
|
|
6800
6800
|
def AutoRenews(self):
|
|
6801
|
-
"""包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</ul>
|
|
6801
|
+
"""包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</li></ul>
|
|
6802
6802
|
:rtype: list of int
|
|
6803
6803
|
"""
|
|
6804
6804
|
return self._AutoRenews
|
|
@@ -62,6 +62,9 @@ INVALIDPARAMETER_CONTENT = 'InvalidParameter.Content'
|
|
|
62
62
|
# css/js地址无法访问
|
|
63
63
|
INVALIDPARAMETER_CSSORJS = 'InvalidParameter.CssOrJs'
|
|
64
64
|
|
|
65
|
+
# DisableRecord参数错误
|
|
66
|
+
INVALIDPARAMETER_DISABLERECORD = 'InvalidParameter.DisableRecord'
|
|
67
|
+
|
|
65
68
|
# 结束时间不能早于开始时间。
|
|
66
69
|
INVALIDPARAMETER_ENDTIME = 'InvalidParameter.EndTime'
|
|
67
70
|
|
|
@@ -80,6 +83,15 @@ INVALIDPARAMETER_GROUPTEACHERSNOTEXIST = 'InvalidParameter.GroupTeachersNotExist
|
|
|
80
83
|
# 群组类型错误
|
|
81
84
|
INVALIDPARAMETER_GROUPTYPEINVALID = 'InvalidParameter.GroupTypeInvalid'
|
|
82
85
|
|
|
86
|
+
# LiveType参数错误
|
|
87
|
+
INVALIDPARAMETER_LIVETYPE = 'InvalidParameter.LiveType'
|
|
88
|
+
|
|
89
|
+
# MaxMicNumber参数错误
|
|
90
|
+
INVALIDPARAMETER_MAXMICNUMBER = 'InvalidParameter.MaxMicNumber'
|
|
91
|
+
|
|
92
|
+
# RecordLayout参数错误
|
|
93
|
+
INVALIDPARAMETER_RECORDLAYOUT = 'InvalidParameter.RecordLayout'
|
|
94
|
+
|
|
83
95
|
# room类型错误
|
|
84
96
|
INVALIDPARAMETER_ROOMTYPEINVALID = 'InvalidParameter.RoomTypeInvalid'
|
|
85
97
|
|
|
@@ -154,3 +166,6 @@ UNKNOWNPARAMETER = 'UnknownParameter'
|
|
|
154
166
|
|
|
155
167
|
# 操作不支持。
|
|
156
168
|
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
|
169
|
+
|
|
170
|
+
# 套餐包版本不支持
|
|
171
|
+
UNSUPPORTEDOPERATION_VERSION = 'UnsupportedOperation.Version'
|
|
@@ -2200,8 +2200,10 @@ class CreateRoomRequest(AbstractModel):
|
|
|
2200
2200
|
:type VideoOrientation: int
|
|
2201
2201
|
:param _IsGradingRequiredPostClass: 开启课后评分。 0:不开启(默认) 1:开启
|
|
2202
2202
|
:type IsGradingRequiredPostClass: int
|
|
2203
|
-
:param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放)注:大班课的布局(layout)只有三分屏
|
|
2203
|
+
:param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
|
|
2204
2204
|
:type RoomType: int
|
|
2205
|
+
:param _Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
|
2206
|
+
:type Guests: list of str
|
|
2205
2207
|
:param _EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
|
2206
2208
|
:type EndDelayTime: int
|
|
2207
2209
|
:param _LiveType: 直播类型:0 常规(默认)1 伪直播 2 RTMP推流直播
|
|
@@ -2212,8 +2214,12 @@ class CreateRoomRequest(AbstractModel):
|
|
|
2212
2214
|
:type EnableAutoStart: int
|
|
2213
2215
|
:param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
|
|
2214
2216
|
:type RecordBackground: str
|
|
2215
|
-
:param _RecordScene: 录制自定义场景。注意:仅recordlayout=9
|
|
2216
|
-
|
|
2217
|
+
:param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
|
2218
|
+
|
|
2219
|
+
自定义场景参数的含义。如下:
|
|
2220
|
+
scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。
|
|
2221
|
+
lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi)
|
|
2222
|
+
customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
|
|
2217
2223
|
:type RecordScene: str
|
|
2218
2224
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
|
2219
2225
|
:type RecordLang: str
|
|
@@ -2246,6 +2252,7 @@ class CreateRoomRequest(AbstractModel):
|
|
|
2246
2252
|
self._VideoOrientation = None
|
|
2247
2253
|
self._IsGradingRequiredPostClass = None
|
|
2248
2254
|
self._RoomType = None
|
|
2255
|
+
self._Guests = None
|
|
2249
2256
|
self._EndDelayTime = None
|
|
2250
2257
|
self._LiveType = None
|
|
2251
2258
|
self._RecordLiveUrl = None
|
|
@@ -2508,7 +2515,7 @@ class CreateRoomRequest(AbstractModel):
|
|
|
2508
2515
|
|
|
2509
2516
|
@property
|
|
2510
2517
|
def RoomType(self):
|
|
2511
|
-
"""课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放)注:大班课的布局(layout)只有三分屏
|
|
2518
|
+
"""课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
|
|
2512
2519
|
:rtype: int
|
|
2513
2520
|
"""
|
|
2514
2521
|
return self._RoomType
|
|
@@ -2517,6 +2524,17 @@ class CreateRoomRequest(AbstractModel):
|
|
|
2517
2524
|
def RoomType(self, RoomType):
|
|
2518
2525
|
self._RoomType = RoomType
|
|
2519
2526
|
|
|
2527
|
+
@property
|
|
2528
|
+
def Guests(self):
|
|
2529
|
+
"""嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
|
2530
|
+
:rtype: list of str
|
|
2531
|
+
"""
|
|
2532
|
+
return self._Guests
|
|
2533
|
+
|
|
2534
|
+
@Guests.setter
|
|
2535
|
+
def Guests(self, Guests):
|
|
2536
|
+
self._Guests = Guests
|
|
2537
|
+
|
|
2520
2538
|
@property
|
|
2521
2539
|
def EndDelayTime(self):
|
|
2522
2540
|
"""拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
|
@@ -2574,8 +2592,12 @@ class CreateRoomRequest(AbstractModel):
|
|
|
2574
2592
|
|
|
2575
2593
|
@property
|
|
2576
2594
|
def RecordScene(self):
|
|
2577
|
-
"""录制自定义场景。注意:仅recordlayout=9
|
|
2578
|
-
|
|
2595
|
+
"""录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
|
2596
|
+
|
|
2597
|
+
自定义场景参数的含义。如下:
|
|
2598
|
+
scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。
|
|
2599
|
+
lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi)
|
|
2600
|
+
customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
|
|
2579
2601
|
:rtype: str
|
|
2580
2602
|
"""
|
|
2581
2603
|
return self._RecordScene
|
|
@@ -2656,6 +2678,7 @@ class CreateRoomRequest(AbstractModel):
|
|
|
2656
2678
|
self._VideoOrientation = params.get("VideoOrientation")
|
|
2657
2679
|
self._IsGradingRequiredPostClass = params.get("IsGradingRequiredPostClass")
|
|
2658
2680
|
self._RoomType = params.get("RoomType")
|
|
2681
|
+
self._Guests = params.get("Guests")
|
|
2659
2682
|
self._EndDelayTime = params.get("EndDelayTime")
|
|
2660
2683
|
self._LiveType = params.get("LiveType")
|
|
2661
2684
|
self._RecordLiveUrl = params.get("RecordLiveUrl")
|
|
@@ -6258,7 +6281,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6258
6281
|
:type VideoOrientation: int
|
|
6259
6282
|
:param _IsGradingRequiredPostClass: 该课堂是否开启了课后评分功能。0:未开启 1:开启
|
|
6260
6283
|
:type IsGradingRequiredPostClass: int
|
|
6261
|
-
:param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (
|
|
6284
|
+
:param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
|
|
6262
6285
|
:type RoomType: int
|
|
6263
6286
|
:param _VideoDuration: 录制时长
|
|
6264
6287
|
:type VideoDuration: int
|
|
@@ -6274,7 +6297,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6274
6297
|
:type RecordBackground: str
|
|
6275
6298
|
:param _RTMPStreamingURL: RTMP推流链接
|
|
6276
6299
|
:type RTMPStreamingURL: str
|
|
6277
|
-
:param _RecordScene:
|
|
6300
|
+
:param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
|
|
6278
6301
|
:type RecordScene: str
|
|
6279
6302
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
|
6280
6303
|
:type RecordLang: str
|
|
@@ -6286,6 +6309,8 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6286
6309
|
:type WhiteBoardSnapshotMode: int
|
|
6287
6310
|
:param _SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
|
|
6288
6311
|
:type SubtitlesTranscription: int
|
|
6312
|
+
:param _Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
|
6313
|
+
:type Guests: list of str
|
|
6289
6314
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6290
6315
|
:type RequestId: str
|
|
6291
6316
|
"""
|
|
@@ -6323,6 +6348,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6323
6348
|
self._RecordLayout = None
|
|
6324
6349
|
self._WhiteBoardSnapshotMode = None
|
|
6325
6350
|
self._SubtitlesTranscription = None
|
|
6351
|
+
self._Guests = None
|
|
6326
6352
|
self._RequestId = None
|
|
6327
6353
|
|
|
6328
6354
|
@property
|
|
@@ -6559,7 +6585,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6559
6585
|
|
|
6560
6586
|
@property
|
|
6561
6587
|
def RoomType(self):
|
|
6562
|
-
"""课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (
|
|
6588
|
+
"""课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
|
|
6563
6589
|
:rtype: int
|
|
6564
6590
|
"""
|
|
6565
6591
|
return self._RoomType
|
|
@@ -6647,7 +6673,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6647
6673
|
|
|
6648
6674
|
@property
|
|
6649
6675
|
def RecordScene(self):
|
|
6650
|
-
"""
|
|
6676
|
+
"""录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
|
|
6651
6677
|
:rtype: str
|
|
6652
6678
|
"""
|
|
6653
6679
|
return self._RecordScene
|
|
@@ -6711,6 +6737,17 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6711
6737
|
def SubtitlesTranscription(self, SubtitlesTranscription):
|
|
6712
6738
|
self._SubtitlesTranscription = SubtitlesTranscription
|
|
6713
6739
|
|
|
6740
|
+
@property
|
|
6741
|
+
def Guests(self):
|
|
6742
|
+
"""嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
|
6743
|
+
:rtype: list of str
|
|
6744
|
+
"""
|
|
6745
|
+
return self._Guests
|
|
6746
|
+
|
|
6747
|
+
@Guests.setter
|
|
6748
|
+
def Guests(self, Guests):
|
|
6749
|
+
self._Guests = Guests
|
|
6750
|
+
|
|
6714
6751
|
@property
|
|
6715
6752
|
def RequestId(self):
|
|
6716
6753
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -6758,6 +6795,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
|
6758
6795
|
self._RecordLayout = params.get("RecordLayout")
|
|
6759
6796
|
self._WhiteBoardSnapshotMode = params.get("WhiteBoardSnapshotMode")
|
|
6760
6797
|
self._SubtitlesTranscription = params.get("SubtitlesTranscription")
|
|
6798
|
+
self._Guests = params.get("Guests")
|
|
6761
6799
|
self._RequestId = params.get("RequestId")
|
|
6762
6800
|
|
|
6763
6801
|
|
|
@@ -11638,8 +11676,7 @@ class RoomInfo(AbstractModel):
|
|
|
11638
11676
|
:type VideoOrientation: int
|
|
11639
11677
|
:param _IsGradingRequiredPostClass: 开启课后评分。 0:不开启(默认) 1:开启
|
|
11640
11678
|
:type IsGradingRequiredPostClass: int
|
|
11641
|
-
:param _RoomType:
|
|
11642
|
-
注:大班课的布局(layout)只有三分屏
|
|
11679
|
+
:param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
|
|
11643
11680
|
:type RoomType: int
|
|
11644
11681
|
:param _EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
|
11645
11682
|
:type EndDelayTime: int
|
|
@@ -11651,7 +11688,7 @@ class RoomInfo(AbstractModel):
|
|
|
11651
11688
|
:type EnableAutoStart: int
|
|
11652
11689
|
:param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
|
|
11653
11690
|
:type RecordBackground: str
|
|
11654
|
-
:param _RecordScene:
|
|
11691
|
+
:param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
|
|
11655
11692
|
:type RecordScene: str
|
|
11656
11693
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
|
11657
11694
|
:type RecordLang: str
|
|
@@ -11661,6 +11698,8 @@ class RoomInfo(AbstractModel):
|
|
|
11661
11698
|
:type WhiteBoardSnapshotMode: int
|
|
11662
11699
|
:param _SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
|
|
11663
11700
|
:type SubtitlesTranscription: int
|
|
11701
|
+
:param _Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
|
11702
|
+
:type Guests: list of str
|
|
11664
11703
|
"""
|
|
11665
11704
|
self._Name = None
|
|
11666
11705
|
self._StartTime = None
|
|
@@ -11693,6 +11732,7 @@ class RoomInfo(AbstractModel):
|
|
|
11693
11732
|
self._RecordStream = None
|
|
11694
11733
|
self._WhiteBoardSnapshotMode = None
|
|
11695
11734
|
self._SubtitlesTranscription = None
|
|
11735
|
+
self._Guests = None
|
|
11696
11736
|
|
|
11697
11737
|
@property
|
|
11698
11738
|
def Name(self):
|
|
@@ -11923,8 +11963,7 @@ class RoomInfo(AbstractModel):
|
|
|
11923
11963
|
|
|
11924
11964
|
@property
|
|
11925
11965
|
def RoomType(self):
|
|
11926
|
-
"""
|
|
11927
|
-
注:大班课的布局(layout)只有三分屏
|
|
11966
|
+
"""课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
|
|
11928
11967
|
:rtype: int
|
|
11929
11968
|
"""
|
|
11930
11969
|
return self._RoomType
|
|
@@ -11990,7 +12029,7 @@ class RoomInfo(AbstractModel):
|
|
|
11990
12029
|
|
|
11991
12030
|
@property
|
|
11992
12031
|
def RecordScene(self):
|
|
11993
|
-
"""
|
|
12032
|
+
"""录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
|
|
11994
12033
|
:rtype: str
|
|
11995
12034
|
"""
|
|
11996
12035
|
return self._RecordScene
|
|
@@ -12047,6 +12086,17 @@ class RoomInfo(AbstractModel):
|
|
|
12047
12086
|
def SubtitlesTranscription(self, SubtitlesTranscription):
|
|
12048
12087
|
self._SubtitlesTranscription = SubtitlesTranscription
|
|
12049
12088
|
|
|
12089
|
+
@property
|
|
12090
|
+
def Guests(self):
|
|
12091
|
+
"""嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
|
12092
|
+
:rtype: list of str
|
|
12093
|
+
"""
|
|
12094
|
+
return self._Guests
|
|
12095
|
+
|
|
12096
|
+
@Guests.setter
|
|
12097
|
+
def Guests(self, Guests):
|
|
12098
|
+
self._Guests = Guests
|
|
12099
|
+
|
|
12050
12100
|
|
|
12051
12101
|
def _deserialize(self, params):
|
|
12052
12102
|
self._Name = params.get("Name")
|
|
@@ -12080,6 +12130,7 @@ class RoomInfo(AbstractModel):
|
|
|
12080
12130
|
self._RecordStream = params.get("RecordStream")
|
|
12081
12131
|
self._WhiteBoardSnapshotMode = params.get("WhiteBoardSnapshotMode")
|
|
12082
12132
|
self._SubtitlesTranscription = params.get("SubtitlesTranscription")
|
|
12133
|
+
self._Guests = params.get("Guests")
|
|
12083
12134
|
memeber_set = set(params.keys())
|
|
12084
12135
|
for name, value in vars(self).items():
|
|
12085
12136
|
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`
|