tencentcloud-sdk-iotvideo 3.0.636 → 3.0.638
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/v20211125/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: 4ed158df6a7aac63cdf7b4cfbc793c44ec1c9726
|
4
|
+
data.tar.gz: c26b9ceb091b46a71aabf62df5abdfd81ecc0499
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77057ad6f1301617449e6afc908ab23dde025fd05d8e6788adeeebf109d829f01cd29ff88c9956149e55e3d2eabe42de404136e097f2b642fb9a4f7bad74e6d2
|
7
|
+
data.tar.gz: b00fc469b771312fcfcf5065f05aa20be3f1822aff41095184b275376178d64a33964c3b9341de0cde660c207d16f91e7108bf993ef5e5d77ce17557088bb249
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.638
|
data/lib/v20211125/models.rb
CHANGED
@@ -1013,15 +1013,18 @@ module TencentCloud
|
|
1013
1013
|
# @type Override: Integer
|
1014
1014
|
# @param PackageQueue: 套餐列表顺序:PackageQueue=front会立即使用新购买的套餐,新购套餐结束后,列表中下一个未过期的套餐继续生效;PackageQueue=end会等设备当前所有已购买套餐过期后才会生效新购套餐。与Override参数不能同时使用。
|
1015
1015
|
# @type PackageQueue: String
|
1016
|
+
# @param OrderId: 订单id
|
1017
|
+
# @type OrderId: String
|
1016
1018
|
|
1017
|
-
attr_accessor :ProductId, :DeviceName, :PackageId, :Override, :PackageQueue
|
1019
|
+
attr_accessor :ProductId, :DeviceName, :PackageId, :Override, :PackageQueue, :OrderId
|
1018
1020
|
|
1019
|
-
def initialize(productid=nil, devicename=nil, packageid=nil, override=nil, packagequeue=nil)
|
1021
|
+
def initialize(productid=nil, devicename=nil, packageid=nil, override=nil, packagequeue=nil, orderid=nil)
|
1020
1022
|
@ProductId = productid
|
1021
1023
|
@DeviceName = devicename
|
1022
1024
|
@PackageId = packageid
|
1023
1025
|
@Override = override
|
1024
1026
|
@PackageQueue = packagequeue
|
1027
|
+
@OrderId = orderid
|
1025
1028
|
end
|
1026
1029
|
|
1027
1030
|
def deserialize(params)
|
@@ -1030,6 +1033,7 @@ module TencentCloud
|
|
1030
1033
|
@PackageId = params['PackageId']
|
1031
1034
|
@Override = params['Override']
|
1032
1035
|
@PackageQueue = params['PackageQueue']
|
1036
|
+
@OrderId = params['OrderId']
|
1033
1037
|
end
|
1034
1038
|
end
|
1035
1039
|
|
@@ -5558,16 +5562,24 @@ module TencentCloud
|
|
5558
5562
|
# @param UpdatedAt: 云存套餐更新时间
|
5559
5563
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5560
5564
|
# @type UpdatedAt: Integer
|
5565
|
+
# @param PackageId: 套餐id
|
5566
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5567
|
+
# @type PackageId: String
|
5568
|
+
# @param OrderId: 订单id
|
5569
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5570
|
+
# @type OrderId: String
|
5561
5571
|
|
5562
|
-
attr_accessor :Status, :CSType, :CSShiftDuration, :CSExpiredTime, :CreatedAt, :UpdatedAt
|
5572
|
+
attr_accessor :Status, :CSType, :CSShiftDuration, :CSExpiredTime, :CreatedAt, :UpdatedAt, :PackageId, :OrderId
|
5563
5573
|
|
5564
|
-
def initialize(status=nil, cstype=nil, csshiftduration=nil, csexpiredtime=nil, createdat=nil, updatedat=nil)
|
5574
|
+
def initialize(status=nil, cstype=nil, csshiftduration=nil, csexpiredtime=nil, createdat=nil, updatedat=nil, packageid=nil, orderid=nil)
|
5565
5575
|
@Status = status
|
5566
5576
|
@CSType = cstype
|
5567
5577
|
@CSShiftDuration = csshiftduration
|
5568
5578
|
@CSExpiredTime = csexpiredtime
|
5569
5579
|
@CreatedAt = createdat
|
5570
5580
|
@UpdatedAt = updatedat
|
5581
|
+
@PackageId = packageid
|
5582
|
+
@OrderId = orderid
|
5571
5583
|
end
|
5572
5584
|
|
5573
5585
|
def deserialize(params)
|
@@ -5577,6 +5589,8 @@ module TencentCloud
|
|
5577
5589
|
@CSExpiredTime = params['CSExpiredTime']
|
5578
5590
|
@CreatedAt = params['CreatedAt']
|
5579
5591
|
@UpdatedAt = params['UpdatedAt']
|
5592
|
+
@PackageId = params['PackageId']
|
5593
|
+
@OrderId = params['OrderId']
|
5580
5594
|
end
|
5581
5595
|
end
|
5582
5596
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotvideo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.638
|
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-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|