tencentcloud-sdk-iss 3.0.767 → 3.0.768
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/v20230517/models.rb +61 -10
- 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: 213493a01a7937bcf2445bac28d6336d659a9a40
|
4
|
+
data.tar.gz: a68350623990dc1868cbd5e5031c6e9a04bcc230
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5ba764765aad49d1be3e5355f264ccf1c0feaf5c85fad6714074749421933122a72d4fe09e3e24a9664189ced7ea35fef6e2bc270b90609b50d369ac00d68b9
|
7
|
+
data.tar.gz: f33bdaa6dfecc91645889cbd23c81b44f4868455e642da38d0064e173166d802d4b0ca281bc5183c639fea1b1ae8c1613ed7228b20d712ec2cfca8d20695de8c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.768
|
data/lib/v20230517/models.rb
CHANGED
@@ -1276,7 +1276,7 @@ module TencentCloud
|
|
1276
1276
|
class BatchOperateDeviceRequest < TencentCloud::Common::AbstractModel
|
1277
1277
|
# @param DeviceIds: 设备 ID 数组(从获取设备列表接口ListDevices中获取)
|
1278
1278
|
# @type DeviceIds: Array
|
1279
|
-
# @param Cmd: 操作命令(enable:启用;disable:禁用;delete
|
1279
|
+
# @param Cmd: 操作命令(enable:启用;disable:禁用;delete:删除;upgrade:固件升级;reset:恢复出厂设置;reboot:重启)
|
1280
1280
|
# @type Cmd: String
|
1281
1281
|
|
1282
1282
|
attr_accessor :DeviceIds, :Cmd
|
@@ -5529,20 +5529,29 @@ module TencentCloud
|
|
5529
5529
|
class ListTasksRequest < TencentCloud::Common::AbstractModel
|
5530
5530
|
# @param PageNumber: 页码,默认为1
|
5531
5531
|
# @type PageNumber: Integer
|
5532
|
-
# @param PageSize: 每页数量,默认为
|
5532
|
+
# @param PageSize: 每页数量,默认为20
|
5533
5533
|
# @type PageSize: Integer
|
5534
|
-
# @param Operation:
|
5534
|
+
# @param Operation: 默认不根据该字段进行筛选,否则根据设备操作类型进行筛选,目前值有:BatchDeleteUserDevice,BatchDisableDevice,BatchEnableDevice,
|
5535
|
+
# BatchUpgradeDevice,
|
5536
|
+
# BatchResetDevice,
|
5537
|
+
# BatchRebootDevice
|
5535
5538
|
# @type Operation: String
|
5536
|
-
# @param Status: 默认不根据该字段进行筛选,否则根据任务状态进行筛选。状态码:1
|
5539
|
+
# @param Status: 默认不根据该字段进行筛选,否则根据任务状态进行筛选。状态码:1-未执行,2-执行中,3-完成,4-取消
|
5537
5540
|
# @type Status: Integer
|
5541
|
+
# @param BeginTime: 开始时间
|
5542
|
+
# @type BeginTime: Integer
|
5543
|
+
# @param EndTime: 结束时间
|
5544
|
+
# @type EndTime: Integer
|
5538
5545
|
|
5539
|
-
attr_accessor :PageNumber, :PageSize, :Operation, :Status
|
5546
|
+
attr_accessor :PageNumber, :PageSize, :Operation, :Status, :BeginTime, :EndTime
|
5540
5547
|
|
5541
|
-
def initialize(pagenumber=nil, pagesize=nil, operation=nil, status=nil)
|
5548
|
+
def initialize(pagenumber=nil, pagesize=nil, operation=nil, status=nil, begintime=nil, endtime=nil)
|
5542
5549
|
@PageNumber = pagenumber
|
5543
5550
|
@PageSize = pagesize
|
5544
5551
|
@Operation = operation
|
5545
5552
|
@Status = status
|
5553
|
+
@BeginTime = begintime
|
5554
|
+
@EndTime = endtime
|
5546
5555
|
end
|
5547
5556
|
|
5548
5557
|
def deserialize(params)
|
@@ -5550,6 +5559,8 @@ module TencentCloud
|
|
5550
5559
|
@PageSize = params['PageSize']
|
5551
5560
|
@Operation = params['Operation']
|
5552
5561
|
@Status = params['Status']
|
5562
|
+
@BeginTime = params['BeginTime']
|
5563
|
+
@EndTime = params['EndTime']
|
5553
5564
|
end
|
5554
5565
|
end
|
5555
5566
|
|
@@ -6266,10 +6277,22 @@ module TencentCloud
|
|
6266
6277
|
# @type UpdatedAt: String
|
6267
6278
|
# @param Runtime: 任务运行时间,单位ms
|
6268
6279
|
# @type Runtime: Integer
|
6280
|
+
# @param DeviceId: 设备ID
|
6281
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6282
|
+
# @type DeviceId: String
|
6283
|
+
# @param DeviceName: 设备名称
|
6284
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6285
|
+
# @type DeviceName: String
|
6286
|
+
# @param ChannelId: 通道ID
|
6287
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6288
|
+
# @type ChannelId: String
|
6289
|
+
# @param ChannelName: 通道名称
|
6290
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6291
|
+
# @type ChannelName: String
|
6269
6292
|
|
6270
|
-
attr_accessor :SubTaskId, :Status, :FailReason, :Progress, :Action, :ActionZhDesc, :ResourceId, :StartedAt, :CreatedAt, :UpdatedAt, :Runtime
|
6293
|
+
attr_accessor :SubTaskId, :Status, :FailReason, :Progress, :Action, :ActionZhDesc, :ResourceId, :StartedAt, :CreatedAt, :UpdatedAt, :Runtime, :DeviceId, :DeviceName, :ChannelId, :ChannelName
|
6271
6294
|
|
6272
|
-
def initialize(subtaskid=nil, status=nil, failreason=nil, progress=nil, action=nil, actionzhdesc=nil, resourceid=nil, startedat=nil, createdat=nil, updatedat=nil, runtime=nil)
|
6295
|
+
def initialize(subtaskid=nil, status=nil, failreason=nil, progress=nil, action=nil, actionzhdesc=nil, resourceid=nil, startedat=nil, createdat=nil, updatedat=nil, runtime=nil, deviceid=nil, devicename=nil, channelid=nil, channelname=nil)
|
6273
6296
|
@SubTaskId = subtaskid
|
6274
6297
|
@Status = status
|
6275
6298
|
@FailReason = failreason
|
@@ -6281,6 +6304,10 @@ module TencentCloud
|
|
6281
6304
|
@CreatedAt = createdat
|
6282
6305
|
@UpdatedAt = updatedat
|
6283
6306
|
@Runtime = runtime
|
6307
|
+
@DeviceId = deviceid
|
6308
|
+
@DeviceName = devicename
|
6309
|
+
@ChannelId = channelid
|
6310
|
+
@ChannelName = channelname
|
6284
6311
|
end
|
6285
6312
|
|
6286
6313
|
def deserialize(params)
|
@@ -6295,6 +6322,10 @@ module TencentCloud
|
|
6295
6322
|
@CreatedAt = params['CreatedAt']
|
6296
6323
|
@UpdatedAt = params['UpdatedAt']
|
6297
6324
|
@Runtime = params['Runtime']
|
6325
|
+
@DeviceId = params['DeviceId']
|
6326
|
+
@DeviceName = params['DeviceName']
|
6327
|
+
@ChannelId = params['ChannelId']
|
6328
|
+
@ChannelName = params['ChannelName']
|
6298
6329
|
end
|
6299
6330
|
end
|
6300
6331
|
|
@@ -6333,10 +6364,22 @@ module TencentCloud
|
|
6333
6364
|
# @type UpdatedAt: String
|
6334
6365
|
# @param Runtime: 任务运行时间,单位ms
|
6335
6366
|
# @type Runtime: Integer
|
6367
|
+
# @param DeviceId: 设备ID
|
6368
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6369
|
+
# @type DeviceId: String
|
6370
|
+
# @param DeviceName: 设备名称
|
6371
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6372
|
+
# @type DeviceName: String
|
6373
|
+
# @param ChannelId: 通道ID
|
6374
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6375
|
+
# @type ChannelId: String
|
6376
|
+
# @param ChannelName: 通道名称
|
6377
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6378
|
+
# @type ChannelName: String
|
6336
6379
|
|
6337
|
-
attr_accessor :TaskId, :Status, :FailReason, :Progress, :Action, :ActionZhDesc, :TaskType, :ResourceId, :Total, :SuccessCount, :FailCount, :RunningCount, :StartedAt, :CreatedAt, :UpdatedAt, :Runtime
|
6380
|
+
attr_accessor :TaskId, :Status, :FailReason, :Progress, :Action, :ActionZhDesc, :TaskType, :ResourceId, :Total, :SuccessCount, :FailCount, :RunningCount, :StartedAt, :CreatedAt, :UpdatedAt, :Runtime, :DeviceId, :DeviceName, :ChannelId, :ChannelName
|
6338
6381
|
|
6339
|
-
def initialize(taskid=nil, status=nil, failreason=nil, progress=nil, action=nil, actionzhdesc=nil, tasktype=nil, resourceid=nil, total=nil, successcount=nil, failcount=nil, runningcount=nil, startedat=nil, createdat=nil, updatedat=nil, runtime=nil)
|
6382
|
+
def initialize(taskid=nil, status=nil, failreason=nil, progress=nil, action=nil, actionzhdesc=nil, tasktype=nil, resourceid=nil, total=nil, successcount=nil, failcount=nil, runningcount=nil, startedat=nil, createdat=nil, updatedat=nil, runtime=nil, deviceid=nil, devicename=nil, channelid=nil, channelname=nil)
|
6340
6383
|
@TaskId = taskid
|
6341
6384
|
@Status = status
|
6342
6385
|
@FailReason = failreason
|
@@ -6353,6 +6396,10 @@ module TencentCloud
|
|
6353
6396
|
@CreatedAt = createdat
|
6354
6397
|
@UpdatedAt = updatedat
|
6355
6398
|
@Runtime = runtime
|
6399
|
+
@DeviceId = deviceid
|
6400
|
+
@DeviceName = devicename
|
6401
|
+
@ChannelId = channelid
|
6402
|
+
@ChannelName = channelname
|
6356
6403
|
end
|
6357
6404
|
|
6358
6405
|
def deserialize(params)
|
@@ -6372,6 +6419,10 @@ module TencentCloud
|
|
6372
6419
|
@CreatedAt = params['CreatedAt']
|
6373
6420
|
@UpdatedAt = params['UpdatedAt']
|
6374
6421
|
@Runtime = params['Runtime']
|
6422
|
+
@DeviceId = params['DeviceId']
|
6423
|
+
@DeviceName = params['DeviceName']
|
6424
|
+
@ChannelId = params['ChannelId']
|
6425
|
+
@ChannelName = params['ChannelName']
|
6375
6426
|
end
|
6376
6427
|
end
|
6377
6428
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.768
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|