tencentcloud-sdk-python 3.0.1405__py2.py3-none-any.whl → 3.0.1407__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/antiddos/v20200309/models.py +4 -4
- tencentcloud/asr/v20190614/models.py +2 -2
- tencentcloud/captcha/v20190722/models.py +15 -0
- tencentcloud/cdb/v20170320/models.py +2 -0
- tencentcloud/cdwdoris/v20211228/models.py +4 -4
- tencentcloud/cfs/v20190719/models.py +6 -6
- tencentcloud/cfw/v20190904/models.py +15 -0
- tencentcloud/cme/v20191029/cme_client.py +13 -13
- tencentcloud/csip/v20221121/models.py +15 -0
- tencentcloud/domain/v20180808/errorcodes.py +6 -0
- tencentcloud/es/v20250101/models.py +117 -0
- tencentcloud/ess/v20201111/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +51 -0
- tencentcloud/ess/v20201111/models.py +409 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +54 -1
- tencentcloud/essbasic/v20210526/models.py +367 -0
- tencentcloud/gs/v20191118/models.py +17 -2
- tencentcloud/hunyuan/v20230901/models.py +9 -5
- tencentcloud/lighthouse/v20200324/errorcodes.py +21 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +29 -0
- tencentcloud/lighthouse/v20200324/models.py +79 -0
- tencentcloud/live/v20180801/live_client.py +115 -0
- tencentcloud/live/v20180801/models.py +1006 -48
- tencentcloud/lke/v20231130/lke_client.py +46 -0
- tencentcloud/lke/v20231130/models.py +248 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/lkeap/v20240522/models.py +8 -4
- tencentcloud/mps/v20190612/models.py +202 -2
- tencentcloud/tdmq/v20200217/models.py +247 -33
- tencentcloud/teo/v20220901/models.py +2 -2
- tencentcloud/tiia/v20190529/models.py +0 -262
- tencentcloud/tiia/v20190529/tiia_client.py +0 -26
- tencentcloud/tione/v20211111/models.py +348 -0
- tencentcloud/tione/v20211111/tione_client.py +92 -0
- tencentcloud/tke/v20180525/errorcodes.py +1 -1
- tencentcloud/tke/v20220501/errorcodes.py +1 -1
- tencentcloud/trocket/v20230308/models.py +581 -2
- tencentcloud/trocket/v20230308/trocket_client.py +56 -0
- tencentcloud/trtc/v20190722/models.py +1 -1
- tencentcloud/tsf/v20180326/models.py +8 -0
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/top_level.txt +0 -0
@@ -1810,6 +1810,122 @@ class AutoSignConfig(AbstractModel):
|
|
1810
1810
|
|
1811
1811
|
|
1812
1812
|
|
1813
|
+
class BatchOrganizationRegistrationTasksDetails(AbstractModel):
|
1814
|
+
"""批量认证企业任务详情信息,其中包括 TaskId,状态信息等等。
|
1815
|
+
|
1816
|
+
"""
|
1817
|
+
|
1818
|
+
def __init__(self):
|
1819
|
+
r"""
|
1820
|
+
:param _TaskId: 生成注册链接的任务Id
|
1821
|
+
:type TaskId: str
|
1822
|
+
:param _Status: 批量创建企业任务的状态
|
1823
|
+
<ul>
|
1824
|
+
<li>Processing</li>
|
1825
|
+
<li>Create</li>
|
1826
|
+
<li>Submit</li>
|
1827
|
+
<li>Authorization</li>
|
1828
|
+
<li>Failed</li>
|
1829
|
+
</ul>
|
1830
|
+
|
1831
|
+
各个状态所代表的含义如下表格所示:
|
1832
|
+
<table>
|
1833
|
+
<thead align="center" valign="center">
|
1834
|
+
<tr><th>任务状态名称</th><th>任务状态详情</th></tr>
|
1835
|
+
</thead>
|
1836
|
+
<tbody>
|
1837
|
+
<tr><th align="center" valign="center">Processing</th><th>企业认证任务处理中,用户调用了<a href="https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks">CreateBatchOrganizationRegistrationTasks</a>接口,但是任务还在处理中的状态</th></tr>
|
1838
|
+
<tr><th align="center" valign="center">Create</th><th>创建企业认证链接任务完成,可以调用生成任务链接接口</th></tr>
|
1839
|
+
<tr><th align="center" valign="center">Submit</th><th>企业认证任务已提交,到如下界面之后,会变为这个状态
|
1840
|
+
|
1841
|
+
</th></tr>
|
1842
|
+
<tr><th align="center" valign="center">Authorization</th><th>企业认证任务认证成功,点击下图下一步,进入到授权书上传或者法人认证,则会变为这个状态
|
1843
|
+
|
1844
|
+
</th></tr>
|
1845
|
+
<tr><th align="center" valign="center">Failed</th><th>企业认证任务失败</th></tr>
|
1846
|
+
</tbody>
|
1847
|
+
</table>
|
1848
|
+
:type Status: str
|
1849
|
+
:param _ErrorMessage: 如果任务失败,会返回错误信息
|
1850
|
+
:type ErrorMessage: str
|
1851
|
+
"""
|
1852
|
+
self._TaskId = None
|
1853
|
+
self._Status = None
|
1854
|
+
self._ErrorMessage = None
|
1855
|
+
|
1856
|
+
@property
|
1857
|
+
def TaskId(self):
|
1858
|
+
"""生成注册链接的任务Id
|
1859
|
+
:rtype: str
|
1860
|
+
"""
|
1861
|
+
return self._TaskId
|
1862
|
+
|
1863
|
+
@TaskId.setter
|
1864
|
+
def TaskId(self, TaskId):
|
1865
|
+
self._TaskId = TaskId
|
1866
|
+
|
1867
|
+
@property
|
1868
|
+
def Status(self):
|
1869
|
+
"""批量创建企业任务的状态
|
1870
|
+
<ul>
|
1871
|
+
<li>Processing</li>
|
1872
|
+
<li>Create</li>
|
1873
|
+
<li>Submit</li>
|
1874
|
+
<li>Authorization</li>
|
1875
|
+
<li>Failed</li>
|
1876
|
+
</ul>
|
1877
|
+
|
1878
|
+
各个状态所代表的含义如下表格所示:
|
1879
|
+
<table>
|
1880
|
+
<thead align="center" valign="center">
|
1881
|
+
<tr><th>任务状态名称</th><th>任务状态详情</th></tr>
|
1882
|
+
</thead>
|
1883
|
+
<tbody>
|
1884
|
+
<tr><th align="center" valign="center">Processing</th><th>企业认证任务处理中,用户调用了<a href="https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks">CreateBatchOrganizationRegistrationTasks</a>接口,但是任务还在处理中的状态</th></tr>
|
1885
|
+
<tr><th align="center" valign="center">Create</th><th>创建企业认证链接任务完成,可以调用生成任务链接接口</th></tr>
|
1886
|
+
<tr><th align="center" valign="center">Submit</th><th>企业认证任务已提交,到如下界面之后,会变为这个状态
|
1887
|
+
|
1888
|
+
</th></tr>
|
1889
|
+
<tr><th align="center" valign="center">Authorization</th><th>企业认证任务认证成功,点击下图下一步,进入到授权书上传或者法人认证,则会变为这个状态
|
1890
|
+
|
1891
|
+
</th></tr>
|
1892
|
+
<tr><th align="center" valign="center">Failed</th><th>企业认证任务失败</th></tr>
|
1893
|
+
</tbody>
|
1894
|
+
</table>
|
1895
|
+
:rtype: str
|
1896
|
+
"""
|
1897
|
+
return self._Status
|
1898
|
+
|
1899
|
+
@Status.setter
|
1900
|
+
def Status(self, Status):
|
1901
|
+
self._Status = Status
|
1902
|
+
|
1903
|
+
@property
|
1904
|
+
def ErrorMessage(self):
|
1905
|
+
"""如果任务失败,会返回错误信息
|
1906
|
+
:rtype: str
|
1907
|
+
"""
|
1908
|
+
return self._ErrorMessage
|
1909
|
+
|
1910
|
+
@ErrorMessage.setter
|
1911
|
+
def ErrorMessage(self, ErrorMessage):
|
1912
|
+
self._ErrorMessage = ErrorMessage
|
1913
|
+
|
1914
|
+
|
1915
|
+
def _deserialize(self, params):
|
1916
|
+
self._TaskId = params.get("TaskId")
|
1917
|
+
self._Status = params.get("Status")
|
1918
|
+
self._ErrorMessage = params.get("ErrorMessage")
|
1919
|
+
memeber_set = set(params.keys())
|
1920
|
+
for name, value in vars(self).items():
|
1921
|
+
property_name = name[1:]
|
1922
|
+
if property_name in memeber_set:
|
1923
|
+
memeber_set.remove(property_name)
|
1924
|
+
if len(memeber_set) > 0:
|
1925
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1926
|
+
|
1927
|
+
|
1928
|
+
|
1813
1929
|
class BillUsageDetail(AbstractModel):
|
1814
1930
|
"""用户计费使用情况详情
|
1815
1931
|
|
@@ -4526,11 +4642,22 @@ class CreateBatchOrganizationRegistrationTasksRequest(AbstractModel):
|
|
4526
4642
|
<li>SHORT_H5:生成H5跳转短链</li>
|
4527
4643
|
</ul>
|
4528
4644
|
:type Endpoint: str
|
4645
|
+
:param _BatchAuthMethod: 认证链接使用单链接还是多链接模式
|
4646
|
+
|
4647
|
+
<ul>
|
4648
|
+
<li>0 - 多链接(默认),指批量生成链接, 每一个企业会拥有一个认证链接,然后分别认证</li>
|
4649
|
+
<li>1 - 单链接 , 指批量生成链接,然后会将多个链接聚合成一个链接,进行认证</li>
|
4650
|
+
</ul>
|
4651
|
+
|
4652
|
+
p.s.
|
4653
|
+
请注意, 如果使用单链接的模式并且认证方式是授权书方式的时候,必须在接口中传递超管授权书。
|
4654
|
+
:type BatchAuthMethod: int
|
4529
4655
|
"""
|
4530
4656
|
self._Operator = None
|
4531
4657
|
self._RegistrationOrganizations = None
|
4532
4658
|
self._Agent = None
|
4533
4659
|
self._Endpoint = None
|
4660
|
+
self._BatchAuthMethod = None
|
4534
4661
|
|
4535
4662
|
@property
|
4536
4663
|
def Operator(self):
|
@@ -4587,6 +4714,25 @@ class CreateBatchOrganizationRegistrationTasksRequest(AbstractModel):
|
|
4587
4714
|
def Endpoint(self, Endpoint):
|
4588
4715
|
self._Endpoint = Endpoint
|
4589
4716
|
|
4717
|
+
@property
|
4718
|
+
def BatchAuthMethod(self):
|
4719
|
+
"""认证链接使用单链接还是多链接模式
|
4720
|
+
|
4721
|
+
<ul>
|
4722
|
+
<li>0 - 多链接(默认),指批量生成链接, 每一个企业会拥有一个认证链接,然后分别认证</li>
|
4723
|
+
<li>1 - 单链接 , 指批量生成链接,然后会将多个链接聚合成一个链接,进行认证</li>
|
4724
|
+
</ul>
|
4725
|
+
|
4726
|
+
p.s.
|
4727
|
+
请注意, 如果使用单链接的模式并且认证方式是授权书方式的时候,必须在接口中传递超管授权书。
|
4728
|
+
:rtype: int
|
4729
|
+
"""
|
4730
|
+
return self._BatchAuthMethod
|
4731
|
+
|
4732
|
+
@BatchAuthMethod.setter
|
4733
|
+
def BatchAuthMethod(self, BatchAuthMethod):
|
4734
|
+
self._BatchAuthMethod = BatchAuthMethod
|
4735
|
+
|
4590
4736
|
|
4591
4737
|
def _deserialize(self, params):
|
4592
4738
|
if params.get("Operator") is not None:
|
@@ -4602,6 +4748,7 @@ class CreateBatchOrganizationRegistrationTasksRequest(AbstractModel):
|
|
4602
4748
|
self._Agent = Agent()
|
4603
4749
|
self._Agent._deserialize(params.get("Agent"))
|
4604
4750
|
self._Endpoint = params.get("Endpoint")
|
4751
|
+
self._BatchAuthMethod = params.get("BatchAuthMethod")
|
4605
4752
|
memeber_set = set(params.keys())
|
4606
4753
|
for name, value in vars(self).items():
|
4607
4754
|
property_name = name[1:]
|
@@ -11519,6 +11666,146 @@ class CreateLegalSealQrCodeResponse(AbstractModel):
|
|
11519
11666
|
self._RequestId = params.get("RequestId")
|
11520
11667
|
|
11521
11668
|
|
11669
|
+
class CreateModifyAdminAuthorizationUrlRequest(AbstractModel):
|
11670
|
+
"""CreateModifyAdminAuthorizationUrl请求参数结构体
|
11671
|
+
|
11672
|
+
"""
|
11673
|
+
|
11674
|
+
def __init__(self):
|
11675
|
+
r"""
|
11676
|
+
:param _Operator: 执行本接口操作的员工信息。
|
11677
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
11678
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
11679
|
+
:param _Agent: 代理企业和员工的信息。
|
11680
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
11681
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
11682
|
+
:param _AuthorizationId: 企业认证流Id,可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)得到
|
11683
|
+
:type AuthorizationId: str
|
11684
|
+
:param _Endpoint: 要跳转的链接类型<ul><li> **HTTP**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li><li>**HTTP_SHORT_URL**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型,此时返回短链</li><li>**APP**: 第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li><li>**PC**: 跳转电子签web 端控制台的链接。</li></ul>
|
11685
|
+
:type Endpoint: str
|
11686
|
+
"""
|
11687
|
+
self._Operator = None
|
11688
|
+
self._Agent = None
|
11689
|
+
self._AuthorizationId = None
|
11690
|
+
self._Endpoint = None
|
11691
|
+
|
11692
|
+
@property
|
11693
|
+
def Operator(self):
|
11694
|
+
"""执行本接口操作的员工信息。
|
11695
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
11696
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
11697
|
+
"""
|
11698
|
+
return self._Operator
|
11699
|
+
|
11700
|
+
@Operator.setter
|
11701
|
+
def Operator(self, Operator):
|
11702
|
+
self._Operator = Operator
|
11703
|
+
|
11704
|
+
@property
|
11705
|
+
def Agent(self):
|
11706
|
+
"""代理企业和员工的信息。
|
11707
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
11708
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
11709
|
+
"""
|
11710
|
+
return self._Agent
|
11711
|
+
|
11712
|
+
@Agent.setter
|
11713
|
+
def Agent(self, Agent):
|
11714
|
+
self._Agent = Agent
|
11715
|
+
|
11716
|
+
@property
|
11717
|
+
def AuthorizationId(self):
|
11718
|
+
"""企业认证流Id,可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)得到
|
11719
|
+
:rtype: str
|
11720
|
+
"""
|
11721
|
+
return self._AuthorizationId
|
11722
|
+
|
11723
|
+
@AuthorizationId.setter
|
11724
|
+
def AuthorizationId(self, AuthorizationId):
|
11725
|
+
self._AuthorizationId = AuthorizationId
|
11726
|
+
|
11727
|
+
@property
|
11728
|
+
def Endpoint(self):
|
11729
|
+
"""要跳转的链接类型<ul><li> **HTTP**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li><li>**HTTP_SHORT_URL**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型,此时返回短链</li><li>**APP**: 第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li><li>**PC**: 跳转电子签web 端控制台的链接。</li></ul>
|
11730
|
+
:rtype: str
|
11731
|
+
"""
|
11732
|
+
return self._Endpoint
|
11733
|
+
|
11734
|
+
@Endpoint.setter
|
11735
|
+
def Endpoint(self, Endpoint):
|
11736
|
+
self._Endpoint = Endpoint
|
11737
|
+
|
11738
|
+
|
11739
|
+
def _deserialize(self, params):
|
11740
|
+
if params.get("Operator") is not None:
|
11741
|
+
self._Operator = UserInfo()
|
11742
|
+
self._Operator._deserialize(params.get("Operator"))
|
11743
|
+
if params.get("Agent") is not None:
|
11744
|
+
self._Agent = Agent()
|
11745
|
+
self._Agent._deserialize(params.get("Agent"))
|
11746
|
+
self._AuthorizationId = params.get("AuthorizationId")
|
11747
|
+
self._Endpoint = params.get("Endpoint")
|
11748
|
+
memeber_set = set(params.keys())
|
11749
|
+
for name, value in vars(self).items():
|
11750
|
+
property_name = name[1:]
|
11751
|
+
if property_name in memeber_set:
|
11752
|
+
memeber_set.remove(property_name)
|
11753
|
+
if len(memeber_set) > 0:
|
11754
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
11755
|
+
|
11756
|
+
|
11757
|
+
|
11758
|
+
class CreateModifyAdminAuthorizationUrlResponse(AbstractModel):
|
11759
|
+
"""CreateModifyAdminAuthorizationUrl返回参数结构体
|
11760
|
+
|
11761
|
+
"""
|
11762
|
+
|
11763
|
+
def __init__(self):
|
11764
|
+
r"""
|
11765
|
+
:param _Url: 变更企业超管授权书链接。
|
11766
|
+
没有有效期限制。
|
11767
|
+
|
11768
|
+
注意:
|
11769
|
+
此链接仅能由当时认证企业的认证人使用。
|
11770
|
+
:type Url: str
|
11771
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11772
|
+
:type RequestId: str
|
11773
|
+
"""
|
11774
|
+
self._Url = None
|
11775
|
+
self._RequestId = None
|
11776
|
+
|
11777
|
+
@property
|
11778
|
+
def Url(self):
|
11779
|
+
"""变更企业超管授权书链接。
|
11780
|
+
没有有效期限制。
|
11781
|
+
|
11782
|
+
注意:
|
11783
|
+
此链接仅能由当时认证企业的认证人使用。
|
11784
|
+
:rtype: str
|
11785
|
+
"""
|
11786
|
+
return self._Url
|
11787
|
+
|
11788
|
+
@Url.setter
|
11789
|
+
def Url(self, Url):
|
11790
|
+
self._Url = Url
|
11791
|
+
|
11792
|
+
@property
|
11793
|
+
def RequestId(self):
|
11794
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11795
|
+
:rtype: str
|
11796
|
+
"""
|
11797
|
+
return self._RequestId
|
11798
|
+
|
11799
|
+
@RequestId.setter
|
11800
|
+
def RequestId(self, RequestId):
|
11801
|
+
self._RequestId = RequestId
|
11802
|
+
|
11803
|
+
|
11804
|
+
def _deserialize(self, params):
|
11805
|
+
self._Url = params.get("Url")
|
11806
|
+
self._RequestId = params.get("RequestId")
|
11807
|
+
|
11808
|
+
|
11522
11809
|
class CreateMultiFlowSignQRCodeRequest(AbstractModel):
|
11523
11810
|
"""CreateMultiFlowSignQRCode请求参数结构体
|
11524
11811
|
|
@@ -18327,6 +18614,128 @@ class Department(AbstractModel):
|
|
18327
18614
|
|
18328
18615
|
|
18329
18616
|
|
18617
|
+
class DescribeBatchOrganizationRegistrationTasksRequest(AbstractModel):
|
18618
|
+
"""DescribeBatchOrganizationRegistrationTasks请求参数结构体
|
18619
|
+
|
18620
|
+
"""
|
18621
|
+
|
18622
|
+
def __init__(self):
|
18623
|
+
r"""
|
18624
|
+
:param _Operator: 执行本接口操作的员工信息。
|
18625
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
18626
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
18627
|
+
:param _Agent: 代理企业和员工的信息。
|
18628
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
18629
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
18630
|
+
:param _TaskIds: 企业批量认证链接的子任务 SubTaskId,该 SubTaskId 是通过接口[查询企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/DescribeBatchOrganizationRegistrationUrls)可以得到。
|
18631
|
+
:type TaskIds: list of str
|
18632
|
+
"""
|
18633
|
+
self._Operator = None
|
18634
|
+
self._Agent = None
|
18635
|
+
self._TaskIds = None
|
18636
|
+
|
18637
|
+
@property
|
18638
|
+
def Operator(self):
|
18639
|
+
"""执行本接口操作的员工信息。
|
18640
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
18641
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
18642
|
+
"""
|
18643
|
+
return self._Operator
|
18644
|
+
|
18645
|
+
@Operator.setter
|
18646
|
+
def Operator(self, Operator):
|
18647
|
+
self._Operator = Operator
|
18648
|
+
|
18649
|
+
@property
|
18650
|
+
def Agent(self):
|
18651
|
+
"""代理企业和员工的信息。
|
18652
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
18653
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
18654
|
+
"""
|
18655
|
+
return self._Agent
|
18656
|
+
|
18657
|
+
@Agent.setter
|
18658
|
+
def Agent(self, Agent):
|
18659
|
+
self._Agent = Agent
|
18660
|
+
|
18661
|
+
@property
|
18662
|
+
def TaskIds(self):
|
18663
|
+
"""企业批量认证链接的子任务 SubTaskId,该 SubTaskId 是通过接口[查询企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/DescribeBatchOrganizationRegistrationUrls)可以得到。
|
18664
|
+
:rtype: list of str
|
18665
|
+
"""
|
18666
|
+
return self._TaskIds
|
18667
|
+
|
18668
|
+
@TaskIds.setter
|
18669
|
+
def TaskIds(self, TaskIds):
|
18670
|
+
self._TaskIds = TaskIds
|
18671
|
+
|
18672
|
+
|
18673
|
+
def _deserialize(self, params):
|
18674
|
+
if params.get("Operator") is not None:
|
18675
|
+
self._Operator = UserInfo()
|
18676
|
+
self._Operator._deserialize(params.get("Operator"))
|
18677
|
+
if params.get("Agent") is not None:
|
18678
|
+
self._Agent = Agent()
|
18679
|
+
self._Agent._deserialize(params.get("Agent"))
|
18680
|
+
self._TaskIds = params.get("TaskIds")
|
18681
|
+
memeber_set = set(params.keys())
|
18682
|
+
for name, value in vars(self).items():
|
18683
|
+
property_name = name[1:]
|
18684
|
+
if property_name in memeber_set:
|
18685
|
+
memeber_set.remove(property_name)
|
18686
|
+
if len(memeber_set) > 0:
|
18687
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
18688
|
+
|
18689
|
+
|
18690
|
+
|
18691
|
+
class DescribeBatchOrganizationRegistrationTasksResponse(AbstractModel):
|
18692
|
+
"""DescribeBatchOrganizationRegistrationTasks返回参数结构体
|
18693
|
+
|
18694
|
+
"""
|
18695
|
+
|
18696
|
+
def __init__(self):
|
18697
|
+
r"""
|
18698
|
+
:param _Details: 企业批量任务状态明细
|
18699
|
+
:type Details: list of BatchOrganizationRegistrationTasksDetails
|
18700
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18701
|
+
:type RequestId: str
|
18702
|
+
"""
|
18703
|
+
self._Details = None
|
18704
|
+
self._RequestId = None
|
18705
|
+
|
18706
|
+
@property
|
18707
|
+
def Details(self):
|
18708
|
+
"""企业批量任务状态明细
|
18709
|
+
:rtype: list of BatchOrganizationRegistrationTasksDetails
|
18710
|
+
"""
|
18711
|
+
return self._Details
|
18712
|
+
|
18713
|
+
@Details.setter
|
18714
|
+
def Details(self, Details):
|
18715
|
+
self._Details = Details
|
18716
|
+
|
18717
|
+
@property
|
18718
|
+
def RequestId(self):
|
18719
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18720
|
+
:rtype: str
|
18721
|
+
"""
|
18722
|
+
return self._RequestId
|
18723
|
+
|
18724
|
+
@RequestId.setter
|
18725
|
+
def RequestId(self, RequestId):
|
18726
|
+
self._RequestId = RequestId
|
18727
|
+
|
18728
|
+
|
18729
|
+
def _deserialize(self, params):
|
18730
|
+
if params.get("Details") is not None:
|
18731
|
+
self._Details = []
|
18732
|
+
for item in params.get("Details"):
|
18733
|
+
obj = BatchOrganizationRegistrationTasksDetails()
|
18734
|
+
obj._deserialize(item)
|
18735
|
+
self._Details.append(obj)
|
18736
|
+
self._RequestId = params.get("RequestId")
|
18737
|
+
|
18738
|
+
|
18330
18739
|
class DescribeBatchOrganizationRegistrationUrlsRequest(AbstractModel):
|
18331
18740
|
"""DescribeBatchOrganizationRegistrationUrls请求参数结构体
|
18332
18741
|
|
@@ -1760,6 +1760,8 @@ class EssbasicClient(AbstractClient):
|
|
1760
1760
|
def CreateChannelFlowEvidenceReport(self, request):
|
1761
1761
|
"""提交申请出证报告任务并返回报告ID。
|
1762
1762
|
|
1763
|
+
出证报告的示例样式可以参考 [出征报告.PDF](https://qcloudimg.tencent-cloud.cn/raw/a55214fcddaebbd1582cc9c57cc6cf1b.pdf)
|
1764
|
+
|
1763
1765
|
注意:
|
1764
1766
|
- 使用此功能**需搭配出证套餐** ,使用前请联系对接的客户经理沟通。
|
1765
1767
|
- 操作人必须是**发起方或者签署方企业的(非走授权书认证)法人或者超管**。
|
@@ -2256,6 +2258,32 @@ class EssbasicClient(AbstractClient):
|
|
2256
2258
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2257
2259
|
|
2258
2260
|
|
2261
|
+
def CreateModifyAdminAuthorizationUrl(self, request):
|
2262
|
+
"""本接口(CreateModifyAdminAuthorizationUrl)用于重新上传超管授权书。
|
2263
|
+
|
2264
|
+
注意:
|
2265
|
+
1. 重新上传超管授权书,必须是审核失败的情况下才能重新上传,可以通过回调[!授权书审核结果回调](https://qian.tencent.com/developers/partner/callback_types_staffs#%E5%9B%9B-%E6%8E%88%E6%9D%83%E4%B9%A6%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)得到
|
2266
|
+
|
2267
|
+
:param request: Request instance for CreateModifyAdminAuthorizationUrl.
|
2268
|
+
:type request: :class:`tencentcloud.essbasic.v20210526.models.CreateModifyAdminAuthorizationUrlRequest`
|
2269
|
+
:rtype: :class:`tencentcloud.essbasic.v20210526.models.CreateModifyAdminAuthorizationUrlResponse`
|
2270
|
+
|
2271
|
+
"""
|
2272
|
+
try:
|
2273
|
+
params = request._serialize()
|
2274
|
+
headers = request.headers
|
2275
|
+
body = self.call("CreateModifyAdminAuthorizationUrl", params, headers=headers)
|
2276
|
+
response = json.loads(body)
|
2277
|
+
model = models.CreateModifyAdminAuthorizationUrlResponse()
|
2278
|
+
model._deserialize(response["Response"])
|
2279
|
+
return model
|
2280
|
+
except Exception as e:
|
2281
|
+
if isinstance(e, TencentCloudSDKException):
|
2282
|
+
raise
|
2283
|
+
else:
|
2284
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2285
|
+
|
2286
|
+
|
2259
2287
|
def CreateOrganizationAuthFile(self, request):
|
2260
2288
|
"""生成合成后的各类企业授权书,包括:
|
2261
2289
|
- 企业认证超管授权书
|
@@ -2448,6 +2476,29 @@ class EssbasicClient(AbstractClient):
|
|
2448
2476
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2449
2477
|
|
2450
2478
|
|
2479
|
+
def DescribeBatchOrganizationRegistrationTasks(self, request):
|
2480
|
+
"""本接口(DescribeBatchOrganizationRegistrationTasks)用于查询企业批量认证任务状态。
|
2481
|
+
|
2482
|
+
:param request: Request instance for DescribeBatchOrganizationRegistrationTasks.
|
2483
|
+
:type request: :class:`tencentcloud.essbasic.v20210526.models.DescribeBatchOrganizationRegistrationTasksRequest`
|
2484
|
+
:rtype: :class:`tencentcloud.essbasic.v20210526.models.DescribeBatchOrganizationRegistrationTasksResponse`
|
2485
|
+
|
2486
|
+
"""
|
2487
|
+
try:
|
2488
|
+
params = request._serialize()
|
2489
|
+
headers = request.headers
|
2490
|
+
body = self.call("DescribeBatchOrganizationRegistrationTasks", params, headers=headers)
|
2491
|
+
response = json.loads(body)
|
2492
|
+
model = models.DescribeBatchOrganizationRegistrationTasksResponse()
|
2493
|
+
model._deserialize(response["Response"])
|
2494
|
+
return model
|
2495
|
+
except Exception as e:
|
2496
|
+
if isinstance(e, TencentCloudSDKException):
|
2497
|
+
raise
|
2498
|
+
else:
|
2499
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2500
|
+
|
2501
|
+
|
2451
2502
|
def DescribeBatchOrganizationRegistrationUrls(self, request):
|
2452
2503
|
"""此接口用于获取企业批量认证异步任务的状态及结果。需要先调用接口<a href="https://qian.tencent.com/developers/partnerApis/accounts/CreateBatchOrganizationRegistrationTasks" target="_blank">提交子企业批量认证链接创建任务</a>获取到任务ID,然后再调用此接口获取到各个子企业的注册认证链接。整体流程如下图。
|
2453
2504
|

|
@@ -3007,7 +3058,9 @@ class EssbasicClient(AbstractClient):
|
|
3007
3058
|
|
3008
3059
|
|
3009
3060
|
def PrepareFlows(self, request):
|
3010
|
-
"""
|
3061
|
+
"""已经不再使用
|
3062
|
+
|
3063
|
+
该接口 (PrepareFlows) 用于创建待发起文件
|
3011
3064
|
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
3012
3065
|
目前该接口只支持B2C,<font color='red'> **不建议使用**</font>。
|
3013
3066
|
|