tencentcloud-sdk-essbasic 3.0.428 → 3.0.429
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/v20210526/client.rb +0 -24
- data/lib/v20210526/models.rb +0 -50
- 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: 830c6e99037ce409e41aa94c3086fb8bba6208df
|
4
|
+
data.tar.gz: 146fdfc843320be31a78782fa54cba70980ecd6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b670a4c5700580e32718192db66bce1fca2a790c450011bf0a6b38c4cba364301734ebde64ec3336c2920b1e5f671f75567f0ea271455fca928f1a3fedc3db54
|
7
|
+
data.tar.gz: a8dd8395cd1aa1e8cbe08b9092221890264fa5cfb64417f0ccc7470a903dfb7717a6545902bdae2f0435959f22351279300bd9941f5dceb2b9581704ab460909
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.429
|
data/lib/v20210526/client.rb
CHANGED
@@ -304,30 +304,6 @@ module TencentCloud
|
|
304
304
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
305
305
|
end
|
306
306
|
|
307
|
-
# 创建出证报告,返回报告 URL。此接口暂未开放,有问题请联系运营人员。
|
308
|
-
|
309
|
-
# @param request: Request instance for CreateChannelFlowEvidenceReport.
|
310
|
-
# @type request: :class:`Tencentcloud::essbasic::V20210526::CreateChannelFlowEvidenceReportRequest`
|
311
|
-
# @rtype: :class:`Tencentcloud::essbasic::V20210526::CreateChannelFlowEvidenceReportResponse`
|
312
|
-
def CreateChannelFlowEvidenceReport(request)
|
313
|
-
body = send_request('CreateChannelFlowEvidenceReport', request.serialize)
|
314
|
-
response = JSON.parse(body)
|
315
|
-
if response['Response'].key?('Error') == false
|
316
|
-
model = CreateChannelFlowEvidenceReportResponse.new
|
317
|
-
model.deserialize(response['Response'])
|
318
|
-
model
|
319
|
-
else
|
320
|
-
code = response['Response']['Error']['Code']
|
321
|
-
message = response['Response']['Error']['Message']
|
322
|
-
reqid = response['Response']['RequestId']
|
323
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
324
|
-
end
|
325
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
326
|
-
raise e
|
327
|
-
rescue StandardError => e
|
328
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
329
|
-
end
|
330
|
-
|
331
307
|
# 此接口(CreateConsoleLoginUrl)用于创建渠道子客企业控制台Web端登录链接。Web端登录链接是子客控制台的唯一入口。
|
332
308
|
# 若子客企业未激活,会进入企业激活流程,首次参与激活流程的经办人会成为超管。(若企业激活过程中填写信息有误,需要重置激活流程,可以换一个经办人OpenId获取新的链接进入。)
|
333
309
|
# 若子客企业已激活,使用了新的经办人OpenId进入,则会进入经办人的实名流程。
|
data/lib/v20210526/models.rb
CHANGED
@@ -1009,56 +1009,6 @@ module TencentCloud
|
|
1009
1009
|
end
|
1010
1010
|
end
|
1011
1011
|
|
1012
|
-
# CreateChannelFlowEvidenceReport请求参数结构体
|
1013
|
-
class CreateChannelFlowEvidenceReportRequest < TencentCloud::Common::AbstractModel
|
1014
|
-
# @param FlowId: 签署流程编号
|
1015
|
-
# @type FlowId: String
|
1016
|
-
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
|
1017
|
-
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
1018
|
-
# @param Operator: 操作者的信息
|
1019
|
-
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
1020
|
-
|
1021
|
-
attr_accessor :FlowId, :Agent, :Operator
|
1022
|
-
|
1023
|
-
def initialize(flowid=nil, agent=nil, operator=nil)
|
1024
|
-
@FlowId = flowid
|
1025
|
-
@Agent = agent
|
1026
|
-
@Operator = operator
|
1027
|
-
end
|
1028
|
-
|
1029
|
-
def deserialize(params)
|
1030
|
-
@FlowId = params['FlowId']
|
1031
|
-
unless params['Agent'].nil?
|
1032
|
-
@Agent = Agent.new
|
1033
|
-
@Agent.deserialize(params['Agent'])
|
1034
|
-
end
|
1035
|
-
unless params['Operator'].nil?
|
1036
|
-
@Operator = UserInfo.new
|
1037
|
-
@Operator.deserialize(params['Operator'])
|
1038
|
-
end
|
1039
|
-
end
|
1040
|
-
end
|
1041
|
-
|
1042
|
-
# CreateChannelFlowEvidenceReport返回参数结构体
|
1043
|
-
class CreateChannelFlowEvidenceReportResponse < TencentCloud::Common::AbstractModel
|
1044
|
-
# @param ReportUrl: 出证报告 URL(有效五分钟)
|
1045
|
-
# @type ReportUrl: String
|
1046
|
-
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1047
|
-
# @type RequestId: String
|
1048
|
-
|
1049
|
-
attr_accessor :ReportUrl, :RequestId
|
1050
|
-
|
1051
|
-
def initialize(reporturl=nil, requestid=nil)
|
1052
|
-
@ReportUrl = reporturl
|
1053
|
-
@RequestId = requestid
|
1054
|
-
end
|
1055
|
-
|
1056
|
-
def deserialize(params)
|
1057
|
-
@ReportUrl = params['ReportUrl']
|
1058
|
-
@RequestId = params['RequestId']
|
1059
|
-
end
|
1060
|
-
end
|
1061
|
-
|
1062
1012
|
# CreateConsoleLoginUrl请求参数结构体
|
1063
1013
|
class CreateConsoleLoginUrlRequest < TencentCloud::Common::AbstractModel
|
1064
1014
|
# @param Agent: 应用信息
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-essbasic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.429
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|