tencentcloud-sdk-essbasic 3.0.481 → 3.0.482

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: dd11b521093885da404683129e915150b2a7b86d
4
- data.tar.gz: 3bc931f803a9dfe91a6a4b7e76c808a8276bf015
3
+ metadata.gz: 8cf6d7dcfbf821a60a05828a64be8aef0671cd16
4
+ data.tar.gz: cec513eca1f569537e586f400c4b6921db60fc15
5
5
  SHA512:
6
- metadata.gz: b26ccfa5d64c22042eacc97cd1b73e831d0ed38cdfb9d5681e7a30abe61bfecb833ceccbbf011e245c066b915440edac0e682f25a042a79bcb19f69097ec5076
7
- data.tar.gz: a26b45805f943e820c89e32329bf65fb54b6c5b458c7983e158c8ed9cb7b86565b0b59b9b289ecae2081e58ea616cc48a31ae27fbfdd47d6326fb7767c515fd4
6
+ metadata.gz: 2cc54e441afd7845aa4329d01bb4e3ce223ccbf724e3627ae081591524b14ee79afe8f9ff51b49fa547bb44f05caaacc9625f460e34ee205ab54c87b53321ca9
7
+ data.tar.gz: b98e5f43e68985c14795d6e580df7cf6af6e691f26ce15282232e690b4d06c136636f240694e04664798e02ebb6430b284f735e95b7ad9426c693d1794d6a213
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.481
1
+ 3.0.482
@@ -405,7 +405,8 @@ module TencentCloud
405
405
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
406
406
  end
407
407
 
408
- # 创建出证报告,返回报告 ID
408
+ # 创建出证报告,返回报告 ID。需要配合出证套餐才能调用。
409
+ # 出证需要一定时间,建议调用创建出证24小时之后再通过DescribeChannelFlowEvidenceReport进行查询。
409
410
 
410
411
  # @param request: Request instance for CreateChannelFlowEvidenceReport.
411
412
  # @type request: :class:`Tencentcloud::essbasic::V20210526::CreateChannelFlowEvidenceReportRequest`
@@ -1497,32 +1497,32 @@ module TencentCloud
1497
1497
 
1498
1498
  # CreateChannelFlowEvidenceReport返回参数结构体
1499
1499
  class CreateChannelFlowEvidenceReportResponse < TencentCloud::Common::AbstractModel
1500
- # @param ReportUrl: 废除,字段无效
1501
- # 注意:此字段可能返回 null,表示取不到有效值。
1502
- # @type ReportUrl: String
1503
- # @param ReportId: 出证报告 ID
1500
+ # @param ReportId: 出证报告 ID,用于查询出证报告接口DescribeChannelFlowEvidenceReport时用到
1504
1501
  # 注意:此字段可能返回 null,表示取不到有效值。
1505
1502
  # @type ReportId: String
1506
1503
  # @param Status: 执行中:EvidenceStatusExecuting
1507
1504
  # 成功:EvidenceStatusSuccess
1508
1505
  # 失败:EvidenceStatusFailed
1509
1506
  # @type Status: String
1507
+ # @param ReportUrl: 废除,字段无效
1508
+ # 注意:此字段可能返回 null,表示取不到有效值。
1509
+ # @type ReportUrl: String
1510
1510
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1511
1511
  # @type RequestId: String
1512
1512
 
1513
- attr_accessor :ReportUrl, :ReportId, :Status, :RequestId
1513
+ attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
1514
1514
 
1515
- def initialize(reporturl=nil, reportid=nil, status=nil, requestid=nil)
1516
- @ReportUrl = reporturl
1515
+ def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
1517
1516
  @ReportId = reportid
1518
1517
  @Status = status
1518
+ @ReportUrl = reporturl
1519
1519
  @RequestId = requestid
1520
1520
  end
1521
1521
 
1522
1522
  def deserialize(params)
1523
- @ReportUrl = params['ReportUrl']
1524
1523
  @ReportId = params['ReportId']
1525
1524
  @Status = params['Status']
1525
+ @ReportUrl = params['ReportUrl']
1526
1526
  @RequestId = params['RequestId']
1527
1527
  end
1528
1528
  end
@@ -1900,27 +1900,27 @@ module TencentCloud
1900
1900
 
1901
1901
  # DescribeChannelFlowEvidenceReport请求参数结构体
1902
1902
  class DescribeChannelFlowEvidenceReportRequest < TencentCloud::Common::AbstractModel
1903
- # @param ReportId: 出证报告编号
1904
- # @type ReportId: String
1905
1903
  # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1906
1904
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1905
+ # @param ReportId: 出证报告编号
1906
+ # @type ReportId: String
1907
1907
  # @param Operator: 操作者的信息
1908
1908
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1909
1909
 
1910
- attr_accessor :ReportId, :Agent, :Operator
1910
+ attr_accessor :Agent, :ReportId, :Operator
1911
1911
 
1912
- def initialize(reportid=nil, agent=nil, operator=nil)
1913
- @ReportId = reportid
1912
+ def initialize(agent=nil, reportid=nil, operator=nil)
1914
1913
  @Agent = agent
1914
+ @ReportId = reportid
1915
1915
  @Operator = operator
1916
1916
  end
1917
1917
 
1918
1918
  def deserialize(params)
1919
- @ReportId = params['ReportId']
1920
1919
  unless params['Agent'].nil?
1921
1920
  @Agent = Agent.new
1922
1921
  @Agent.deserialize(params['Agent'])
1923
1922
  end
1923
+ @ReportId = params['ReportId']
1924
1924
  unless params['Operator'].nil?
1925
1925
  @Operator = UserInfo.new
1926
1926
  @Operator.deserialize(params['Operator'])
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.481
4
+ version: 3.0.482
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-12-27 00:00:00.000000000 Z
11
+ date: 2022-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common