tencentcloud-sdk-dlc 1.0.337 → 1.0.338
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/v20210125/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00eb17c8dd7943451483ca1f34a2f736e2c07a70
|
4
|
+
data.tar.gz: 1aa85b1e294c48f5773f92c8836090050b894524
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13bca08ffa1de9abd86c7f868591ebb3bdbbdefbc9aea01dccfb1a2ce29f56f0fc1ef9ef018922e7a8f03a87c16b8675576db89895a987e43a2d03ceddbf1274
|
7
|
+
data.tar.gz: 80a99cbecd0d8c94c201214f5282548d1ca31a5ea36af595ea15463fa09157c298f1a6a810de68e9f5c2c08181b199670d39c034e4cd0fcec48ac417c8c79271
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.338
|
data/lib/v20210125/models.rb
CHANGED
@@ -1621,19 +1621,23 @@ module TencentCloud
|
|
1621
1621
|
# @type Offset: Integer
|
1622
1622
|
# @param Limit: 分页查询Limit
|
1623
1623
|
# @type Limit: Integer
|
1624
|
+
# @param TaskId: 执行实例id
|
1625
|
+
# @type TaskId: String
|
1624
1626
|
|
1625
|
-
attr_accessor :JobId, :Offset, :Limit
|
1627
|
+
attr_accessor :JobId, :Offset, :Limit, :TaskId
|
1626
1628
|
|
1627
|
-
def initialize(jobid=nil, offset=nil, limit=nil)
|
1629
|
+
def initialize(jobid=nil, offset=nil, limit=nil, taskid=nil)
|
1628
1630
|
@JobId = jobid
|
1629
1631
|
@Offset = offset
|
1630
1632
|
@Limit = limit
|
1633
|
+
@TaskId = taskid
|
1631
1634
|
end
|
1632
1635
|
|
1633
1636
|
def deserialize(params)
|
1634
1637
|
@JobId = params['JobId']
|
1635
1638
|
@Offset = params['Offset']
|
1636
1639
|
@Limit = params['Limit']
|
1640
|
+
@TaskId = params['TaskId']
|
1637
1641
|
end
|
1638
1642
|
end
|
1639
1643
|
|