tencentcloud-sdk-ess 3.0.590 → 3.0.592
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/client.rb +24 -0
- data/lib/v20201111/models.rb +419 -163
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93979317b1908791bdfe6f880bf38e0452f1898f
|
4
|
+
data.tar.gz: 0e2fd1eec65c484fa8b9a0e348280fee505d9234
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42d92d3f16987c38f1bdc2cd40d6b2632210dbe52b8069ba7a3eb148be00bbcf9d60481852e89d6a797d53b765402eff95d8f4e61585b8d66d0beccca0aab950
|
7
|
+
data.tar.gz: d21dccf40ab1b3ca1267611deb3e46cfda7be3f6611d952470b201f766bbdfb21a9466eb0ea2e58cf74bccc82bf0c18fd6448a9f049bbf86e6f5972eecc094f7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.592
|
data/lib/v20201111/client.rb
CHANGED
@@ -773,6 +773,30 @@ module TencentCloud
|
|
773
773
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
774
774
|
end
|
775
775
|
|
776
|
+
# 查询企业扩展服务授权信息,目前支持查询:企业静默签,企业与港澳台居民签署合同,使用手机号验证签署方身份,骑缝章,批量签署能力是否已经开通
|
777
|
+
|
778
|
+
# @param request: Request instance for DescribeExtendedServiceAuthInfos.
|
779
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeExtendedServiceAuthInfosRequest`
|
780
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeExtendedServiceAuthInfosResponse`
|
781
|
+
def DescribeExtendedServiceAuthInfos(request)
|
782
|
+
body = send_request('DescribeExtendedServiceAuthInfos', request.serialize)
|
783
|
+
response = JSON.parse(body)
|
784
|
+
if response['Response'].key?('Error') == false
|
785
|
+
model = DescribeExtendedServiceAuthInfosResponse.new
|
786
|
+
model.deserialize(response['Response'])
|
787
|
+
model
|
788
|
+
else
|
789
|
+
code = response['Response']['Error']['Code']
|
790
|
+
message = response['Response']['Error']['Message']
|
791
|
+
reqid = response['Response']['RequestId']
|
792
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
793
|
+
end
|
794
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
795
|
+
raise e
|
796
|
+
rescue StandardError => e
|
797
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
798
|
+
end
|
799
|
+
|
776
800
|
# 查询文件下载URL。
|
777
801
|
# 适用场景:通过传参合同流程编号,下载对应的合同PDF文件流到本地。
|
778
802
|
|