tencentcloud-sdk-essbasic 3.0.459 → 3.0.460

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a71da05342370eb0082a8b7bb82572719151ac90
4
- data.tar.gz: 91364d228f477f2ec44cd0cad2e8a08eac4e409a
3
+ metadata.gz: aa6062d049657f5ec92eb7ff9946b31ac1d1d30a
4
+ data.tar.gz: 08b56329c093c528fe2a0735b365ff0bc4d5ffcb
5
5
  SHA512:
6
- metadata.gz: 54c6a8cd1e180eb69635fbcb40702b1383536d8f483305cb58f0cd423a0f06753d0afd6a76f0234810ab76cbebbc652db0d264fd7087630ddb288d8f588765ee
7
- data.tar.gz: 4b7f30a9043f722a82256ae693f994ca90e8eca94a6419d3b9061ed6a73847a0d0c74c421c08bdf7a3c032a358abb13738947fdaa4384f41b7b3a2677f50c56d
6
+ metadata.gz: a19ae217bed85f04af473e60a69e08244684ffb66ec1d2c7de2968e9d1aa53a461050496365156dbe41dceb57c96818d2dc598b69b507286ca724fbdc6c9730e
7
+ data.tar.gz: 70aa0754eb89d09eccc457304d04f40cbfbe87f8122cc3ce823c6c253bd2dcaa16276214f9b2206734120694139dd3ad81c0c644097622e792d5383dd5385a00
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.459
1
+ 3.0.460
@@ -380,6 +380,30 @@ module TencentCloud
380
380
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
381
381
  end
382
382
 
383
+ # 创建出证报告,返回报告 ID
384
+
385
+ # @param request: Request instance for CreateChannelFlowEvidenceReport.
386
+ # @type request: :class:`Tencentcloud::essbasic::V20210526::CreateChannelFlowEvidenceReportRequest`
387
+ # @rtype: :class:`Tencentcloud::essbasic::V20210526::CreateChannelFlowEvidenceReportResponse`
388
+ def CreateChannelFlowEvidenceReport(request)
389
+ body = send_request('CreateChannelFlowEvidenceReport', request.serialize)
390
+ response = JSON.parse(body)
391
+ if response['Response'].key?('Error') == false
392
+ model = CreateChannelFlowEvidenceReportResponse.new
393
+ model.deserialize(response['Response'])
394
+ model
395
+ else
396
+ code = response['Response']['Error']['Code']
397
+ message = response['Response']['Error']['Message']
398
+ reqid = response['Response']['RequestId']
399
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
400
+ end
401
+ rescue TencentCloud::Common::TencentCloudSDKException => e
402
+ raise e
403
+ rescue StandardError => e
404
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
405
+ end
406
+
383
407
  # 此接口(CreateConsoleLoginUrl)用于创建渠道子客企业控制台Web/移动登录链接。登录链接是子客控制台的唯一入口。
384
408
  # 若子客企业未激活,会进入企业激活流程,首次参与激活流程的经办人会成为超管。(若企业激活过程中填写信息有误,需要重置激活流程,可以换一个经办人OpenId获取新的链接进入。)
385
409
  # 若子客企业已激活,使用了新的经办人OpenId进入,则会进入经办人的实名流程。
@@ -497,6 +521,30 @@ module TencentCloud
497
521
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
498
522
  end
499
523
 
524
+ # 查询出证报告,返回报告 URL。
525
+
526
+ # @param request: Request instance for DescribeChannelFlowEvidenceReport.
527
+ # @type request: :class:`Tencentcloud::essbasic::V20210526::DescribeChannelFlowEvidenceReportRequest`
528
+ # @rtype: :class:`Tencentcloud::essbasic::V20210526::DescribeChannelFlowEvidenceReportResponse`
529
+ def DescribeChannelFlowEvidenceReport(request)
530
+ body = send_request('DescribeChannelFlowEvidenceReport', request.serialize)
531
+ response = JSON.parse(body)
532
+ if response['Response'].key?('Error') == false
533
+ model = DescribeChannelFlowEvidenceReportResponse.new
534
+ model.deserialize(response['Response'])
535
+ model
536
+ else
537
+ code = response['Response']['Error']['Code']
538
+ message = response['Response']['Error']['Message']
539
+ reqid = response['Response']['RequestId']
540
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
541
+ end
542
+ rescue TencentCloud::Common::TencentCloudSDKException => e
543
+ raise e
544
+ rescue StandardError => e
545
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
546
+ end
547
+
500
548
  # 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
501
549
 
502
550
  # @param request: Request instance for DescribeFlowDetailInfo.
@@ -423,7 +423,7 @@ module TencentCloud
423
423
  class ChannelCreateConvertTaskApiRequest < TencentCloud::Common::AbstractModel
424
424
  # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
425
425
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
426
- # @param ResourceType: 资源类型 取值范围doc,docx,html,excel之一
426
+ # @param ResourceType: 资源类型 取值范围doc,docx,html,xls,xlsx之一
427
427
  # @type ResourceType: String
428
428
  # @param ResourceName: 资源名称,长度限制为256字符
429
429
  # @type ResourceName: String
@@ -1307,6 +1307,68 @@ module TencentCloud
1307
1307
  end
1308
1308
  end
1309
1309
 
