tencentcloud-sdk-trp 3.0.635 → 3.0.637
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/v20210515/models.rb +18 -4
- 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: 7c33bc5fd1fb9717bf9e6456bd669d1a9d2422fa
|
|
4
|
+
data.tar.gz: f3b315d631bbb76bf1094c507bf000f4e05988d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ef2d9c6e41e8c614850de2edcb05407a05f433fdcacfc2ad23e29dd68729aafdfaf724b6993602329e408686f0d137d86e89de02dc52cb949f8c3f78d4451d4
|
|
7
|
+
data.tar.gz: c880ccf8c1bc4ad8e15bf28ba3d8c451579d92088f2bf81d060bdcafbda2fabb9e5f0bdac7a21efe2fd65f978f84b67a252fc8e3743aa2aa30a3c8449fdb65a2
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.637
|
data/lib/v20210515/models.rb
CHANGED
|
@@ -1692,15 +1692,21 @@ module TencentCloud
|
|
|
1692
1692
|
# @type CorpId: Integer
|
|
1693
1693
|
# @param SerialType: 是否有流水码 0:无 1:有
|
|
1694
1694
|
# @type SerialType: Integer
|
|
1695
|
+
# @param ResType: 资源类型 batch:批次, order_in 入库, order_out: 出入
|
|
1696
|
+
# @type ResType: String
|
|
1697
|
+
# @param ResId: 资源ID ResType是 batch 时对应是批次ID, 是 order_in, order_out时,则是订单ID
|
|
1698
|
+
# @type ResId: String
|
|
1695
1699
|
|
|
1696
|
-
attr_accessor :PageSize, :PageNumber, :Keyword, :CorpId, :SerialType
|
|
1700
|
+
attr_accessor :PageSize, :PageNumber, :Keyword, :CorpId, :SerialType, :ResType, :ResId
|
|
1697
1701
|
|
|
1698
|
-
def initialize(pagesize=nil, pagenumber=nil, keyword=nil, corpid=nil, serialtype=nil)
|
|
1702
|
+
def initialize(pagesize=nil, pagenumber=nil, keyword=nil, corpid=nil, serialtype=nil, restype=nil, resid=nil)
|
|
1699
1703
|
@PageSize = pagesize
|
|
1700
1704
|
@PageNumber = pagenumber
|
|
1701
1705
|
@Keyword = keyword
|
|
1702
1706
|
@CorpId = corpid
|
|
1703
1707
|
@SerialType = serialtype
|
|
1708
|
+
@ResType = restype
|
|
1709
|
+
@ResId = resid
|
|
1704
1710
|
end
|
|
1705
1711
|
|
|
1706
1712
|
def deserialize(params)
|
|
@@ -1709,6 +1715,8 @@ module TencentCloud
|
|
|
1709
1715
|
@Keyword = params['Keyword']
|
|
1710
1716
|
@CorpId = params['CorpId']
|
|
1711
1717
|
@SerialType = params['SerialType']
|
|
1718
|
+
@ResType = params['ResType']
|
|
1719
|
+
@ResId = params['ResId']
|
|
1712
1720
|
end
|
|
1713
1721
|
end
|
|
1714
1722
|
|
|
@@ -2336,8 +2344,8 @@ module TencentCloud
|
|
|
2336
2344
|
|
|
2337
2345
|
attr_accessor :Products, :TotalCount, :ScanLogs, :RequestId
|
|
2338
2346
|
extend Gem::Deprecate
|
|
2339
|
-
deprecate :Products, :none, 2023,
|
|
2340
|
-
deprecate :Products=, :none, 2023,
|
|
2347
|
+
deprecate :Products, :none, 2023, 8
|
|
2348
|
+
deprecate :Products=, :none, 2023, 8
|
|
2341
2349
|
|
|
2342
2350
|
def initialize(products=nil, totalcount=nil, scanlogs=nil, requestid=nil)
|
|
2343
2351
|
@Products = products
|
|
@@ -3477,16 +3485,22 @@ module TencentCloud
|
|
|
3477
3485
|
# 环节数据
|
|
3478
3486
|
class PhaseData < TencentCloud::Common::AbstractModel
|
|
3479
3487
|
# @param HeadEnabled: 启用头
|
|
3488
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3480
3489
|
# @type HeadEnabled: Boolean
|
|
3481
3490
|
# @param HeadTitle: 标题
|
|
3491
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3482
3492
|
# @type HeadTitle: String
|
|
3483
3493
|
# @param Key: 标识符
|
|
3494
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3484
3495
|
# @type Key: String
|
|
3485
3496
|
# @param AppId: 小程序AppId
|
|
3497
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3486
3498
|
# @type AppId: String
|
|
3487
3499
|
# @param AppPath: 小程序AppPath
|
|
3500
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3488
3501
|
# @type AppPath: String
|
|
3489
3502
|
# @param AppName: 小程序名称AppName
|
|
3503
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3490
3504
|
# @type AppName: String
|
|
3491
3505
|
|
|
3492
3506
|
attr_accessor :HeadEnabled, :HeadTitle, :Key, :AppId, :AppPath, :AppName
|
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.637
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-08-
|
|
11
|
+
date: 2023-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|