tencentcloud-sdk-iotexplorer 3.0.978 → 3.0.979
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/client.rb +96 -0
- data/lib/v20190423/models.rb +410 -0
- 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: 8ce4580f0545c13a7a3c8916b003d7577793112a
|
4
|
+
data.tar.gz: a910f2d1cadb496e1bb4238bddd38656951ee639
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1af9baf4cebde9bee9381b71a1cc45afd6043883301a627779fdcd816f62d94da8a971b0065cdf034fd16ac65adabf27e22fe8420055d39bb51aed911b6a324b
|
7
|
+
data.tar.gz: 189b8b515fd4eec3e9a632207f66d4147b9b6199fcd8d5386cd17cacd967a086a67a479176f3c7ba283827e1b1888ef808338b942927053da8dd1a4ef4e5c37e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.979
|
data/lib/v20190423/client.rb
CHANGED
@@ -991,6 +991,54 @@ module TencentCloud
|
|
991
991
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
992
992
|
end
|
993
993
|
|
994
|
+
# 获取设备激活详情
|
995
|
+
|
996
|
+
# @param request: Request instance for DescribeActivateDevice.
|
997
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeActivateDeviceRequest`
|
998
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeActivateDeviceResponse`
|
999
|
+
def DescribeActivateDevice(request)
|
1000
|
+
body = send_request('DescribeActivateDevice', request.serialize)
|
1001
|
+
response = JSON.parse(body)
|
1002
|
+
if response['Response'].key?('Error') == false
|
1003
|
+
model = DescribeActivateDeviceResponse.new
|
1004
|
+
model.deserialize(response['Response'])
|
1005
|
+
model
|
1006
|
+
else
|
1007
|
+
code = response['Response']['Error']['Code']
|
1008
|
+
message = response['Response']['Error']['Message']
|
1009
|
+
reqid = response['Response']['RequestId']
|
1010
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1011
|
+
end
|
1012
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1013
|
+
raise e
|
1014
|
+
rescue StandardError => e
|
1015
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
# 获取增值服务激活码详情
|
1019
|
+
|
1020
|
+
# @param request: Request instance for DescribeActivateLicenseService.
|
1021
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeActivateLicenseServiceRequest`
|
1022
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeActivateLicenseServiceResponse`
|
1023
|
+
def DescribeActivateLicenseService(request)
|
1024
|
+
body = send_request('DescribeActivateLicenseService', request.serialize)
|
1025
|
+
response = JSON.parse(body)
|
1026
|
+
if response['Response'].key?('Error') == false
|
1027
|
+
model = DescribeActivateLicenseServiceResponse.new
|
1028
|
+
model.deserialize(response['Response'])
|
1029
|
+
model
|
1030
|
+
else
|
1031
|
+
code = response['Response']['Error']['Code']
|
1032
|
+
message = response['Response']['Error']['Message']
|
1033
|
+
reqid = response['Response']['RequestId']
|
1034
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1035
|
+
end
|
1036
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1037
|
+
raise e
|
1038
|
+
rescue StandardError => e
|
1039
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1040
|
+
end
|
1041
|
+
|
994
1042
|
# 获取量产详情信息。
|
995
1043
|
|
996
1044
|
# @param request: Request instance for DescribeBatchProduction.
|
@@ -1759,6 +1807,30 @@ module TencentCloud
|
|
1759
1807
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1760
1808
|
end
|
1761
1809
|
|
1810
|
+
# 查询云存卡套餐信息
|
1811
|
+
|
1812
|
+
# @param request: Request instance for DescribeFreeCloudStorageNum.
|
1813
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeFreeCloudStorageNumRequest`
|
1814
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeFreeCloudStorageNumResponse`
|
1815
|
+
def DescribeFreeCloudStorageNum(request)
|
1816
|
+
body = send_request('DescribeFreeCloudStorageNum', request.serialize)
|
1817
|
+
response = JSON.parse(body)
|
1818
|
+
if response['Response'].key?('Error') == false
|
1819
|
+
model = DescribeFreeCloudStorageNumResponse.new
|
1820
|
+
model.deserialize(response['Response'])
|
1821
|
+
model
|
1822
|
+
else
|
1823
|
+
code = response['Response']['Error']['Code']
|
1824
|
+
message = response['Response']['Error']['Message']
|
1825
|
+
reqid = response['Response']['RequestId']
|
1826
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1827
|
+
end
|
1828
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1829
|
+
raise e
|
1830
|
+
rescue StandardError => e
|
1831
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1832
|
+
end
|
1833
|
+
|
1762
1834
|
# 获取网关绑定的子设备列表
|
1763
1835
|
|
1764
1836
|
# @param request: Request instance for DescribeGatewayBindDevices.
|
@@ -2119,6 +2191,30 @@ module TencentCloud
|
|
2119
2191
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2120
2192
|
end
|
2121
2193
|
|
2194
|
+
# 用于查询视频激活码统计概览
|
2195
|
+
|
2196
|
+
# @param request: Request instance for DescribeVideoLicense.
|
2197
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeVideoLicenseRequest`
|
2198
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeVideoLicenseResponse`
|
2199
|
+
def DescribeVideoLicense(request)
|
2200
|
+
body = send_request('DescribeVideoLicense', request.serialize)
|
2201
|
+
response = JSON.parse(body)
|
2202
|
+
if response['Response'].key?('Error') == false
|
2203
|
+
model = DescribeVideoLicenseResponse.new
|
2204
|
+
model.deserialize(response['Response'])
|
2205
|
+
model
|
2206
|
+
else
|
2207
|
+
code = response['Response']['Error']['Code']
|
2208
|
+
message = response['Response']['Error']['Message']
|
2209
|
+
reqid = response['Response']['RequestId']
|
2210
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2211
|
+
end
|
2212
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2213
|
+
raise e
|
2214
|
+
rescue StandardError => e
|
2215
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2216
|
+
end
|
2217
|
+
|
2122
2218
|
# 直接绑定设备和家庭
|
2123
2219
|
|
2124
2220
|
# @param request: Request instance for DirectBindDeviceInFamily.
|
data/lib/v20190423/models.rb
CHANGED
@@ -17,6 +17,47 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Iotexplorer
|
19
19
|
module V20190423
|
20
|
+
# 设备激活详情信息
|
21
|
+
class ActivateDeviceInfo < TencentCloud::Common::AbstractModel
|
22
|
+
# @param InstanceId: 实例ID
|
23
|
+
# @type InstanceId: String
|
24
|
+
# @param InstanceType: 实例类型
|
25
|
+
# @type InstanceType: Integer
|
26
|
+
# @param DeviceActivationDetails: 设备激活信息
|
27
|
+
# @type DeviceActivationDetails: :class:`Tencentcloud::Iotexplorer.v20190423.models.DeviceActivationDetail`
|
28
|
+
# @param RegisteredDeviceType: 已注册设备类型信息
|
29
|
+
# @type RegisteredDeviceType: :class:`Tencentcloud::Iotexplorer.v20190423.models.RegisteredDeviceTypeInfo`
|
30
|
+
# @param RegisteredDeviceNetType: 已注册设备通信类型信息
|
31
|
+
# @type RegisteredDeviceNetType: :class:`Tencentcloud::Iotexplorer.v20190423.models.RegisteredDeviceNetTypeInfo`
|
32
|
+
|
33
|
+
attr_accessor :InstanceId, :InstanceType, :DeviceActivationDetails, :RegisteredDeviceType, :RegisteredDeviceNetType
|
34
|
+
|
35
|
+
def initialize(instanceid=nil, instancetype=nil, deviceactivationdetails=nil, registereddevicetype=nil, registereddevicenettype=nil)
|
36
|
+
@InstanceId = instanceid
|
37
|
+
@InstanceType = instancetype
|
38
|
+
@DeviceActivationDetails = deviceactivationdetails
|
39
|
+
@RegisteredDeviceType = registereddevicetype
|
40
|
+
@RegisteredDeviceNetType = registereddevicenettype
|
41
|
+
end
|
42
|
+
|
43
|
+
def deserialize(params)
|
44
|
+
@InstanceId = params['InstanceId']
|
45
|
+
@InstanceType = params['InstanceType']
|
46
|
+
unless params['DeviceActivationDetails'].nil?
|
47
|
+
@DeviceActivationDetails = DeviceActivationDetail.new
|
48
|
+
@DeviceActivationDetails.deserialize(params['DeviceActivationDetails'])
|
49
|
+
end
|
50
|
+
unless params['RegisteredDeviceType'].nil?
|
51
|
+
@RegisteredDeviceType = RegisteredDeviceTypeInfo.new
|
52
|
+
@RegisteredDeviceType.deserialize(params['RegisteredDeviceType'])
|
53
|
+
end
|
54
|
+
unless params['RegisteredDeviceNetType'].nil?
|
55
|
+
@RegisteredDeviceNetType = RegisteredDeviceNetTypeInfo.new
|
56
|
+
@RegisteredDeviceNetType.deserialize(params['RegisteredDeviceNetType'])
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
20
61
|
# ActivateTWeCallLicense请求参数结构体
|
21
62
|
class ActivateTWeCallLicenseRequest < TencentCloud::Common::AbstractModel
|
22
63
|
# @param PkgType: TWecall类型:0-体验套餐;1-家庭安防场景; 2-穿戴类场景; 3-生活娱乐场景; 4-对讲及其它场景
|
@@ -778,6 +819,34 @@ module TencentCloud
|
|
778
819
|
end
|
779
820
|
end
|
780
821
|
|
822
|
+
# 云存套餐包信息
|
823
|
+
class CloudStoragePackageInfo < TencentCloud::Common::AbstractModel
|
824
|
+
# @param PackageId: 套餐包id
|
825
|
+
# @type PackageId: String
|
826
|
+
# @param PackageName: 套餐包名字
|
827
|
+
# @type PackageName: String
|
828
|
+
# @param Num: 套餐包数量
|
829
|
+
# @type Num: Integer
|
830
|
+
# @param UsedNum: 已使用数量
|
831
|
+
# @type UsedNum: Integer
|
832
|
+
|
833
|
+
attr_accessor :PackageId, :PackageName, :Num, :UsedNum
|
834
|
+
|
835
|
+
def initialize(packageid=nil, packagename=nil, num=nil, usednum=nil)
|
836
|
+
@PackageId = packageid
|
837
|
+
@PackageName = packagename
|
838
|
+
@Num = num
|
839
|
+
@UsedNum = usednum
|
840
|
+
end
|
841
|
+
|
842
|
+
def deserialize(params)
|
843
|
+
@PackageId = params['PackageId']
|
844
|
+
@PackageName = params['PackageName']
|
845
|
+
@Num = params['Num']
|
846
|
+
@UsedNum = params['UsedNum']
|
847
|
+
end
|
848
|
+
end
|
849
|
+
|
781
850
|
# 云存时间轴接口返回数据
|
782
851
|
class CloudStorageTimeData < TencentCloud::Common::AbstractModel
|
783
852
|
# @param TimeList: 云存时间轴信息列表
|
@@ -2433,6 +2502,94 @@ module TencentCloud
|
|
2433
2502
|
end
|
2434
2503
|
end
|
2435
2504
|
|
2505
|
+
# DescribeActivateDevice请求参数结构体
|
2506
|
+
class DescribeActivateDeviceRequest < TencentCloud::Common::AbstractModel
|
2507
|
+
# @param InstanceId: 实例ID
|
2508
|
+
# @type InstanceId: String
|
2509
|
+
|
2510
|
+
attr_accessor :InstanceId
|
2511
|
+
|
2512
|
+
def initialize(instanceid=nil)
|
2513
|
+
@InstanceId = instanceid
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
def deserialize(params)
|
2517
|
+
@InstanceId = params['InstanceId']
|
2518
|
+
end
|
2519
|
+
end
|
2520
|
+
|
2521
|
+
# DescribeActivateDevice返回参数结构体
|
2522
|
+
class DescribeActivateDeviceResponse < TencentCloud::Common::AbstractModel
|
2523
|
+
# @param Data: 设备激活详情信息
|
2524
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2525
|
+
# @type Data: :class:`Tencentcloud::Iotexplorer.v20190423.models.ActivateDeviceInfo`
|
2526
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2527
|
+
# @type RequestId: String
|
2528
|
+
|
2529
|
+
attr_accessor :Data, :RequestId
|
2530
|
+
|
2531
|
+
def initialize(data=nil, requestid=nil)
|
2532
|
+
@Data = data
|
2533
|
+
@RequestId = requestid
|
2534
|
+
end
|
2535
|
+
|
2536
|
+
def deserialize(params)
|
2537
|
+
unless params['Data'].nil?
|
2538
|
+
@Data = ActivateDeviceInfo.new
|
2539
|
+
@Data.deserialize(params['Data'])
|
2540
|
+
end
|
2541
|
+
@RequestId = params['RequestId']
|
2542
|
+
end
|
2543
|
+
end
|
2544
|
+
|
2545
|
+
# DescribeActivateLicenseService请求参数结构体
|
2546
|
+
class DescribeActivateLicenseServiceRequest < TencentCloud::Common::AbstractModel
|
2547
|
+
# @param InstanceId: 实例ID
|
2548
|
+
# @type InstanceId: String
|
2549
|
+
# @param LicenseType: 激活码类型
|
2550
|
+
# @type LicenseType: String
|
2551
|
+
|
2552
|
+
attr_accessor :InstanceId, :LicenseType
|
2553
|
+
|
2554
|
+
def initialize(instanceid=nil, licensetype=nil)
|
2555
|
+
@InstanceId = instanceid
|
2556
|
+
@LicenseType = licensetype
|
2557
|
+
end
|
2558
|
+
|
2559
|
+
def deserialize(params)
|
2560
|
+
@InstanceId = params['InstanceId']
|
2561
|
+
@LicenseType = params['LicenseType']
|
2562
|
+
end
|
2563
|
+
end
|
2564
|
+
|
2565
|
+
# DescribeActivateLicenseService返回参数结构体
|
2566
|
+
class DescribeActivateLicenseServiceResponse < TencentCloud::Common::AbstractModel
|
2567
|
+
# @param Data: 增值服务激活码信息
|
2568
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2569
|
+
# @type Data: Array
|
2570
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2571
|
+
# @type RequestId: String
|
2572
|
+
|
2573
|
+
attr_accessor :Data, :RequestId
|
2574
|
+
|
2575
|
+
def initialize(data=nil, requestid=nil)
|
2576
|
+
@Data = data
|
2577
|
+
@RequestId = requestid
|
2578
|
+
end
|
2579
|
+
|
2580
|
+
def deserialize(params)
|
2581
|
+
unless params['Data'].nil?
|
2582
|
+
@Data = []
|
2583
|
+
params['Data'].each do |i|
|
2584
|
+
licenseservicenuminfo_tmp = LicenseServiceNumInfo.new
|
2585
|
+
licenseservicenuminfo_tmp.deserialize(i)
|
2586
|
+
@Data << licenseservicenuminfo_tmp
|
2587
|
+
end
|
2588
|
+
end
|
2589
|
+
@RequestId = params['RequestId']
|
2590
|
+
end
|
2591
|
+
end
|
2592
|
+
|
2436
2593
|
# DescribeBatchProduction请求参数结构体
|
2437
2594
|
class DescribeBatchProductionRequest < TencentCloud::Common::AbstractModel
|
2438
2595
|
# @param ProductId: 产品ID
|
@@ -4357,6 +4514,44 @@ module TencentCloud
|
|
4357
4514
|
end
|
4358
4515
|
end
|
4359
4516
|
|
4517
|
+
# DescribeFreeCloudStorageNum请求参数结构体
|
4518
|
+
class DescribeFreeCloudStorageNumRequest < TencentCloud::Common::AbstractModel
|
4519
|
+
|
4520
|
+
|
4521
|
+
def initialize()
|
4522
|
+
end
|
4523
|
+
|
4524
|
+
def deserialize(params)
|
4525
|
+
end
|
4526
|
+
end
|
4527
|
+
|
4528
|
+
# DescribeFreeCloudStorageNum返回参数结构体
|
4529
|
+
class DescribeFreeCloudStorageNumResponse < TencentCloud::Common::AbstractModel
|
4530
|
+
# @param PackageInfos: 套餐包信息
|
4531
|
+
# @type PackageInfos: Array
|
4532
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4533
|
+
# @type RequestId: String
|
4534
|
+
|
4535
|
+
attr_accessor :PackageInfos, :RequestId
|
4536
|
+
|
4537
|
+
def initialize(packageinfos=nil, requestid=nil)
|
4538
|
+
@PackageInfos = packageinfos
|
4539
|
+
@RequestId = requestid
|
4540
|
+
end
|
4541
|
+
|
4542
|
+
def deserialize(params)
|
4543
|
+
unless params['PackageInfos'].nil?
|
4544
|
+
@PackageInfos = []
|
4545
|
+
params['PackageInfos'].each do |i|
|
4546
|
+
cloudstoragepackageinfo_tmp = CloudStoragePackageInfo.new
|
4547
|
+
cloudstoragepackageinfo_tmp.deserialize(i)
|
4548
|
+
@PackageInfos << cloudstoragepackageinfo_tmp
|
4549
|
+
end
|
4550
|
+
end
|
4551
|
+
@RequestId = params['RequestId']
|
4552
|
+
end
|
4553
|
+
end
|
4554
|
+
|
4360
4555
|
# DescribeGatewayBindDevices请求参数结构体
|
4361
4556
|
class DescribeGatewayBindDevicesRequest < TencentCloud::Common::AbstractModel
|
4362
4557
|
# @param GatewayProductId: 网关设备的产品ID
|
@@ -5105,6 +5300,86 @@ module TencentCloud
|
|
5105
5300
|
end
|
5106
5301
|
end
|
5107
5302
|
|
5303
|
+
# DescribeVideoLicense请求参数结构体
|
5304
|
+
class DescribeVideoLicenseRequest < TencentCloud::Common::AbstractModel
|
5305
|
+
# @param InstanceId: 实例ID
|
5306
|
+
# @type InstanceId: String
|
5307
|
+
|
5308
|
+
attr_accessor :InstanceId
|
5309
|
+
|
5310
|
+
def initialize(instanceid=nil)
|
5311
|
+
@InstanceId = instanceid
|
5312
|
+
end
|
5313
|
+
|
5314
|
+
def deserialize(params)
|
5315
|
+
@InstanceId = params['InstanceId']
|
5316
|
+
end
|
5317
|
+
end
|
5318
|
+
|
5319
|
+
# DescribeVideoLicense返回参数结构体
|
5320
|
+
class DescribeVideoLicenseResponse < TencentCloud::Common::AbstractModel
|
5321
|
+
# @param License: 视频激活码分类概览
|
5322
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5323
|
+
# @type License: Array
|
5324
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5325
|
+
# @type RequestId: String
|
5326
|
+
|
5327
|
+
attr_accessor :License, :RequestId
|
5328
|
+
|
5329
|
+
def initialize(license=nil, requestid=nil)
|
5330
|
+
@License = license
|
5331
|
+
@RequestId = requestid
|
5332
|
+
end
|
5333
|
+
|
5334
|
+
def deserialize(params)
|
5335
|
+
unless params['License'].nil?
|
5336
|
+
@License = []
|
5337
|
+
params['License'].each do |i|
|
5338
|
+
videolicenseentity_tmp = VideoLicenseEntity.new
|
5339
|
+
videolicenseentity_tmp.deserialize(i)
|
5340
|
+
@License << videolicenseentity_tmp
|
5341
|
+
end
|
5342
|
+
end
|
5343
|
+
@RequestId = params['RequestId']
|
5344
|
+
end
|
5345
|
+
end
|
5346
|
+
|
5347
|
+
# 设备激活详情信息
|
5348
|
+
class DeviceActivationDetail < TencentCloud::Common::AbstractModel
|
5349
|
+
# @param TotalDeviceNum: 可注册设备数
|
5350
|
+
# @type TotalDeviceNum: Integer
|
5351
|
+
# @param UsedDeviceNum: 已注册设备数
|
5352
|
+
# @type UsedDeviceNum: Integer
|
5353
|
+
# @param TotalNormalLicense: 设备授权数
|
5354
|
+
# @type TotalNormalLicense: Integer
|
5355
|
+
# @param UsedNormalLicense: 已使用设备授权数
|
5356
|
+
# @type UsedNormalLicense: Integer
|
5357
|
+
# @param TotalBluetoothLicense: 蓝牙授权数
|
5358
|
+
# @type TotalBluetoothLicense: Integer
|
5359
|
+
# @param UsedBluetoothLicense: 已使用蓝牙授权数
|
5360
|
+
# @type UsedBluetoothLicense: Integer
|
5361
|
+
|
5362
|
+
attr_accessor :TotalDeviceNum, :UsedDeviceNum, :TotalNormalLicense, :UsedNormalLicense, :TotalBluetoothLicense, :UsedBluetoothLicense
|
5363
|
+
|
5364
|
+
def initialize(totaldevicenum=nil, useddevicenum=nil, totalnormallicense=nil, usednormallicense=nil, totalbluetoothlicense=nil, usedbluetoothlicense=nil)
|
5365
|
+
@TotalDeviceNum = totaldevicenum
|
5366
|
+
@UsedDeviceNum = useddevicenum
|
5367
|
+
@TotalNormalLicense = totalnormallicense
|
5368
|
+
@UsedNormalLicense = usednormallicense
|
5369
|
+
@TotalBluetoothLicense = totalbluetoothlicense
|
5370
|
+
@UsedBluetoothLicense = usedbluetoothlicense
|
5371
|
+
end
|
5372
|
+
|
5373
|
+
def deserialize(params)
|
5374
|
+
@TotalDeviceNum = params['TotalDeviceNum']
|
5375
|
+
@UsedDeviceNum = params['UsedDeviceNum']
|
5376
|
+
@TotalNormalLicense = params['TotalNormalLicense']
|
5377
|
+
@UsedNormalLicense = params['UsedNormalLicense']
|
5378
|
+
@TotalBluetoothLicense = params['TotalBluetoothLicense']
|
5379
|
+
@UsedBluetoothLicense = params['UsedBluetoothLicense']
|
5380
|
+
end
|
5381
|
+
end
|
5382
|
+
|
5108
5383
|
# 设备激活结果数据
|
5109
5384
|
class DeviceActiveResult < TencentCloud::Common::AbstractModel
|
5110
5385
|
# @param ModelId: 模板ID
|
@@ -7295,6 +7570,42 @@ module TencentCloud
|
|
7295
7570
|
end
|
7296
7571
|
end
|
7297
7572
|
|
7573
|
+
# 增值服务数量统计
|
7574
|
+
class LicenseServiceNumInfo < TencentCloud::Common::AbstractModel
|
7575
|
+
# @param LicenseType: 服务类型
|
7576
|
+
# @type LicenseType: String
|
7577
|
+
# @param TotalNum: 授权总数
|
7578
|
+
# @type TotalNum: Integer
|
7579
|
+
# @param UsedNum: 已使用授权数
|
7580
|
+
# @type UsedNum: Integer
|
7581
|
+
# @param TWeCallLicense: TWeCall激活码
|
7582
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7583
|
+
# @type TWeCallLicense: Array
|
7584
|
+
|
7585
|
+
attr_accessor :LicenseType, :TotalNum, :UsedNum, :TWeCallLicense
|
7586
|
+
|
7587
|
+
def initialize(licensetype=nil, totalnum=nil, usednum=nil, twecalllicense=nil)
|
7588
|
+
@LicenseType = licensetype
|
7589
|
+
@TotalNum = totalnum
|
7590
|
+
@UsedNum = usednum
|
7591
|
+
@TWeCallLicense = twecalllicense
|
7592
|
+
end
|
7593
|
+
|
7594
|
+
def deserialize(params)
|
7595
|
+
@LicenseType = params['LicenseType']
|
7596
|
+
@TotalNum = params['TotalNum']
|
7597
|
+
@UsedNum = params['UsedNum']
|
7598
|
+
unless params['TWeCallLicense'].nil?
|
7599
|
+
@TWeCallLicense = []
|
7600
|
+
params['TWeCallLicense'].each do |i|
|
7601
|
+
twecalllicenseinfo_tmp = TWeCallLicenseInfo.new
|
7602
|
+
twecalllicenseinfo_tmp.deserialize(i)
|
7603
|
+
@TWeCallLicense << twecalllicenseinfo_tmp
|
7604
|
+
end
|
7605
|
+
end
|
7606
|
+
end
|
7607
|
+
end
|
7608
|
+
|
7298
7609
|
# ListEventHistory请求参数结构体
|
7299
7610
|
class ListEventHistoryRequest < TencentCloud::Common::AbstractModel
|
7300
7611
|
# @param ProductId: 产品ID
|
@@ -9052,6 +9363,50 @@ module TencentCloud
|
|
9052
9363
|
end
|
9053
9364
|
end
|
9054
9365
|
|
9366
|
+
# 已注册通信类型信息
|
9367
|
+
class RegisteredDeviceNetTypeInfo < TencentCloud::Common::AbstractModel
|
9368
|
+
# @param NormalDeviceNum: 普通设备数
|
9369
|
+
# @type NormalDeviceNum: Integer
|
9370
|
+
# @param BluetoothDeviceNum: 蓝牙设备数
|
9371
|
+
# @type BluetoothDeviceNum: Integer
|
9372
|
+
|
9373
|
+
attr_accessor :NormalDeviceNum, :BluetoothDeviceNum
|
9374
|
+
|
9375
|
+
def initialize(normaldevicenum=nil, bluetoothdevicenum=nil)
|
9376
|
+
@NormalDeviceNum = normaldevicenum
|
9377
|
+
@BluetoothDeviceNum = bluetoothdevicenum
|
9378
|
+
end
|
9379
|
+
|
9380
|
+
def deserialize(params)
|
9381
|
+
@NormalDeviceNum = params['NormalDeviceNum']
|
9382
|
+
@BluetoothDeviceNum = params['BluetoothDeviceNum']
|
9383
|
+
end
|
9384
|
+
end
|
9385
|
+
|
9386
|
+
# 已注册设备类型信息
|
9387
|
+
class RegisteredDeviceTypeInfo < TencentCloud::Common::AbstractModel
|
9388
|
+
# @param NormalDeviceNum: 已注册设备数
|
9389
|
+
# @type NormalDeviceNum: Integer
|
9390
|
+
# @param GatewayDeviceNum: 已注册网关数
|
9391
|
+
# @type GatewayDeviceNum: Integer
|
9392
|
+
# @param SubDeviceNum: 已注册子设备数
|
9393
|
+
# @type SubDeviceNum: Integer
|
9394
|
+
|
9395
|
+
attr_accessor :NormalDeviceNum, :GatewayDeviceNum, :SubDeviceNum
|
9396
|
+
|
9397
|
+
def initialize(normaldevicenum=nil, gatewaydevicenum=nil, subdevicenum=nil)
|
9398
|
+
@NormalDeviceNum = normaldevicenum
|
9399
|
+
@GatewayDeviceNum = gatewaydevicenum
|
9400
|
+
@SubDeviceNum = subdevicenum
|
9401
|
+
end
|
9402
|
+
|
9403
|
+
def deserialize(params)
|
9404
|
+
@NormalDeviceNum = params['NormalDeviceNum']
|
9405
|
+
@GatewayDeviceNum = params['GatewayDeviceNum']
|
9406
|
+
@SubDeviceNum = params['SubDeviceNum']
|
9407
|
+
end
|
9408
|
+
end
|
9409
|
+
|
9055
9410
|
# ReleaseStudioProduct请求参数结构体
|
9056
9411
|
class ReleaseStudioProductRequest < TencentCloud::Common::AbstractModel
|
9057
9412
|
# @param ProductId: 产品ID
|
@@ -9671,6 +10026,33 @@ module TencentCloud
|
|
9671
10026
|
end
|
9672
10027
|
end
|
9673
10028
|
|
10029
|
+
# TWeCall信息
|
10030
|
+
class TWeCallLicenseInfo < TencentCloud::Common::AbstractModel
|
10031
|
+
# @param TWeCallType: voip类型
|
10032
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10033
|
+
# @type TWeCallType: String
|
10034
|
+
# @param TotalNum: 总数
|
10035
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10036
|
+
# @type TotalNum: Integer
|
10037
|
+
# @param UsedNum: 已使用
|
10038
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10039
|
+
# @type UsedNum: Integer
|
10040
|
+
|
10041
|
+
attr_accessor :TWeCallType, :TotalNum, :UsedNum
|
10042
|
+
|
10043
|
+
def initialize(twecalltype=nil, totalnum=nil, usednum=nil)
|
10044
|
+
@TWeCallType = twecalltype
|
10045
|
+
@TotalNum = totalnum
|
10046
|
+
@UsedNum = usednum
|
10047
|
+
end
|
10048
|
+
|
10049
|
+
def deserialize(params)
|
10050
|
+
@TWeCallType = params['TWeCallType']
|
10051
|
+
@TotalNum = params['TotalNum']
|
10052
|
+
@UsedNum = params['UsedNum']
|
10053
|
+
end
|
10054
|
+
end
|
10055
|
+
|
9674
10056
|
# TWeCall设备信息
|
9675
10057
|
class TWeCallPkgInfo < TencentCloud::Common::AbstractModel
|
9676
10058
|
# @param PkgId: 包ID
|
@@ -10268,6 +10650,34 @@ module TencentCloud
|
|
10268
10650
|
end
|
10269
10651
|
end
|
10270
10652
|
|
10653
|
+
# 视频设备激活码统计
|
10654
|
+
class VideoLicenseEntity < TencentCloud::Common::AbstractModel
|
10655
|
+
# @param Type: 激活码类型,取值范围如下:0_5_mbps、1_mbps、1_5_mbps、2_mbps
|
10656
|
+
# @type Type: String
|
10657
|
+
# @param TotalCount: 有效激活码总数
|
10658
|
+
# @type TotalCount: Integer
|
10659
|
+
# @param UsedCount: 待使用的激活码数量
|
10660
|
+
# @type UsedCount: Integer
|
10661
|
+
# @param ExpiresSoonCount: 即将过期的激活码数量
|
10662
|
+
# @type ExpiresSoonCount: Integer
|
10663
|
+
|
10664
|
+
attr_accessor :Type, :TotalCount, :UsedCount, :ExpiresSoonCount
|
10665
|
+
|
10666
|
+
def initialize(type=nil, totalcount=nil, usedcount=nil, expiressooncount=nil)
|
10667
|
+
@Type = type
|
10668
|
+
@TotalCount = totalcount
|
10669
|
+
@UsedCount = usedcount
|
10670
|
+
@ExpiresSoonCount = expiressooncount
|
10671
|
+
end
|
10672
|
+
|
10673
|
+
def deserialize(params)
|
10674
|
+
@Type = params['Type']
|
10675
|
+
@TotalCount = params['TotalCount']
|
10676
|
+
@UsedCount = params['UsedCount']
|
10677
|
+
@ExpiresSoonCount = params['ExpiresSoonCount']
|
10678
|
+
end
|
10679
|
+
end
|
10680
|
+
|
10271
10681
|
# 微信硬件设备信息
|
10272
10682
|
class WXDeviceInfo < TencentCloud::Common::AbstractModel
|
10273
10683
|
# @param DeviceId: 设备ID
|
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.979
|
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-01-
|
11
|
+
date: 2025-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|