tencentcloud-sdk-trp 3.0.481 → 3.0.482
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210515/client.rb +25 -0
- data/lib/v20210515/models.rb +53 -1
- 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: c071eb3d41e3816c625225e4b58babdb6c7fdab8
|
4
|
+
data.tar.gz: 5155286917bcdb3153b3d6f63826a7ac42671192
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd787d5650cfc7a8baf55df853ee3fbc047c49ced256c82e2c974c701955355f7660fc3314f3db903ae9568b5d077e795d2954fb2646d441f10248d9679d2746
|
7
|
+
data.tar.gz: 96e7801f755840dfbf938923f411df3cbcbb2e58db70cdccb33caeb967172a8e4129fcbc302eaf92e60ddfbf51521b92779c72f8fb67904acf392017cb6b9182
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.482
|
data/lib/v20210515/client.rb
CHANGED
@@ -965,6 +965,31 @@ module TencentCloud
|
|
965
965
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
966
966
|
end
|
967
967
|
|
968
|
+
# 解绑溯源码和批次的关系,让溯源码重置为未关联的状态,以便关联其他批次
|
969
|
+
# 注意:溯源码必须属于指定的批次才会解绑
|
970
|
+
|
971
|
+
# @param request: Request instance for ModifyTraceCodeUnlink.
|
972
|
+
# @type request: :class:`Tencentcloud::trp::V20210515::ModifyTraceCodeUnlinkRequest`
|
973
|
+
# @rtype: :class:`Tencentcloud::trp::V20210515::ModifyTraceCodeUnlinkResponse`
|
974
|
+
def ModifyTraceCodeUnlink(request)
|
975
|
+
body = send_request('ModifyTraceCodeUnlink', request.serialize)
|
976
|
+
response = JSON.parse(body)
|
977
|
+
if response['Response'].key?('Error') == false
|
978
|
+
model = ModifyTraceCodeUnlinkResponse.new
|
979
|
+
model.deserialize(response['Response'])
|
980
|
+
model
|
981
|
+
else
|
982
|
+
code = response['Response']['Error']['Code']
|
983
|
+
message = response['Response']['Error']['Message']
|
984
|
+
reqid = response['Response']['RequestId']
|
985
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
986
|
+
end
|
987
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
988
|
+
raise e
|
989
|
+
rescue StandardError => e
|
990
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
991
|
+
end
|
992
|
+
|
968
993
|
# 修改溯源信息
|
969
994
|
|
970
995
|
# @param request: Request instance for ModifyTraceData.
|
data/lib/v20210515/models.rb
CHANGED
@@ -2345,7 +2345,7 @@ module TencentCloud
|
|
2345
2345
|
# @type CorpId: Integer
|
2346
2346
|
# @param Status: 状态 0: 未激活 1: 已激活 -1: 已冻结
|
2347
2347
|
# @type Status: Integer
|
2348
|
-
# @param MpTpl:
|
2348
|
+
# @param MpTpl: 模板ID,或者活动ID
|
2349
2349
|
# @type MpTpl: String
|
2350
2350
|
# @param MerchantId: 商户ID
|
2351
2351
|
# @type MerchantId: String
|
@@ -2667,6 +2667,58 @@ module TencentCloud
|
|
2667
2667
|
end
|
2668
2668
|
end
|
2669
2669
|
|
2670
|
+
# ModifyTraceCodeUnlink请求参数结构体
|
2671
|
+
class ModifyTraceCodeUnlinkRequest < TencentCloud::Common::AbstractModel
|
2672
|
+
# @param BatchId: 批次ID
|
2673
|
+
# @type BatchId: String
|
2674
|
+
# @param Codes: 溯源码列表
|
2675
|
+
# @type Codes: Array
|
2676
|
+
# @param CorpId: 企业ID
|
2677
|
+
# @type CorpId: Integer
|
2678
|
+
|
2679
|
+
attr_accessor :BatchId, :Codes, :CorpId
|
2680
|
+
|
2681
|
+
def initialize(batchid=nil, codes=nil, corpid=nil)
|
2682
|
+
@BatchId = batchid
|
2683
|
+
@Codes = codes
|
2684
|
+
@CorpId = corpid
|
2685
|
+
end
|
2686
|
+
|
2687
|
+
def deserialize(params)
|
2688
|
+
@BatchId = params['BatchId']
|
2689
|
+
@Codes = params['Codes']
|
2690
|
+
@CorpId = params['CorpId']
|
2691
|
+
end
|
2692
|
+
end
|
2693
|
+
|
2694
|
+
# ModifyTraceCodeUnlink返回参数结构体
|
2695
|
+
class ModifyTraceCodeUnlinkResponse < TencentCloud::Common::AbstractModel
|
2696
|
+
# @param UnlinkCnt: 成功解绑溯源码的数量
|
2697
|
+
# @type UnlinkCnt: Integer
|
2698
|
+
# @param CodeCnt: 当前批次的码数量
|
2699
|
+
# @type CodeCnt: Integer
|
2700
|
+
# @param BatchId: 批次ID
|
2701
|
+
# @type BatchId: String
|
2702
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2703
|
+
# @type RequestId: String
|
2704
|
+
|
2705
|
+
attr_accessor :UnlinkCnt, :CodeCnt, :BatchId, :RequestId
|
2706
|
+
|
2707
|
+
def initialize(unlinkcnt=nil, codecnt=nil, batchid=nil, requestid=nil)
|
2708
|
+
@UnlinkCnt = unlinkcnt
|
2709
|
+
@CodeCnt = codecnt
|
2710
|
+
@BatchId = batchid
|
2711
|
+
@RequestId = requestid
|
2712
|
+
end
|
2713
|
+
|
2714
|
+
def deserialize(params)
|
2715
|
+
@UnlinkCnt = params['UnlinkCnt']
|
2716
|
+
@CodeCnt = params['CodeCnt']
|
2717
|
+
@BatchId = params['BatchId']
|
2718
|
+
@RequestId = params['RequestId']
|
2719
|
+
end
|
2720
|
+
end
|
2721
|
+
|
2670
2722
|
# ModifyTraceDataRanks请求参数结构体
|
2671
2723
|
class ModifyTraceDataRanksRequest < TencentCloud::Common::AbstractModel
|
2672
2724
|
# @param CorpId: 企业ID
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
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-
|
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
|