1310
+ # CreateChannelFlowEvidenceReport请求参数结构体
1311
+ class CreateChannelFlowEvidenceReportRequest < TencentCloud::Common::AbstractModel
1312
+ # @param FlowId: 签署流程编号
1313
+ # @type FlowId: String
1314
+ # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1315
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1316
+ # @param Operator: 操作者的信息
1317
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1318
+
1319
+ attr_accessor :FlowId, :Agent, :Operator
1320
+
1321
+ def initialize(flowid=nil, agent=nil, operator=nil)
1322
+ @FlowId = flowid
1323
+ @Agent = agent
1324
+ @Operator = operator
1325
+ end
1326
+
1327
+ def deserialize(params)
1328
+ @FlowId = params['FlowId']
1329
+ unless params['Agent'].nil?
1330
+ @Agent = Agent.new
1331
+ @Agent.deserialize(params['Agent'])
1332
+ end
1333
+ unless params['Operator'].nil?
1334
+ @Operator = UserInfo.new
1335
+ @Operator.deserialize(params['Operator'])
1336
+ end
1337
+ end
1338
+ end
1339
+
1340
+ # CreateChannelFlowEvidenceReport返回参数结构体
1341
+ class CreateChannelFlowEvidenceReportResponse < TencentCloud::Common::AbstractModel
1342
+ # @param ReportUrl: 废除,字段无效
1343
+ # 注意:此字段可能返回 null,表示取不到有效值。
1344
+ # @type ReportUrl: String
1345
+ # @param ReportId: 出证报告 ID
1346
+ # 注意:此字段可能返回 null,表示取不到有效值。
1347
+ # @type ReportId: String
1348
+ # @param Status: 执行中:EvidenceStatusExecuting
1349
+ # 成功:EvidenceStatusSuccess
1350
+ # 失败:EvidenceStatusFailed
1351
+ # @type Status: String
1352
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1353
+ # @type RequestId: String
1354
+
1355
+ attr_accessor :ReportUrl, :ReportId, :Status, :RequestId
1356
+
1357
+ def initialize(reporturl=nil, reportid=nil, status=nil, requestid=nil)
1358
+ @ReportUrl = reporturl
1359
+ @ReportId = reportid
1360
+ @Status = status
1361
+ @RequestId = requestid
1362
+ end
1363
+
1364
+ def deserialize(params)
1365
+ @ReportUrl = params['ReportUrl']
1366
+ @ReportId = params['ReportId']
1367
+ @Status = params['Status']
1368
+ @RequestId = params['RequestId']
1369
+ end
1370
+ end
1371
+
1310
1372
  # CreateConsoleLoginUrl请求参数结构体
1311
1373
  class CreateConsoleLoginUrlRequest < TencentCloud::Common::AbstractModel
1312
1374
  # @param Agent: 应用信息
@@ -1678,6 +1740,63 @@ module TencentCloud
1678
1740
  end
1679
1741
  end
1680
1742
 
1743
+ # DescribeChannelFlowEvidenceReport请求参数结构体
1744
+ class DescribeChannelFlowEvidenceReportRequest < TencentCloud::Common::AbstractModel
1745
+ # @param ReportId: 出证报告编号
1746
+ # @type ReportId: String
1747
+ # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1748
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1749
+ # @param Operator: 操作者的信息
1750
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1751
+
1752
+ attr_accessor :ReportId, :Agent, :Operator
1753
+
1754
+ def initialize(reportid=nil, agent=nil, operator=nil)
1755
+ @ReportId = reportid
1756
+ @Agent = agent
1757
+ @Operator = operator
1758
+ end
1759
+
1760
+ def deserialize(params)
1761
+ @ReportId = params['ReportId']
1762
+ unless params['Agent'].nil?
1763
+ @Agent = Agent.new
1764
+ @Agent.deserialize(params['Agent'])
1765
+ end
1766
+ unless params['Operator'].nil?
1767
+ @Operator = UserInfo.new
1768
+ @Operator.deserialize(params['Operator'])
1769
+ end
1770
+ end
1771
+ end
1772
+
1773
+ # DescribeChannelFlowEvidenceReport返回参数结构体
1774
+ class DescribeChannelFlowEvidenceReportResponse < TencentCloud::Common::AbstractModel
1775
+ # @param ReportUrl: 出证报告 URL
1776
+ # 注意:此字段可能返回 null,表示取不到有效值。
1777
+ # @type ReportUrl: String
1778
+ # @param Status: 执行中:EvidenceStatusExecuting
1779
+ # 成功:EvidenceStatusSuccess
1780
+ # 失败:EvidenceStatusFailed
1781
+ # @type Status: String
1782
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1783
+ # @type RequestId: String
1784
+
1785
+ attr_accessor :ReportUrl, :Status, :RequestId
1786
+
1787
+ def initialize(reporturl=nil, status=nil, requestid=nil)
1788
+ @ReportUrl = reporturl
1789
+ @Status = status
1790
+ @RequestId = requestid
1791
+ end
1792
+
1793
+ def deserialize(params)
1794
+ @ReportUrl = params['ReportUrl']
1795
+ @Status = params['Status']
1796
+ @RequestId = params['RequestId']
1797
+ end
1798
+ end
1799
+
1681
1800
  # DescribeFlowDetailInfo请求参数结构体
1682
1801
  class DescribeFlowDetailInfoRequest < TencentCloud::Common::AbstractModel
1683
1802
  # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
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.459
4
+ version: 3.0.460
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-11-25 00:00:00.000000000 Z
11
+ date: 2022-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common