tencentcloud-sdk-iotexplorer 3.0.1130 → 3.0.1138
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/v20190423/models.rb +90 -26
- 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: 0da638854df476dfb2947bcd55544b635d081272
|
4
|
+
data.tar.gz: 32fa568efc0638b8aa4268aa44aee72d3bc448c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6214cd064af5d0eef1b051f4da942e46d70ab1c033da3359df16a78584574784aa18c647b4762f76c9dc0cd8481bc78c42af98106291d8e2bca352f204868aa7
|
7
|
+
data.tar.gz: d51e81b969e83eb8da81ecd544615feddc0c6bf2597f1fe4e3d09889ce14c6f6897639d0d76c13bf91b15cdded465f384845bd6b896bcf7be0925c4f31721057
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1138
|
data/lib/v20190423/models.rb
CHANGED
@@ -100,8 +100,8 @@ module TencentCloud
|
|
100
100
|
|
101
101
|
attr_accessor :PkgType, :MiniProgramAppId, :DeviceList
|
102
102
|
extend Gem::Deprecate
|
103
|
-
deprecate :MiniProgramAppId, :none, 2025,
|
104
|
-
deprecate :MiniProgramAppId=, :none, 2025,
|
103
|
+
deprecate :MiniProgramAppId, :none, 2025, 9
|
104
|
+
deprecate :MiniProgramAppId=, :none, 2025, 9
|
105
105
|
|
106
106
|
def initialize(pkgtype=nil, miniprogramappid=nil, devicelist=nil)
|
107
107
|
@PkgType = pkgtype
|
@@ -136,8 +136,8 @@ module TencentCloud
|
|
136
136
|
|
137
137
|
attr_accessor :DeviceList, :FailureList, :SuccessList, :RequestId
|
138
138
|
extend Gem::Deprecate
|
139
|
-
deprecate :DeviceList, :none, 2025,
|
140
|
-
deprecate :DeviceList=, :none, 2025,
|
139
|
+
deprecate :DeviceList, :none, 2025, 9
|
140
|
+
deprecate :DeviceList=, :none, 2025, 9
|
141
141
|
|
142
142
|
def initialize(devicelist=nil, failurelist=nil, successlist=nil, requestid=nil)
|
143
143
|
@DeviceList = devicelist
|
@@ -4891,17 +4891,21 @@ module TencentCloud
|
|
4891
4891
|
# @type ProductID: String
|
4892
4892
|
# @param FirmwareVersion: 固件版本号
|
4893
4893
|
# @type FirmwareVersion: String
|
4894
|
+
# @param FwType: 固件模块
|
4895
|
+
# @type FwType: String
|
4894
4896
|
|
4895
|
-
attr_accessor :ProductID, :FirmwareVersion
|
4897
|
+
attr_accessor :ProductID, :FirmwareVersion, :FwType
|
4896
4898
|
|
4897
|
-
def initialize(productid=nil, firmwareversion=nil)
|
4899
|
+
def initialize(productid=nil, firmwareversion=nil, fwtype=nil)
|
4898
4900
|
@ProductID = productid
|
4899
4901
|
@FirmwareVersion = firmwareversion
|
4902
|
+
@FwType = fwtype
|
4900
4903
|
end
|
4901
4904
|
|
4902
4905
|
def deserialize(params)
|
4903
4906
|
@ProductID = params['ProductID']
|
4904
4907
|
@FirmwareVersion = params['FirmwareVersion']
|
4908
|
+
@FwType = params['FwType']
|
4905
4909
|
end
|
4906
4910
|
end
|
4907
4911
|
|
@@ -5003,12 +5007,28 @@ module TencentCloud
|
|
5003
5007
|
# @type CreateUserId: Integer
|
5004
5008
|
# @param CreatorNickName: 创建账号ID昵称
|
5005
5009
|
# @type CreatorNickName: String
|
5010
|
+
# @param DelayTime: 延迟时间
|
5011
|
+
# @type DelayTime: Integer
|
5012
|
+
# @param TimeoutInterval: 超时时间
|
5013
|
+
# @type TimeoutInterval: Integer
|
5014
|
+
# @param UpgradeMethod: 静默升级or用户确认升级
|
5015
|
+
# @type UpgradeMethod: Integer
|
5016
|
+
# @param MaxRetryNum: 最大重试次数
|
5017
|
+
# @type MaxRetryNum: Integer
|
5018
|
+
# @param FwType: 固件类型
|
5019
|
+
# @type FwType: String
|
5020
|
+
# @param RetryInterval: 重试间隔时间单位min
|
5021
|
+
# @type RetryInterval: Integer
|
5022
|
+
# @param OverrideMode: 是否覆盖任务
|
5023
|
+
# @type OverrideMode: Integer
|
5024
|
+
# @param TaskUserDefine: 用户自定义消息
|
5025
|
+
# @type TaskUserDefine: String
|
5006
5026
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5007
5027
|
# @type RequestId: String
|
5008
5028
|
|
5009
|
-
attr_accessor :TaskId, :Status, :CreateTime, :Type, :ProductName, :UpgradeMode, :ProductId, :OriginalVersion, :CreateUserId, :CreatorNickName, :RequestId
|
5029
|
+
attr_accessor :TaskId, :Status, :CreateTime, :Type, :ProductName, :UpgradeMode, :ProductId, :OriginalVersion, :CreateUserId, :CreatorNickName, :DelayTime, :TimeoutInterval, :UpgradeMethod, :MaxRetryNum, :FwType, :RetryInterval, :OverrideMode, :TaskUserDefine, :RequestId
|
5010
5030
|
|
5011
|
-
def initialize(taskid=nil, status=nil, createtime=nil, type=nil, productname=nil, upgrademode=nil, productid=nil, originalversion=nil, createuserid=nil, creatornickname=nil, requestid=nil)
|
5031
|
+
def initialize(taskid=nil, status=nil, createtime=nil, type=nil, productname=nil, upgrademode=nil, productid=nil, originalversion=nil, createuserid=nil, creatornickname=nil, delaytime=nil, timeoutinterval=nil, upgrademethod=nil, maxretrynum=nil, fwtype=nil, retryinterval=nil, overridemode=nil, taskuserdefine=nil, requestid=nil)
|
5012
5032
|
@TaskId = taskid
|
5013
5033
|
@Status = status
|
5014
5034
|
@CreateTime = createtime
|
@@ -5019,6 +5039,14 @@ module TencentCloud
|
|
5019
5039
|
@OriginalVersion = originalversion
|
5020
5040
|
@CreateUserId = createuserid
|
5021
5041
|
@CreatorNickName = creatornickname
|
5042
|
+
@DelayTime = delaytime
|
5043
|
+
@TimeoutInterval = timeoutinterval
|
5044
|
+
@UpgradeMethod = upgrademethod
|
5045
|
+
@MaxRetryNum = maxretrynum
|
5046
|
+
@FwType = fwtype
|
5047
|
+
@RetryInterval = retryinterval
|
5048
|
+
@OverrideMode = overridemode
|
5049
|
+
@TaskUserDefine = taskuserdefine
|
5022
5050
|
@RequestId = requestid
|
5023
5051
|
end
|
5024
5052
|
|
@@ -5033,6 +5061,14 @@ module TencentCloud
|
|
5033
5061
|
@OriginalVersion = params['OriginalVersion']
|
5034
5062
|
@CreateUserId = params['CreateUserId']
|
5035
5063
|
@CreatorNickName = params['CreatorNickName']
|
5064
|
+
@DelayTime = params['DelayTime']
|
5065
|
+
@TimeoutInterval = params['TimeoutInterval']
|
5066
|
+
@UpgradeMethod = params['UpgradeMethod']
|
5067
|
+
@MaxRetryNum = params['MaxRetryNum']
|
5068
|
+
@FwType = params['FwType']
|
5069
|
+
@RetryInterval = params['RetryInterval']
|
5070
|
+
@OverrideMode = params['OverrideMode']
|
5071
|
+
@TaskUserDefine = params['TaskUserDefine']
|
5036
5072
|
@RequestId = params['RequestId']
|
5037
5073
|
end
|
5038
5074
|
end
|
@@ -6207,8 +6243,8 @@ module TencentCloud
|
|
6207
6243
|
|
6208
6244
|
attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
|
6209
6245
|
extend Gem::Deprecate
|
6210
|
-
deprecate :ModelId, :none, 2025,
|
6211
|
-
deprecate :ModelId=, :none, 2025,
|
6246
|
+
deprecate :ModelId, :none, 2025, 9
|
6247
|
+
deprecate :ModelId=, :none, 2025, 9
|
6212
6248
|
|
6213
6249
|
def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
|
6214
6250
|
@ModelId = modelid
|
@@ -7214,19 +7250,23 @@ module TencentCloud
|
|
7214
7250
|
# @type FirmwareVersion: String
|
7215
7251
|
# @param FileSize: 文件大小
|
7216
7252
|
# @type FileSize: Integer
|
7253
|
+
# @param FwType: 模块类型or固件类型
|
7254
|
+
# @type FwType: String
|
7217
7255
|
|
7218
|
-
attr_accessor :ProductID, :FirmwareVersion, :FileSize
|
7256
|
+
attr_accessor :ProductID, :FirmwareVersion, :FileSize, :FwType
|
7219
7257
|
|
7220
|
-
def initialize(productid=nil, firmwareversion=nil, filesize=nil)
|
7258
|
+
def initialize(productid=nil, firmwareversion=nil, filesize=nil, fwtype=nil)
|
7221
7259
|
@ProductID = productid
|
7222
7260
|
@FirmwareVersion = firmwareversion
|
7223
7261
|
@FileSize = filesize
|
7262
|
+
@FwType = fwtype
|
7224
7263
|
end
|
7225
7264
|
|
7226
7265
|
def deserialize(params)
|
7227
7266
|
@ProductID = params['ProductID']
|
7228
7267
|
@FirmwareVersion = params['FirmwareVersion']
|
7229
7268
|
@FileSize = params['FileSize']
|
7269
|
+
@FwType = params['FwType']
|
7230
7270
|
end
|
7231
7271
|
end
|
7232
7272
|
|
@@ -7260,6 +7300,8 @@ module TencentCloud
|
|
7260
7300
|
# @type Limit: Integer
|
7261
7301
|
# @param FirmwareVersion: 设备固件版本号,若不带此参数会返回所有固件版本的设备。传"None-FirmwareVersion"查询无版本号的设备
|
7262
7302
|
# @type FirmwareVersion: String
|
7303
|
+
# @param FwType: 固件类型
|
7304
|
+
# @type FwType: String
|
7263
7305
|
# @param DeviceName: 需要过滤的设备名称
|
7264
7306
|
# @type DeviceName: String
|
7265
7307
|
# @param ProjectId: 项目ID。产品 ID 为 -1 时,该参数必填
|
@@ -7267,13 +7309,14 @@ module TencentCloud
|
|
7267
7309
|
# @param Filters: 每次请求的Filters的上限为10,Filter.Values的上限为1。
|
7268
7310
|
# @type Filters: Array
|
7269
7311
|
|
7270
|
-
attr_accessor :ProductId, :Offset, :Limit, :FirmwareVersion, :DeviceName, :ProjectId, :Filters
|
7312
|
+
attr_accessor :ProductId, :Offset, :Limit, :FirmwareVersion, :FwType, :DeviceName, :ProjectId, :Filters
|
7271
7313
|
|
7272
|
-
def initialize(productid=nil, offset=nil, limit=nil, firmwareversion=nil, devicename=nil, projectid=nil, filters=nil)
|
7314
|
+
def initialize(productid=nil, offset=nil, limit=nil, firmwareversion=nil, fwtype=nil, devicename=nil, projectid=nil, filters=nil)
|
7273
7315
|
@ProductId = productid
|
7274
7316
|
@Offset = offset
|
7275
7317
|
@Limit = limit
|
7276
7318
|
@FirmwareVersion = firmwareversion
|
7319
|
+
@FwType = fwtype
|
7277
7320
|
@DeviceName = devicename
|
7278
7321
|
@ProjectId = projectid
|
7279
7322
|
@Filters = filters
|
@@ -7284,6 +7327,7 @@ module TencentCloud
|
|
7284
7327
|
@Offset = params['Offset']
|
7285
7328
|
@Limit = params['Limit']
|
7286
7329
|
@FirmwareVersion = params['FirmwareVersion']
|
7330
|
+
@FwType = params['FwType']
|
7287
7331
|
@DeviceName = params['DeviceName']
|
7288
7332
|
@ProjectId = params['ProjectId']
|
7289
7333
|
unless params['Filters'].nil?
|
@@ -7806,8 +7850,8 @@ module TencentCloud
|
|
7806
7850
|
|
7807
7851
|
attr_accessor :MiniProgramAppId, :DeviceList
|
7808
7852
|
extend Gem::Deprecate
|
7809
|
-
deprecate :MiniProgramAppId, :none, 2025,
|
7810
|
-
deprecate :MiniProgramAppId=, :none, 2025,
|
7853
|
+
deprecate :MiniProgramAppId, :none, 2025, 9
|
7854
|
+
deprecate :MiniProgramAppId=, :none, 2025, 9
|
7811
7855
|
|
7812
7856
|
def initialize(miniprogramappid=nil, devicelist=nil)
|
7813
7857
|
@MiniProgramAppId = miniprogramappid
|
@@ -8201,10 +8245,18 @@ module TencentCloud
|
|
8201
8245
|
# 注:
|
8202
8246
|
# 符合iana标准 https://www.iana.org/time-zones,例如Asia/Shanghai、Asia/Bangkok
|
8203
8247
|
# @type TimeZone: String
|
8248
|
+
# @param SearchMode: 取值为1表示高级搜索,取值为2表示简单搜索,默认为1
|
8249
|
+
# @type SearchMode: Integer
|
8250
|
+
# @param Limit: 最终输出的条数;仅当SearchMode为2时支持自定义设置,默认为50
|
8251
|
+
# @type Limit: Integer
|
8252
|
+
# @param VectorSearchRadius: 向量搜索的相似度搜索半径,取值范围[-1, 1];仅当SearchMode为2时支持自定义设置,默认为0.5
|
8253
|
+
# @type VectorSearchRadius: Float
|
8254
|
+
# @param VectorSearchTopK: 指定向量搜索最相似的 Top K;仅当SearchMode为2时支持自定义设置,默认为100
|
8255
|
+
# @type VectorSearchTopK: Integer
|
8204
8256
|
|
8205
|
-
attr_accessor :ProductId, :DeviceName, :Query, :SummaryLang, :ChannelId, :EnableSummary, :StartTimeMs, :EndTimeMs, :TimeZone
|
8257
|
+
attr_accessor :ProductId, :DeviceName, :Query, :SummaryLang, :ChannelId, :EnableSummary, :StartTimeMs, :EndTimeMs, :TimeZone, :SearchMode, :Limit, :VectorSearchRadius, :VectorSearchTopK
|
8206
8258
|
|
8207
|
-
def initialize(productid=nil, devicename=nil, query=nil, summarylang=nil, channelid=nil, enablesummary=nil, starttimems=nil, endtimems=nil, timezone=nil)
|
8259
|
+
def initialize(productid=nil, devicename=nil, query=nil, summarylang=nil, channelid=nil, enablesummary=nil, starttimems=nil, endtimems=nil, timezone=nil, searchmode=nil, limit=nil, vectorsearchradius=nil, vectorsearchtopk=nil)
|
8208
8260
|
@ProductId = productid
|
8209
8261
|
@DeviceName = devicename
|
8210
8262
|
@Query = query
|
@@ -8214,6 +8266,10 @@ module TencentCloud
|
|
8214
8266
|
@StartTimeMs = starttimems
|
8215
8267
|
@EndTimeMs = endtimems
|
8216
8268
|
@TimeZone = timezone
|
8269
|
+
@SearchMode = searchmode
|
8270
|
+
@Limit = limit
|
8271
|
+
@VectorSearchRadius = vectorsearchradius
|
8272
|
+
@VectorSearchTopK = vectorsearchtopk
|
8217
8273
|
end
|
8218
8274
|
|
8219
8275
|
def deserialize(params)
|
@@ -8226,6 +8282,10 @@ module TencentCloud
|
|
8226
8282
|
@StartTimeMs = params['StartTimeMs']
|
8227
8283
|
@EndTimeMs = params['EndTimeMs']
|
8228
8284
|
@TimeZone = params['TimeZone']
|
8285
|
+
@SearchMode = params['SearchMode']
|
8286
|
+
@Limit = params['Limit']
|
8287
|
+
@VectorSearchRadius = params['VectorSearchRadius']
|
8288
|
+
@VectorSearchTopK = params['VectorSearchTopK']
|
8229
8289
|
end
|
8230
8290
|
end
|
8231
8291
|
|
@@ -10569,17 +10629,21 @@ module TencentCloud
|
|
10569
10629
|
# @type ProductID: String
|
10570
10630
|
# @param DeviceName: 设备名称。
|
10571
10631
|
# @type DeviceName: String
|
10632
|
+
# @param FwType: 固件类型
|
10633
|
+
# @type FwType: String
|
10572
10634
|
|
10573
|
-
attr_accessor :ProductID, :DeviceName
|
10635
|
+
attr_accessor :ProductID, :DeviceName, :FwType
|
10574
10636
|
|
10575
|
-
def initialize(productid=nil, devicename=nil)
|
10637
|
+
def initialize(productid=nil, devicename=nil, fwtype=nil)
|
10576
10638
|
@ProductID = productid
|
10577
10639
|
@DeviceName = devicename
|
10640
|
+
@FwType = fwtype
|
10578
10641
|
end
|
10579
10642
|
|
10580
10643
|
def deserialize(params)
|
10581
10644
|
@ProductID = params['ProductID']
|
10582
10645
|
@DeviceName = params['DeviceName']
|
10646
|
+
@FwType = params['FwType']
|
10583
10647
|
end
|
10584
10648
|
end
|
10585
10649
|
|
@@ -11291,8 +11355,8 @@ module TencentCloud
|
|
11291
11355
|
|
11292
11356
|
attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
|
11293
11357
|
extend Gem::Deprecate
|
11294
|
-
deprecate :ModelId, :none, 2025,
|
11295
|
-
deprecate :ModelId=, :none, 2025,
|
11358
|
+
deprecate :ModelId, :none, 2025, 9
|
11359
|
+
deprecate :ModelId=, :none, 2025, 9
|
11296
11360
|
|
11297
11361
|
def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
|
11298
11362
|
@ModelId = modelid
|
@@ -11322,10 +11386,10 @@ module TencentCloud
|
|
11322
11386
|
|
11323
11387
|
attr_accessor :Sn, :ModelId, :ActiveNum
|
11324
11388
|
extend Gem::Deprecate
|
11325
|
-
deprecate :ModelId, :none, 2025,
|
11326
|
-
deprecate :ModelId=, :none, 2025,
|
11327
|
-
deprecate :ActiveNum, :none, 2025,
|
11328
|
-
deprecate :ActiveNum=, :none, 2025,
|
11389
|
+
deprecate :ModelId, :none, 2025, 9
|
11390
|
+
deprecate :ModelId=, :none, 2025, 9
|
11391
|
+
deprecate :ActiveNum, :none, 2025, 9
|
11392
|
+
deprecate :ActiveNum=, :none, 2025, 9
|
11329
11393
|
|
11330
11394
|
def initialize(sn=nil, modelid=nil, activenum=nil)
|
11331
11395
|
@Sn = sn
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotexplorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1138
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|