tencentcloud-sdk-python 3.0.1127__py2.py3-none-any.whl → 3.0.1129__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/aiart/v20221229/aiart_client.py +4 -11
- tencentcloud/aiart/v20221229/models.py +6 -5
- tencentcloud/antiddos/v20200309/models.py +13 -0
- tencentcloud/cdb/v20170320/cdb_client.py +46 -0
- tencentcloud/cdb/v20170320/errorcodes.py +3 -0
- tencentcloud/cdb/v20170320/models.py +360 -0
- tencentcloud/domain/v20180808/domain_client.py +46 -0
- tencentcloud/domain/v20180808/errorcodes.py +9 -0
- tencentcloud/domain/v20180808/models.py +269 -1
- tencentcloud/es/v20180416/models.py +12 -12
- tencentcloud/ess/v20201111/errorcodes.py +9 -0
- tencentcloud/ess/v20201111/ess_client.py +75 -3
- tencentcloud/ess/v20201111/models.py +354 -5
- tencentcloud/essbasic/v20210526/models.py +1 -2
- tencentcloud/faceid/v20180301/faceid_client.py +1 -1
- tencentcloud/faceid/v20180301/models.py +12 -0
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +8 -8
- tencentcloud/hunyuan/v20230901/models.py +121 -30
- tencentcloud/iai/v20180301/models.py +1 -0
- tencentcloud/lke/__init__.py +0 -0
- tencentcloud/lke/v20231130/__init__.py +0 -0
- tencentcloud/lke/v20231130/errorcodes.py +30 -0
- tencentcloud/lke/v20231130/lke_client.py +1751 -0
- tencentcloud/lke/v20231130/models.py +13358 -0
- tencentcloud/mna/v20210119/errorcodes.py +12 -0
- tencentcloud/mna/v20210119/models.py +301 -5
- tencentcloud/monitor/v20180724/models.py +28 -0
- tencentcloud/redis/v20180412/models.py +1 -1
- tencentcloud/sms/v20210111/models.py +1 -0
- tencentcloud/sqlserver/v20180328/errorcodes.py +3 -0
- tencentcloud/sqlserver/v20180328/models.py +94 -0
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +23 -0
- tencentcloud/tione/v20211111/models.py +48 -1
- tencentcloud/trtc/v20190722/models.py +72 -1
- tencentcloud/trtc/v20190722/trtc_client.py +3 -3
- tencentcloud/wedata/v20210820/models.py +345 -2088
- tencentcloud/wedata/v20210820/wedata_client.py +0 -253
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1129.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1129.dist-info}/RECORD +43 -38
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1129.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1129.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1129.dist-info}/top_level.txt +0 -0
|
@@ -171,6 +171,76 @@ class BatchStatus(AbstractModel):
|
|
|
171
171
|
|
|
172
172
|
|
|
173
173
|
|
|
174
|
+
class BidPreDomainsRequest(AbstractModel):
|
|
175
|
+
"""BidPreDomains请求参数结构体
|
|
176
|
+
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
def __init__(self):
|
|
180
|
+
r"""
|
|
181
|
+
:param _BusinessId: 业务ID
|
|
182
|
+
:type BusinessId: str
|
|
183
|
+
:param _Price: 价格
|
|
184
|
+
:type Price: int
|
|
185
|
+
"""
|
|
186
|
+
self._BusinessId = None
|
|
187
|
+
self._Price = None
|
|
188
|
+
|
|
189
|
+
@property
|
|
190
|
+
def BusinessId(self):
|
|
191
|
+
return self._BusinessId
|
|
192
|
+
|
|
193
|
+
@BusinessId.setter
|
|
194
|
+
def BusinessId(self, BusinessId):
|
|
195
|
+
self._BusinessId = BusinessId
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
def Price(self):
|
|
199
|
+
return self._Price
|
|
200
|
+
|
|
201
|
+
@Price.setter
|
|
202
|
+
def Price(self, Price):
|
|
203
|
+
self._Price = Price
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
def _deserialize(self, params):
|
|
207
|
+
self._BusinessId = params.get("BusinessId")
|
|
208
|
+
self._Price = params.get("Price")
|
|
209
|
+
memeber_set = set(params.keys())
|
|
210
|
+
for name, value in vars(self).items():
|
|
211
|
+
property_name = name[1:]
|
|
212
|
+
if property_name in memeber_set:
|
|
213
|
+
memeber_set.remove(property_name)
|
|
214
|
+
if len(memeber_set) > 0:
|
|
215
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
class BidPreDomainsResponse(AbstractModel):
|
|
220
|
+
"""BidPreDomains返回参数结构体
|
|
221
|
+
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
def __init__(self):
|
|
225
|
+
r"""
|
|
226
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
227
|
+
:type RequestId: str
|
|
228
|
+
"""
|
|
229
|
+
self._RequestId = None
|
|
230
|
+
|
|
231
|
+
@property
|
|
232
|
+
def RequestId(self):
|
|
233
|
+
return self._RequestId
|
|
234
|
+
|
|
235
|
+
@RequestId.setter
|
|
236
|
+
def RequestId(self, RequestId):
|
|
237
|
+
self._RequestId = RequestId
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
def _deserialize(self, params):
|
|
241
|
+
self._RequestId = params.get("RequestId")
|
|
242
|
+
|
|
243
|
+
|
|
174
244
|
class CertificateInfo(AbstractModel):
|
|
175
245
|
"""认证资料信息
|
|
176
246
|
|
|
@@ -2620,6 +2690,118 @@ class DescribePreDomainListResponse(AbstractModel):
|
|
|
2620
2690
|
self._RequestId = params.get("RequestId")
|
|
2621
2691
|
|
|
2622
2692
|
|
|
2693
|
+
class DescribeReservedBidInfoRequest(AbstractModel):
|
|
2694
|
+
"""DescribeReservedBidInfo请求参数结构体
|
|
2695
|
+
|
|
2696
|
+
"""
|
|
2697
|
+
|
|
2698
|
+
def __init__(self):
|
|
2699
|
+
r"""
|
|
2700
|
+
:param _BusinessId: 业务ID
|
|
2701
|
+
:type BusinessId: str
|
|
2702
|
+
"""
|
|
2703
|
+
self._BusinessId = None
|
|
2704
|
+
|
|
2705
|
+
@property
|
|
2706
|
+
def BusinessId(self):
|
|
2707
|
+
return self._BusinessId
|
|
2708
|
+
|
|
2709
|
+
@BusinessId.setter
|
|
2710
|
+
def BusinessId(self, BusinessId):
|
|
2711
|
+
self._BusinessId = BusinessId
|
|
2712
|
+
|
|
2713
|
+
|
|
2714
|
+
def _deserialize(self, params):
|
|
2715
|
+
self._BusinessId = params.get("BusinessId")
|
|
2716
|
+
memeber_set = set(params.keys())
|
|
2717
|
+
for name, value in vars(self).items():
|
|
2718
|
+
property_name = name[1:]
|
|
2719
|
+
if property_name in memeber_set:
|
|
2720
|
+
memeber_set.remove(property_name)
|
|
2721
|
+
if len(memeber_set) > 0:
|
|
2722
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2723
|
+
|
|
2724
|
+
|
|
2725
|
+
|
|
2726
|
+
class DescribeReservedBidInfoResponse(AbstractModel):
|
|
2727
|
+
"""DescribeReservedBidInfo返回参数结构体
|
|
2728
|
+
|
|
2729
|
+
"""
|
|
2730
|
+
|
|
2731
|
+
def __init__(self):
|
|
2732
|
+
r"""
|
|
2733
|
+
:param _UpPrice: 竞价领先价格
|
|
2734
|
+
:type UpPrice: int
|
|
2735
|
+
:param _Price: 请求用户当前价格
|
|
2736
|
+
:type Price: int
|
|
2737
|
+
:param _UpUser: 领先用户
|
|
2738
|
+
:type UpUser: str
|
|
2739
|
+
:param _BidList: 竞价详细数据
|
|
2740
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2741
|
+
:type BidList: list of ReserveBidInfo
|
|
2742
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2743
|
+
:type RequestId: str
|
|
2744
|
+
"""
|
|
2745
|
+
self._UpPrice = None
|
|
2746
|
+
self._Price = None
|
|
2747
|
+
self._UpUser = None
|
|
2748
|
+
self._BidList = None
|
|
2749
|
+
self._RequestId = None
|
|
2750
|
+
|
|
2751
|
+
@property
|
|
2752
|
+
def UpPrice(self):
|
|
2753
|
+
return self._UpPrice
|
|
2754
|
+
|
|
2755
|
+
@UpPrice.setter
|
|
2756
|
+
def UpPrice(self, UpPrice):
|
|
2757
|
+
self._UpPrice = UpPrice
|
|
2758
|
+
|
|
2759
|
+
@property
|
|
2760
|
+
def Price(self):
|
|
2761
|
+
return self._Price
|
|
2762
|
+
|
|
2763
|
+
@Price.setter
|
|
2764
|
+
def Price(self, Price):
|
|
2765
|
+
self._Price = Price
|
|
2766
|
+
|
|
2767
|
+
@property
|
|
2768
|
+
def UpUser(self):
|
|
2769
|
+
return self._UpUser
|
|
2770
|
+
|
|
2771
|
+
@UpUser.setter
|
|
2772
|
+
def UpUser(self, UpUser):
|
|
2773
|
+
self._UpUser = UpUser
|
|
2774
|
+
|
|
2775
|
+
@property
|
|
2776
|
+
def BidList(self):
|
|
2777
|
+
return self._BidList
|
|
2778
|
+
|
|
2779
|
+
@BidList.setter
|
|
2780
|
+
def BidList(self, BidList):
|
|
2781
|
+
self._BidList = BidList
|
|
2782
|
+
|
|
2783
|
+
@property
|
|
2784
|
+
def RequestId(self):
|
|
2785
|
+
return self._RequestId
|
|
2786
|
+
|
|
2787
|
+
@RequestId.setter
|
|
2788
|
+
def RequestId(self, RequestId):
|
|
2789
|
+
self._RequestId = RequestId
|
|
2790
|
+
|
|
2791
|
+
|
|
2792
|
+
def _deserialize(self, params):
|
|
2793
|
+
self._UpPrice = params.get("UpPrice")
|
|
2794
|
+
self._Price = params.get("Price")
|
|
2795
|
+
self._UpUser = params.get("UpUser")
|
|
2796
|
+
if params.get("BidList") is not None:
|
|
2797
|
+
self._BidList = []
|
|
2798
|
+
for item in params.get("BidList"):
|
|
2799
|
+
obj = ReserveBidInfo()
|
|
2800
|
+
obj._deserialize(item)
|
|
2801
|
+
self._BidList.append(obj)
|
|
2802
|
+
self._RequestId = params.get("RequestId")
|
|
2803
|
+
|
|
2804
|
+
|
|
2623
2805
|
class DescribeReservedPreDomainInfoRequest(AbstractModel):
|
|
2624
2806
|
"""DescribeReservedPreDomainInfo请求参数结构体
|
|
2625
2807
|
|
|
@@ -2629,7 +2811,7 @@ class DescribeReservedPreDomainInfoRequest(AbstractModel):
|
|
|
2629
2811
|
r"""
|
|
2630
2812
|
:param _DomainList: 域名,每次最多支持500条域名查询
|
|
2631
2813
|
:type DomainList: list of str
|
|
2632
|
-
:param _ReservedStatus: 状态,用于筛选,可不填写(1.
|
|
2814
|
+
:param _ReservedStatus: 状态,用于筛选,可不填写(1. 成功 2. 失败(失败Reason字段将会被赋值)3. 域名交割中 4. 域名交割完成 5. 预约 6. 竞价)
|
|
2633
2815
|
:type ReservedStatus: int
|
|
2634
2816
|
:param _ReservedTimeSort: 根据预约时间排序,仅支持:"desc","asc"。
|
|
2635
2817
|
:type ReservedTimeSort: str
|
|
@@ -4636,6 +4818,79 @@ class RenewDomainBatchResponse(AbstractModel):
|
|
|
4636
4818
|
self._RequestId = params.get("RequestId")
|
|
4637
4819
|
|
|
4638
4820
|
|
|
4821
|
+
class ReserveBidInfo(AbstractModel):
|
|
4822
|
+
"""合作商竞价详情
|
|
4823
|
+
|
|
4824
|
+
"""
|
|
4825
|
+
|
|
4826
|
+
def __init__(self):
|
|
4827
|
+
r"""
|
|
4828
|
+
:param _User: 用户
|
|
4829
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4830
|
+
:type User: str
|
|
4831
|
+
:param _Price: 出价
|
|
4832
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4833
|
+
:type Price: int
|
|
4834
|
+
:param _BidTime: 出价时间
|
|
4835
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4836
|
+
:type BidTime: str
|
|
4837
|
+
:param _BidStatus: 当前状态
|
|
4838
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4839
|
+
:type BidStatus: str
|
|
4840
|
+
"""
|
|
4841
|
+
self._User = None
|
|
4842
|
+
self._Price = None
|
|
4843
|
+
self._BidTime = None
|
|
4844
|
+
self._BidStatus = None
|
|
4845
|
+
|
|
4846
|
+
@property
|
|
4847
|
+
def User(self):
|
|
4848
|
+
return self._User
|
|
4849
|
+
|
|
4850
|
+
@User.setter
|
|
4851
|
+
def User(self, User):
|
|
4852
|
+
self._User = User
|
|
4853
|
+
|
|
4854
|
+
@property
|
|
4855
|
+
def Price(self):
|
|
4856
|
+
return self._Price
|
|
4857
|
+
|
|
4858
|
+
@Price.setter
|
|
4859
|
+
def Price(self, Price):
|
|
4860
|
+
self._Price = Price
|
|
4861
|
+
|
|
4862
|
+
@property
|
|
4863
|
+
def BidTime(self):
|
|
4864
|
+
return self._BidTime
|
|
4865
|
+
|
|
4866
|
+
@BidTime.setter
|
|
4867
|
+
def BidTime(self, BidTime):
|
|
4868
|
+
self._BidTime = BidTime
|
|
4869
|
+
|
|
4870
|
+
@property
|
|
4871
|
+
def BidStatus(self):
|
|
4872
|
+
return self._BidStatus
|
|
4873
|
+
|
|
4874
|
+
@BidStatus.setter
|
|
4875
|
+
def BidStatus(self, BidStatus):
|
|
4876
|
+
self._BidStatus = BidStatus
|
|
4877
|
+
|
|
4878
|
+
|
|
4879
|
+
def _deserialize(self, params):
|
|
4880
|
+
self._User = params.get("User")
|
|
4881
|
+
self._Price = params.get("Price")
|
|
4882
|
+
self._BidTime = params.get("BidTime")
|
|
4883
|
+
self._BidStatus = params.get("BidStatus")
|
|
4884
|
+
memeber_set = set(params.keys())
|
|
4885
|
+
for name, value in vars(self).items():
|
|
4886
|
+
property_name = name[1:]
|
|
4887
|
+
if property_name in memeber_set:
|
|
4888
|
+
memeber_set.remove(property_name)
|
|
4889
|
+
if len(memeber_set) > 0:
|
|
4890
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4891
|
+
|
|
4892
|
+
|
|
4893
|
+
|
|
4639
4894
|
class ReservedDomainInfo(AbstractModel):
|
|
4640
4895
|
"""查询预释放预约列表域名详情
|
|
4641
4896
|
|
|
@@ -4755,6 +5010,9 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
|
4755
5010
|
:param _ResourceId: 资源ID,用于删除资源信息
|
|
4756
5011
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4757
5012
|
:type ResourceId: str
|
|
5013
|
+
:param _BusinessId: 业务ID
|
|
5014
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5015
|
+
:type BusinessId: str
|
|
4758
5016
|
"""
|
|
4759
5017
|
self._Domain = None
|
|
4760
5018
|
self._ReservedStatus = None
|
|
@@ -4763,6 +5021,7 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
|
4763
5021
|
self._RegTime = None
|
|
4764
5022
|
self._ExpireTime = None
|
|
4765
5023
|
self._ResourceId = None
|
|
5024
|
+
self._BusinessId = None
|
|
4766
5025
|
|
|
4767
5026
|
@property
|
|
4768
5027
|
def Domain(self):
|
|
@@ -4820,6 +5079,14 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
|
4820
5079
|
def ResourceId(self, ResourceId):
|
|
4821
5080
|
self._ResourceId = ResourceId
|
|
4822
5081
|
|
|
5082
|
+
@property
|
|
5083
|
+
def BusinessId(self):
|
|
5084
|
+
return self._BusinessId
|
|
5085
|
+
|
|
5086
|
+
@BusinessId.setter
|
|
5087
|
+
def BusinessId(self, BusinessId):
|
|
5088
|
+
self._BusinessId = BusinessId
|
|
5089
|
+
|
|
4823
5090
|
|
|
4824
5091
|
def _deserialize(self, params):
|
|
4825
5092
|
self._Domain = params.get("Domain")
|
|
@@ -4829,6 +5096,7 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
|
4829
5096
|
self._RegTime = params.get("RegTime")
|
|
4830
5097
|
self._ExpireTime = params.get("ExpireTime")
|
|
4831
5098
|
self._ResourceId = params.get("ResourceId")
|
|
5099
|
+
self._BusinessId = params.get("BusinessId")
|
|
4832
5100
|
memeber_set = set(params.keys())
|
|
4833
5101
|
for name, value in vars(self).items():
|
|
4834
5102
|
property_name = name[1:]
|
|
@@ -1837,14 +1837,14 @@ class CreateServerlessInstanceRequest(AbstractModel):
|
|
|
1837
1837
|
|
|
1838
1838
|
def __init__(self):
|
|
1839
1839
|
r"""
|
|
1840
|
+
:param _IndexName: 索引名,需以-AppId结尾
|
|
1841
|
+
:type IndexName: str
|
|
1840
1842
|
:param _Zone: 可用区
|
|
1841
1843
|
:type Zone: str
|
|
1842
1844
|
:param _VpcId: 私有网络ID
|
|
1843
1845
|
:type VpcId: str
|
|
1844
1846
|
:param _SubnetId: 子网ID
|
|
1845
1847
|
:type SubnetId: str
|
|
1846
|
-
:param _IndexName: 索引名,需以-AppId结尾
|
|
1847
|
-
:type IndexName: str
|
|
1848
1848
|
:param _IndexMetaJson: 创建的索引元数据JSON,如mappings、settings
|
|
1849
1849
|
:type IndexMetaJson: str
|
|
1850
1850
|
:param _SpaceId: 创建索引的空间ID
|
|
@@ -1862,10 +1862,10 @@ class CreateServerlessInstanceRequest(AbstractModel):
|
|
|
1862
1862
|
:param _KibanaWhiteIpList: kibana公网白名单
|
|
1863
1863
|
:type KibanaWhiteIpList: list of str
|
|
1864
1864
|
"""
|
|
1865
|
+
self._IndexName = None
|
|
1865
1866
|
self._Zone = None
|
|
1866
1867
|
self._VpcId = None
|
|
1867
1868
|
self._SubnetId = None
|
|
1868
|
-
self._IndexName = None
|
|
1869
1869
|
self._IndexMetaJson = None
|
|
1870
1870
|
self._SpaceId = None
|
|
1871
1871
|
self._Username = None
|
|
@@ -1875,6 +1875,14 @@ class CreateServerlessInstanceRequest(AbstractModel):
|
|
|
1875
1875
|
self._TagList = None
|
|
1876
1876
|
self._KibanaWhiteIpList = None
|
|
1877
1877
|
|
|
1878
|
+
@property
|
|
1879
|
+
def IndexName(self):
|
|
1880
|
+
return self._IndexName
|
|
1881
|
+
|
|
1882
|
+
@IndexName.setter
|
|
1883
|
+
def IndexName(self, IndexName):
|
|
1884
|
+
self._IndexName = IndexName
|
|
1885
|
+
|
|
1878
1886
|
@property
|
|
1879
1887
|
def Zone(self):
|
|
1880
1888
|
return self._Zone
|
|
@@ -1899,14 +1907,6 @@ class CreateServerlessInstanceRequest(AbstractModel):
|
|
|
1899
1907
|
def SubnetId(self, SubnetId):
|
|
1900
1908
|
self._SubnetId = SubnetId
|
|
1901
1909
|
|
|
1902
|
-
@property
|
|
1903
|
-
def IndexName(self):
|
|
1904
|
-
return self._IndexName
|
|
1905
|
-
|
|
1906
|
-
@IndexName.setter
|
|
1907
|
-
def IndexName(self, IndexName):
|
|
1908
|
-
self._IndexName = IndexName
|
|
1909
|
-
|
|
1910
1910
|
@property
|
|
1911
1911
|
def IndexMetaJson(self):
|
|
1912
1912
|
return self._IndexMetaJson
|
|
@@ -1973,10 +1973,10 @@ class CreateServerlessInstanceRequest(AbstractModel):
|
|
|
1973
1973
|
|
|
1974
1974
|
|
|
1975
1975
|
def _deserialize(self, params):
|
|
1976
|
+
self._IndexName = params.get("IndexName")
|
|
1976
1977
|
self._Zone = params.get("Zone")
|
|
1977
1978
|
self._VpcId = params.get("VpcId")
|
|
1978
1979
|
self._SubnetId = params.get("SubnetId")
|
|
1979
|
-
self._IndexName = params.get("IndexName")
|
|
1980
1980
|
self._IndexMetaJson = params.get("IndexMetaJson")
|
|
1981
1981
|
self._SpaceId = params.get("SpaceId")
|
|
1982
1982
|
self._Username = params.get("Username")
|
|
@@ -137,6 +137,9 @@ INVALIDPARAMETER = 'InvalidParameter'
|
|
|
137
137
|
# 不合法的签署人类型,请检查后重试。
|
|
138
138
|
INVALIDPARAMETER_APPROVERTYPE = 'InvalidParameter.ApproverType'
|
|
139
139
|
|
|
140
|
+
# 不合法的授权方式,请检查修改后重试。
|
|
141
|
+
INVALIDPARAMETER_AUTHORIZATIONTYPE = 'InvalidParameter.AuthorizationType'
|
|
142
|
+
|
|
140
143
|
# 不合法的业务id,请检查是否传递,检查是否超过接口上限数量,并在修改后重试。
|
|
141
144
|
INVALIDPARAMETER_BUSINESSID = 'InvalidParameter.BusinessId'
|
|
142
145
|
|
|
@@ -254,6 +257,9 @@ INVALIDPARAMETER_INVALIDROLENAME = 'InvalidParameter.InvalidRoleName'
|
|
|
254
257
|
# 实名认证渠道不正确。
|
|
255
258
|
INVALIDPARAMETER_INVALIDVERIFYCHANNEL = 'InvalidParameter.InvalidVerifyChannel'
|
|
256
259
|
|
|
260
|
+
# 不合法的跳转链接,请联系电子签客服添加链接白名单。
|
|
261
|
+
INVALIDPARAMETER_JUMPURL = 'InvalidParameter.JumpUrl'
|
|
262
|
+
|
|
257
263
|
# Limit参数超出最大限制
|
|
258
264
|
INVALIDPARAMETER_LIMIT = 'InvalidParameter.Limit'
|
|
259
265
|
|
|
@@ -380,6 +386,9 @@ MISSINGPARAMETER_FLOWID = 'MissingParameter.FlowId'
|
|
|
380
386
|
# 未找到关键字配置信息,请检查控件传参,检查文件资源配置,并在修改后重试。
|
|
381
387
|
MISSINGPARAMETER_KEYWORD = 'MissingParameter.KeyWord'
|
|
382
388
|
|
|
389
|
+
# 缺少机构ID参数。
|
|
390
|
+
MISSINGPARAMETER_ORGANIZATIONID = 'MissingParameter.OrganizationId'
|
|
391
|
+
|
|
383
392
|
# 缺少签署二维码id,请检查后重试。
|
|
384
393
|
MISSINGPARAMETER_QRCODEID = 'MissingParameter.QrCodeId'
|
|
385
394
|
|
|
@@ -178,6 +178,51 @@ class EssClient(AbstractClient):
|
|
|
178
178
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
179
179
|
|
|
180
180
|
|
|
181
|
+
def CreateBatchOrganizationRegistrationTasks(self, request):
|
|
182
|
+
"""本接口(CreateBatchOrganizationRegistrationTasks)用于批量创建企业认证链接
|
|
183
|
+
该接口为异步提交任务接口,需要跟查询企业批量认证链接(DescribeBatchOrganizationRegistrationUrls) 配合使用.
|
|
184
|
+
|
|
185
|
+
批量创建链接有以下限制:
|
|
186
|
+
|
|
187
|
+
1. 单次最多创建10个企业。
|
|
188
|
+
2. 一天同一家企业最多创建8000家企业。
|
|
189
|
+
3. 同一批创建的企业不能重复 其中包括 企业名称,企业统一信用代码
|
|
190
|
+
4. 跳转到小程序的实现,参考微信官方文档(分为全屏、半屏两种方式),如何配置也可以请参考: 跳转电子签小程序配置
|
|
191
|
+
|
|
192
|
+
注:
|
|
193
|
+
|
|
194
|
+
1. **此接口需要购买单独的实名套餐包方可调用,如有需求请联系对接人员评估**
|
|
195
|
+
|
|
196
|
+
2. 如果生成的链接是APP链接,跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
**腾讯电子签小程序的AppID 和 原始Id如下:**
|
|
200
|
+
|
|
201
|
+
| 小程序 | AppID | 原始ID |
|
|
202
|
+
| --- | --- | --- |
|
|
203
|
+
| 腾讯电子签(正式版) | wxa023b292fd19d41d | gh_da88f6188665 |
|
|
204
|
+
| 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
|
|
205
|
+
|
|
206
|
+
:param request: Request instance for CreateBatchOrganizationRegistrationTasks.
|
|
207
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.CreateBatchOrganizationRegistrationTasksRequest`
|
|
208
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.CreateBatchOrganizationRegistrationTasksResponse`
|
|
209
|
+
|
|
210
|
+
"""
|
|
211
|
+
try:
|
|
212
|
+
params = request._serialize()
|
|
213
|
+
headers = request.headers
|
|
214
|
+
body = self.call("CreateBatchOrganizationRegistrationTasks", params, headers=headers)
|
|
215
|
+
response = json.loads(body)
|
|
216
|
+
model = models.CreateBatchOrganizationRegistrationTasksResponse()
|
|
217
|
+
model._deserialize(response["Response"])
|
|
218
|
+
return model
|
|
219
|
+
except Exception as e:
|
|
220
|
+
if isinstance(e, TencentCloudSDKException):
|
|
221
|
+
raise
|
|
222
|
+
else:
|
|
223
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
224
|
+
|
|
225
|
+
|
|
181
226
|
def CreateBatchQuickSignUrl(self, request):
|
|
182
227
|
"""该接口用于发起合同后,生成个人用户的批量签署链接, 暂时不支持企业端签署。
|
|
183
228
|
**注意:**
|
|
@@ -952,12 +997,39 @@ class EssClient(AbstractClient):
|
|
|
952
997
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
953
998
|
|
|
954
999
|
|
|
1000
|
+
def CreateOrganizationAuthUrl(self, request):
|
|
1001
|
+
"""本接口(CreateOrganizationAuthUrl)用于生成创建企业认证链接。
|
|
1002
|
+
用于业务方系统自己生成认证链接进行跳转.而不用电子签自带的生成链接
|
|
1003
|
+
|
|
1004
|
+
注: **此接口需要购买单独的实名套餐包方可调用,如有需求请联系对接人员评估**
|
|
1005
|
+
|
|
1006
|
+
:param request: Request instance for CreateOrganizationAuthUrl.
|
|
1007
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.CreateOrganizationAuthUrlRequest`
|
|
1008
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.CreateOrganizationAuthUrlResponse`
|
|
1009
|
+
|
|
1010
|
+
"""
|
|
1011
|
+
try:
|
|
1012
|
+
params = request._serialize()
|
|
1013
|
+
headers = request.headers
|
|
1014
|
+
body = self.call("CreateOrganizationAuthUrl", params, headers=headers)
|
|
1015
|
+
response = json.loads(body)
|
|
1016
|
+
model = models.CreateOrganizationAuthUrlResponse()
|
|
1017
|
+
model._deserialize(response["Response"])
|
|
1018
|
+
return model
|
|
1019
|
+
except Exception as e:
|
|
1020
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1021
|
+
raise
|
|
1022
|
+
else:
|
|
1023
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1024
|
+
|
|
1025
|
+
|
|
955
1026
|
def CreateOrganizationBatchSignUrl(self, request):
|
|
956
1027
|
"""使用此接口,您可以创建企业批量签署链接,员工只需点击链接即可跳转至控制台进行批量签署。<br/>
|
|
957
1028
|
附注:
|
|
958
|
-
-
|
|
959
|
-
-
|
|
960
|
-
-
|
|
1029
|
+
- 员工必须需作为批量签署合同的签署方,or或签合同的候选人之一。
|
|
1030
|
+
- 对于本方企业:如有UserId,应以UserId为主要标识;如果没有UserId,则必须填写Name和Mobile信息。
|
|
1031
|
+
- 若要生成他发企业签署链接:应传RecipientIds,且制定的合同必须是接口调用方发起的。
|
|
1032
|
+
- 支持待签署、待填写状态的合同生成签署链接。
|
|
961
1033
|
|
|
962
1034
|
:param request: Request instance for CreateOrganizationBatchSignUrl.
|
|
963
1035
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreateOrganizationBatchSignUrlRequest`
|