tencentcloud-sdk-python 3.0.1352__py2.py3-none-any.whl → 3.0.1354__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/batch_client.py +0 -46
- tencentcloud/batch/v20170312/errorcodes.py +0 -9
- tencentcloud/batch/v20170312/models.py +21 -962
- tencentcloud/bh/v20230418/models.py +15 -0
- tencentcloud/bi/v20220105/models.py +145 -0
- tencentcloud/cam/v20190116/errorcodes.py +3 -0
- tencentcloud/cam/v20190116/models.py +0 -82
- tencentcloud/cbs/v20170312/models.py +6 -14
- tencentcloud/cdn/v20180606/models.py +0 -46
- tencentcloud/chdfs/v20201112/models.py +2 -2
- tencentcloud/ckafka/v20190819/models.py +4 -4
- tencentcloud/clb/v20180317/models.py +19 -0
- tencentcloud/controlcenter/v20230110/models.py +0 -58
- tencentcloud/dbbrain/v20191016/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20191016/models.py +375 -0
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +701 -26
- tencentcloud/dcdb/v20180411/models.py +175 -2
- tencentcloud/dnspod/v20210323/models.py +0 -70
- tencentcloud/dts/v20211206/models.py +92 -0
- tencentcloud/facefusion/v20220927/models.py +4 -2
- tencentcloud/gs/v20191118/models.py +16 -4
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +49 -416
- tencentcloud/lkeap/v20240522/models.py +12 -6
- tencentcloud/mariadb/v20170312/models.py +151 -2
- tencentcloud/mps/v20190612/models.py +2 -2
- tencentcloud/mqtt/v20240516/models.py +8 -2
- tencentcloud/ocr/v20181119/errorcodes.py +0 -3
- tencentcloud/ocr/v20181119/models.py +0 -558
- tencentcloud/ocr/v20181119/ocr_client.py +0 -23
- tencentcloud/organization/v20210331/models.py +15 -0
- tencentcloud/sqlserver/v20180328/models.py +15 -0
- tencentcloud/tcb/v20180608/models.py +20 -0
- tencentcloud/teo/v20220106/teo_client.py +6 -2
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +35 -3
- tencentcloud/tse/v20201207/models.py +0 -530
- tencentcloud/vod/v20240718/models.py +0 -2
- tencentcloud/vpc/v20170312/models.py +300 -0
- tencentcloud/vpc/v20170312/vpc_client.py +26 -0
- tencentcloud/wedata/v20210820/models.py +32 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/RECORD +48 -48
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/top_level.txt +0 -0
@@ -203,13 +203,10 @@ class ActivateTWeCallLicenseResponse(AbstractModel):
|
|
203
203
|
def __init__(self):
|
204
204
|
r"""
|
205
205
|
:param _DeviceList: 设备激活返回数据
|
206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
207
206
|
:type DeviceList: list of DeviceActiveResult
|
208
207
|
:param _FailureList: 设备激活失败返回数据
|
209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
210
208
|
:type FailureList: list of DeviceActiveResult
|
211
209
|
:param _SuccessList: 设备激活成功返回数据
|
212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
213
210
|
:type SuccessList: list of DeviceActiveResult
|
214
211
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
215
212
|
:type RequestId: str
|
@@ -221,20 +218,22 @@ class ActivateTWeCallLicenseResponse(AbstractModel):
|
|
221
218
|
|
222
219
|
@property
|
223
220
|
def DeviceList(self):
|
221
|
+
warnings.warn("parameter `DeviceList` is deprecated", DeprecationWarning)
|
222
|
+
|
224
223
|
"""设备激活返回数据
|
225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
226
224
|
:rtype: list of DeviceActiveResult
|
227
225
|
"""
|
228
226
|
return self._DeviceList
|
229
227
|
|
230
228
|
@DeviceList.setter
|
231
229
|
def DeviceList(self, DeviceList):
|
230
|
+
warnings.warn("parameter `DeviceList` is deprecated", DeprecationWarning)
|
231
|
+
|
232
232
|
self._DeviceList = DeviceList
|
233
233
|
|
234
234
|
@property
|
235
235
|
def FailureList(self):
|
236
236
|
"""设备激活失败返回数据
|
237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
238
237
|
:rtype: list of DeviceActiveResult
|
239
238
|
"""
|
240
239
|
return self._FailureList
|
@@ -246,7 +245,6 @@ class ActivateTWeCallLicenseResponse(AbstractModel):
|
|
246
245
|
@property
|
247
246
|
def SuccessList(self):
|
248
247
|
"""设备激活成功返回数据
|
249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
250
248
|
:rtype: list of DeviceActiveResult
|
251
249
|
"""
|
252
250
|
return self._SuccessList
|
@@ -468,22 +466,16 @@ class AuthMiniProgramAppInfo(AbstractModel):
|
|
468
466
|
def __init__(self):
|
469
467
|
r"""
|
470
468
|
:param _MiniProgramAppId: 小程序APPID
|
471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
472
469
|
:type MiniProgramAppId: str
|
473
470
|
:param _CreateTime: 创建时间
|
474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
475
471
|
:type CreateTime: int
|
476
472
|
:param _MiniProgramName: 小程序名称
|
477
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
478
473
|
:type MiniProgramName: str
|
479
474
|
:param _LicenseNum: 激活码数
|
480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
481
475
|
:type LicenseNum: int
|
482
476
|
:param _IotAppId: 应用ID
|
483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
484
477
|
:type IotAppId: str
|
485
478
|
:param _IotAppName: 应用名称
|
486
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
487
479
|
:type IotAppName: str
|
488
480
|
"""
|
489
481
|
self._MiniProgramAppId = None
|
@@ -496,7 +488,6 @@ class AuthMiniProgramAppInfo(AbstractModel):
|
|
496
488
|
@property
|
497
489
|
def MiniProgramAppId(self):
|
498
490
|
"""小程序APPID
|
499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
500
491
|
:rtype: str
|
501
492
|
"""
|
502
493
|
return self._MiniProgramAppId
|
@@ -508,7 +499,6 @@ class AuthMiniProgramAppInfo(AbstractModel):
|
|
508
499
|
@property
|
509
500
|
def CreateTime(self):
|
510
501
|
"""创建时间
|
511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
512
502
|
:rtype: int
|
513
503
|
"""
|
514
504
|
return self._CreateTime
|
@@ -520,7 +510,6 @@ class AuthMiniProgramAppInfo(AbstractModel):
|
|
520
510
|
@property
|
521
511
|
def MiniProgramName(self):
|
522
512
|
"""小程序名称
|
523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
524
513
|
:rtype: str
|
525
514
|
"""
|
526
515
|
return self._MiniProgramName
|
@@ -532,7 +521,6 @@ class AuthMiniProgramAppInfo(AbstractModel):
|
|
532
521
|
@property
|
533
522
|
def LicenseNum(self):
|
534
523
|
"""激活码数
|
535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
536
524
|
:rtype: int
|
537
525
|
"""
|
538
526
|
return self._LicenseNum
|
@@ -544,7 +532,6 @@ class AuthMiniProgramAppInfo(AbstractModel):
|
|
544
532
|
@property
|
545
533
|
def IotAppId(self):
|
546
534
|
"""应用ID
|
547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
548
535
|
:rtype: str
|
549
536
|
"""
|
550
537
|
return self._IotAppId
|
@@ -556,7 +543,6 @@ class AuthMiniProgramAppInfo(AbstractModel):
|
|
556
543
|
@property
|
557
544
|
def IotAppName(self):
|
558
545
|
"""应用名称
|
559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
560
546
|
:rtype: str
|
561
547
|
"""
|
562
548
|
return self._IotAppName
|
@@ -945,25 +931,18 @@ class BindProductInfo(AbstractModel):
|
|
945
931
|
:param _ProductName: 产品名称。
|
946
932
|
:type ProductName: str
|
947
933
|
:param _ProjectId: 产品所属项目ID。
|
948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
949
934
|
:type ProjectId: str
|
950
935
|
:param _DataProtocol: 物模型类型。
|
951
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
952
936
|
:type DataProtocol: int
|
953
937
|
:param _CategoryId: 产品分组模板ID
|
954
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
955
938
|
:type CategoryId: int
|
956
939
|
:param _ProductType: 产品类型
|
957
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
958
940
|
:type ProductType: int
|
959
941
|
:param _NetType: 连接类型
|
960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
961
942
|
:type NetType: str
|
962
943
|
:param _DevStatus: 状态
|
963
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
964
944
|
:type DevStatus: str
|
965
945
|
:param _ProductOwnerName: 产品拥有者名称
|
966
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
967
946
|
:type ProductOwnerName: str
|
968
947
|
"""
|
969
948
|
self._ProductId = None
|
@@ -1001,7 +980,6 @@ class BindProductInfo(AbstractModel):
|
|
1001
980
|
@property
|
1002
981
|
def ProjectId(self):
|
1003
982
|
"""产品所属项目ID。
|
1004
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1005
983
|
:rtype: str
|
1006
984
|
"""
|
1007
985
|
return self._ProjectId
|
@@ -1013,7 +991,6 @@ class BindProductInfo(AbstractModel):
|
|
1013
991
|
@property
|
1014
992
|
def DataProtocol(self):
|
1015
993
|
"""物模型类型。
|
1016
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1017
994
|
:rtype: int
|
1018
995
|
"""
|
1019
996
|
return self._DataProtocol
|
@@ -1025,7 +1002,6 @@ class BindProductInfo(AbstractModel):
|
|
1025
1002
|
@property
|
1026
1003
|
def CategoryId(self):
|
1027
1004
|
"""产品分组模板ID
|
1028
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1029
1005
|
:rtype: int
|
1030
1006
|
"""
|
1031
1007
|
return self._CategoryId
|
@@ -1037,7 +1013,6 @@ class BindProductInfo(AbstractModel):
|
|
1037
1013
|
@property
|
1038
1014
|
def ProductType(self):
|
1039
1015
|
"""产品类型
|
1040
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1041
1016
|
:rtype: int
|
1042
1017
|
"""
|
1043
1018
|
return self._ProductType
|
@@ -1049,7 +1024,6 @@ class BindProductInfo(AbstractModel):
|
|
1049
1024
|
@property
|
1050
1025
|
def NetType(self):
|
1051
1026
|
"""连接类型
|
1052
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1053
1027
|
:rtype: str
|
1054
1028
|
"""
|
1055
1029
|
return self._NetType
|
@@ -1061,7 +1035,6 @@ class BindProductInfo(AbstractModel):
|
|
1061
1035
|
@property
|
1062
1036
|
def DevStatus(self):
|
1063
1037
|
"""状态
|
1064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1065
1038
|
:rtype: str
|
1066
1039
|
"""
|
1067
1040
|
return self._DevStatus
|
@@ -1073,7 +1046,6 @@ class BindProductInfo(AbstractModel):
|
|
1073
1046
|
@property
|
1074
1047
|
def ProductOwnerName(self):
|
1075
1048
|
"""产品拥有者名称
|
1076
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1077
1049
|
:rtype: str
|
1078
1050
|
"""
|
1079
1051
|
return self._ProductOwnerName
|
@@ -1412,7 +1384,6 @@ class CallDeviceActionSyncResponse(AbstractModel):
|
|
1412
1384
|
:param _ClientToken: 调用Id
|
1413
1385
|
:type ClientToken: str
|
1414
1386
|
:param _OutputParams: 输出参数,取值设备端上报$thing/up/action method为action_reply 的 response字段,物模型协议参考https://cloud.tencent.com/document/product/1081/34916#.E8.AE.BE.E5.A4.87.E8.A1.8C.E4.B8.BA.E8.B0.83.E7.94.A8
|
1415
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1416
1387
|
:type OutputParams: str
|
1417
1388
|
:param _Status: 返回状态,取值设备端上报$thing/up/action method为action_reply 的 status字段,如果不包含status字段,则取默认值,空字符串,物模型协议参考https://cloud.tencent.com/document/product/1081/34916#.E8.AE.BE.E5.A4.87.E8.A1.8C.E4.B8.BA.E8.B0.83.E7.94.A8
|
1418
1389
|
:type Status: str
|
@@ -1438,7 +1409,6 @@ class CallDeviceActionSyncResponse(AbstractModel):
|
|
1438
1409
|
@property
|
1439
1410
|
def OutputParams(self):
|
1440
1411
|
"""输出参数,取值设备端上报$thing/up/action method为action_reply 的 response字段,物模型协议参考https://cloud.tencent.com/document/product/1081/34916#.E8.AE.BE.E5.A4.87.E8.A1.8C.E4.B8.BA.E8.B0.83.E7.94.A8
|
1441
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1442
1412
|
:rtype: str
|
1443
1413
|
"""
|
1444
1414
|
return self._OutputParams
|
@@ -1485,10 +1455,8 @@ class CamTag(AbstractModel):
|
|
1485
1455
|
def __init__(self):
|
1486
1456
|
r"""
|
1487
1457
|
:param _TagKey: 标签键
|
1488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1489
1458
|
:type TagKey: str
|
1490
1459
|
:param _TagValue: 标签值
|
1491
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1492
1460
|
:type TagValue: str
|
1493
1461
|
"""
|
1494
1462
|
self._TagKey = None
|
@@ -1497,7 +1465,6 @@ class CamTag(AbstractModel):
|
|
1497
1465
|
@property
|
1498
1466
|
def TagKey(self):
|
1499
1467
|
"""标签键
|
1500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1501
1468
|
:rtype: str
|
1502
1469
|
"""
|
1503
1470
|
return self._TagKey
|
@@ -1509,7 +1476,6 @@ class CamTag(AbstractModel):
|
|
1509
1476
|
@property
|
1510
1477
|
def TagValue(self):
|
1511
1478
|
"""标签值
|
1512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1513
1479
|
:rtype: str
|
1514
1480
|
"""
|
1515
1481
|
return self._TagValue
|
@@ -1749,10 +1715,8 @@ class CheckFirmwareUpdateResponse(AbstractModel):
|
|
1749
1715
|
def __init__(self):
|
1750
1716
|
r"""
|
1751
1717
|
:param _CurrentVersion: 设备当前固件版本。
|
1752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1753
1718
|
:type CurrentVersion: str
|
1754
1719
|
:param _DstVersion: 固件可升级版本。
|
1755
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1756
1720
|
:type DstVersion: str
|
1757
1721
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1758
1722
|
:type RequestId: str
|
@@ -1764,7 +1728,6 @@ class CheckFirmwareUpdateResponse(AbstractModel):
|
|
1764
1728
|
@property
|
1765
1729
|
def CurrentVersion(self):
|
1766
1730
|
"""设备当前固件版本。
|
1767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1768
1731
|
:rtype: str
|
1769
1732
|
"""
|
1770
1733
|
return self._CurrentVersion
|
@@ -1776,7 +1739,6 @@ class CheckFirmwareUpdateResponse(AbstractModel):
|
|
1776
1739
|
@property
|
1777
1740
|
def DstVersion(self):
|
1778
1741
|
"""固件可升级版本。
|
1779
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1780
1742
|
:rtype: str
|
1781
1743
|
"""
|
1782
1744
|
return self._DstVersion
|
@@ -2283,10 +2245,8 @@ class CloudStorageEvent(AbstractModel):
|
|
2283
2245
|
:param _EventId: 事件ID
|
2284
2246
|
:type EventId: str
|
2285
2247
|
:param _UploadStatus: 事件录像上传状态,Finished: 全部上传成功 Partial: 部分上传成功 Failed: 上传失败
|
2286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2287
2248
|
:type UploadStatus: str
|
2288
2249
|
:param _Data: 事件自定义数据
|
2289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2290
2250
|
:type Data: str
|
2291
2251
|
"""
|
2292
2252
|
self._StartTime = None
|
@@ -2343,7 +2303,6 @@ class CloudStorageEvent(AbstractModel):
|
|
2343
2303
|
@property
|
2344
2304
|
def UploadStatus(self):
|
2345
2305
|
"""事件录像上传状态,Finished: 全部上传成功 Partial: 部分上传成功 Failed: 上传失败
|
2346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2347
2306
|
:rtype: str
|
2348
2307
|
"""
|
2349
2308
|
return self._UploadStatus
|
@@ -2355,7 +2314,6 @@ class CloudStorageEvent(AbstractModel):
|
|
2355
2314
|
@property
|
2356
2315
|
def Data(self):
|
2357
2316
|
"""事件自定义数据
|
2358
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2359
2317
|
:rtype: str
|
2360
2318
|
"""
|
2361
2319
|
return self._Data
|
@@ -2604,7 +2562,6 @@ class CloudStorageTimeData(AbstractModel):
|
|
2604
2562
|
:param _TimeList: 云存时间轴信息列表
|
2605
2563
|
:type TimeList: list of CloudStorageTimeInfo
|
2606
2564
|
:param _VideoURL: 播放地址
|
2607
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2608
2565
|
:type VideoURL: str
|
2609
2566
|
"""
|
2610
2567
|
self._TimeList = None
|
@@ -2624,7 +2581,6 @@ class CloudStorageTimeData(AbstractModel):
|
|
2624
2581
|
@property
|
2625
2582
|
def VideoURL(self):
|
2626
2583
|
"""播放地址
|
2627
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2628
2584
|
:rtype: str
|
2629
2585
|
"""
|
2630
2586
|
return self._VideoURL
|
@@ -2862,7 +2818,6 @@ class ControlDeviceDataResponse(AbstractModel):
|
|
2862
2818
|
:param _Result: JSON字符串, 返回下发控制的结果信息,
|
2863
2819
|
Sent = 1 表示设备已经在线并且订阅了控制下发的mqtt topic.
|
2864
2820
|
pushResult 是表示发送结果,其中 0 表示成功, 23101 表示设备未在线或没有订阅相关的 MQTT Topic。
|
2865
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2866
2821
|
:type Result: str
|
2867
2822
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2868
2823
|
:type RequestId: str
|
@@ -2887,7 +2842,6 @@ pushResult 是表示发送结果,其中 0 表示成功, 23101 表示设备
|
|
2887
2842
|
"""JSON字符串, 返回下发控制的结果信息,
|
2888
2843
|
Sent = 1 表示设备已经在线并且订阅了控制下发的mqtt topic.
|
2889
2844
|
pushResult 是表示发送结果,其中 0 表示成功, 23101 表示设备未在线或没有订阅相关的 MQTT Topic。
|
2890
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2891
2845
|
:rtype: str
|
2892
2846
|
"""
|
2893
2847
|
return self._Result
|
@@ -4175,10 +4129,8 @@ class CreateFreeCloudStorageResponse(AbstractModel):
|
|
4175
4129
|
def __init__(self):
|
4176
4130
|
r"""
|
4177
4131
|
:param _Price: 订单金额,单位为分
|
4178
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4179
4132
|
:type Price: int
|
4180
4133
|
:param _Amount: 支付金额,单位为分
|
4181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4182
4134
|
:type Amount: int
|
4183
4135
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4184
4136
|
:type RequestId: str
|
@@ -4190,7 +4142,6 @@ class CreateFreeCloudStorageResponse(AbstractModel):
|
|
4190
4142
|
@property
|
4191
4143
|
def Price(self):
|
4192
4144
|
"""订单金额,单位为分
|
4193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4194
4145
|
:rtype: int
|
4195
4146
|
"""
|
4196
4147
|
return self._Price
|
@@ -4202,7 +4153,6 @@ class CreateFreeCloudStorageResponse(AbstractModel):
|
|
4202
4153
|
@property
|
4203
4154
|
def Amount(self):
|
4204
4155
|
"""支付金额,单位为分
|
4205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4206
4156
|
:rtype: int
|
4207
4157
|
"""
|
4208
4158
|
return self._Amount
|
@@ -4418,10 +4368,8 @@ class CreateIotVideoCloudStorageResponse(AbstractModel):
|
|
4418
4368
|
def __init__(self):
|
4419
4369
|
r"""
|
4420
4370
|
:param _Price: 订单金额,单位为分
|
4421
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4422
4371
|
:type Price: int
|
4423
4372
|
:param _Amount: 支付金额,单位为分
|
4424
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4425
4373
|
:type Amount: int
|
4426
4374
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4427
4375
|
:type RequestId: str
|
@@ -4433,7 +4381,6 @@ class CreateIotVideoCloudStorageResponse(AbstractModel):
|
|
4433
4381
|
@property
|
4434
4382
|
def Price(self):
|
4435
4383
|
"""订单金额,单位为分
|
4436
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4437
4384
|
:rtype: int
|
4438
4385
|
"""
|
4439
4386
|
return self._Price
|
@@ -4445,7 +4392,6 @@ class CreateIotVideoCloudStorageResponse(AbstractModel):
|
|
4445
4392
|
@property
|
4446
4393
|
def Amount(self):
|
4447
4394
|
"""支付金额,单位为分
|
4448
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4449
4395
|
:rtype: int
|
4450
4396
|
"""
|
4451
4397
|
return self._Amount
|
@@ -5074,7 +5020,6 @@ class CreatePositionSpaceResponse(AbstractModel):
|
|
5074
5020
|
def __init__(self):
|
5075
5021
|
r"""
|
5076
5022
|
:param _SpaceId: 空间Id
|
5077
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5078
5023
|
:type SpaceId: str
|
5079
5024
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5080
5025
|
:type RequestId: str
|
@@ -5085,7 +5030,6 @@ class CreatePositionSpaceResponse(AbstractModel):
|
|
5085
5030
|
@property
|
5086
5031
|
def SpaceId(self):
|
5087
5032
|
"""空间Id
|
5088
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5089
5033
|
:rtype: str
|
5090
5034
|
"""
|
5091
5035
|
return self._SpaceId
|
@@ -5497,7 +5441,6 @@ class CreateTRTCSignaturesWithRoomIdResponse(AbstractModel):
|
|
5497
5441
|
def __init__(self):
|
5498
5442
|
r"""
|
5499
5443
|
:param _TRTCParamList: 返回参数数组
|
5500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5501
5444
|
:type TRTCParamList: list of TRTCParams
|
5502
5445
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5503
5446
|
:type RequestId: str
|
@@ -5508,7 +5451,6 @@ class CreateTRTCSignaturesWithRoomIdResponse(AbstractModel):
|
|
5508
5451
|
@property
|
5509
5452
|
def TRTCParamList(self):
|
5510
5453
|
"""返回参数数组
|
5511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5512
5454
|
:rtype: list of TRTCParams
|
5513
5455
|
"""
|
5514
5456
|
return self._TRTCParamList
|
@@ -5942,10 +5884,8 @@ class DeleteDeviceResponse(AbstractModel):
|
|
5942
5884
|
def __init__(self):
|
5943
5885
|
r"""
|
5944
5886
|
:param _ResultCode: 删除的结果代码
|
5945
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5946
5887
|
:type ResultCode: str
|
5947
5888
|
:param _ResultMessage: 删除的结果信息
|
5948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5949
5889
|
:type ResultMessage: str
|
5950
5890
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5951
5891
|
:type RequestId: str
|
@@ -5957,7 +5897,6 @@ class DeleteDeviceResponse(AbstractModel):
|
|
5957
5897
|
@property
|
5958
5898
|
def ResultCode(self):
|
5959
5899
|
"""删除的结果代码
|
5960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5961
5900
|
:rtype: str
|
5962
5901
|
"""
|
5963
5902
|
return self._ResultCode
|
@@ -5969,7 +5908,6 @@ class DeleteDeviceResponse(AbstractModel):
|
|
5969
5908
|
@property
|
5970
5909
|
def ResultMessage(self):
|
5971
5910
|
"""删除的结果信息
|
5972
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5973
5911
|
:rtype: str
|
5974
5912
|
"""
|
5975
5913
|
return self._ResultMessage
|
@@ -6045,10 +5983,8 @@ class DeleteDevicesResponse(AbstractModel):
|
|
6045
5983
|
def __init__(self):
|
6046
5984
|
r"""
|
6047
5985
|
:param _ResultCode: 删除的结果代码
|
6048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6049
5986
|
:type ResultCode: str
|
6050
5987
|
:param _ResultMessage: 删除的结果信息
|
6051
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6052
5988
|
:type ResultMessage: str
|
6053
5989
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6054
5990
|
:type RequestId: str
|
@@ -6060,7 +5996,6 @@ class DeleteDevicesResponse(AbstractModel):
|
|
6060
5996
|
@property
|
6061
5997
|
def ResultCode(self):
|
6062
5998
|
"""删除的结果代码
|
6063
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6064
5999
|
:rtype: str
|
6065
6000
|
"""
|
6066
6001
|
return self._ResultCode
|
@@ -6072,7 +6007,6 @@ class DeleteDevicesResponse(AbstractModel):
|
|
6072
6007
|
@property
|
6073
6008
|
def ResultMessage(self):
|
6074
6009
|
"""删除的结果信息
|
6075
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6076
6010
|
:rtype: str
|
6077
6011
|
"""
|
6078
6012
|
return self._ResultMessage
|
@@ -6769,7 +6703,6 @@ class DescribeActivateDeviceResponse(AbstractModel):
|
|
6769
6703
|
def __init__(self):
|
6770
6704
|
r"""
|
6771
6705
|
:param _Data: 设备激活详情信息
|
6772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6773
6706
|
:type Data: :class:`tencentcloud.iotexplorer.v20190423.models.ActivateDeviceInfo`
|
6774
6707
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6775
6708
|
:type RequestId: str
|
@@ -6780,7 +6713,6 @@ class DescribeActivateDeviceResponse(AbstractModel):
|
|
6780
6713
|
@property
|
6781
6714
|
def Data(self):
|
6782
6715
|
"""设备激活详情信息
|
6783
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6784
6716
|
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.ActivateDeviceInfo`
|
6785
6717
|
"""
|
6786
6718
|
return self._Data
|
@@ -6867,7 +6799,6 @@ class DescribeActivateLicenseServiceResponse(AbstractModel):
|
|
6867
6799
|
def __init__(self):
|
6868
6800
|
r"""
|
6869
6801
|
:param _Data: 增值服务激活码信息
|
6870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6871
6802
|
:type Data: list of LicenseServiceNumInfo
|
6872
6803
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6873
6804
|
:type RequestId: str
|
@@ -6878,7 +6809,6 @@ class DescribeActivateLicenseServiceResponse(AbstractModel):
|
|
6878
6809
|
@property
|
6879
6810
|
def Data(self):
|
6880
6811
|
"""增值服务激活码信息
|
6881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6882
6812
|
:rtype: list of LicenseServiceNumInfo
|
6883
6813
|
"""
|
6884
6814
|
return self._Data
|
@@ -6980,13 +6910,10 @@ class DescribeBatchProductionResponse(AbstractModel):
|
|
6980
6910
|
:param _UploadUrl: 上传URL。
|
6981
6911
|
:type UploadUrl: str
|
6982
6912
|
:param _SuccessCount: 成功数
|
6983
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6984
6913
|
:type SuccessCount: int
|
6985
6914
|
:param _LastFailedReason: 量产最后失败原因
|
6986
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6987
6915
|
:type LastFailedReason: str
|
6988
6916
|
:param _Status: 量产状态 0:任务创建,未量产;1:处理中;2:量产结束上传结果中;3:任务完成
|
6989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6990
6917
|
:type Status: int
|
6991
6918
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6992
6919
|
:type RequestId: str
|
@@ -7071,7 +6998,6 @@ class DescribeBatchProductionResponse(AbstractModel):
|
|
7071
6998
|
@property
|
7072
6999
|
def SuccessCount(self):
|
7073
7000
|
"""成功数
|
7074
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7075
7001
|
:rtype: int
|
7076
7002
|
"""
|
7077
7003
|
return self._SuccessCount
|
@@ -7083,7 +7009,6 @@ class DescribeBatchProductionResponse(AbstractModel):
|
|
7083
7009
|
@property
|
7084
7010
|
def LastFailedReason(self):
|
7085
7011
|
"""量产最后失败原因
|
7086
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7087
7012
|
:rtype: str
|
7088
7013
|
"""
|
7089
7014
|
return self._LastFailedReason
|
@@ -7095,7 +7020,6 @@ class DescribeBatchProductionResponse(AbstractModel):
|
|
7095
7020
|
@property
|
7096
7021
|
def Status(self):
|
7097
7022
|
"""量产状态 0:任务创建,未量产;1:处理中;2:量产结束上传结果中;3:任务完成
|
7098
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7099
7023
|
:rtype: int
|
7100
7024
|
"""
|
7101
7025
|
return self._Status
|
@@ -8820,13 +8744,10 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
|
|
8820
8744
|
def __init__(self):
|
8821
8745
|
r"""
|
8822
8746
|
:param _StartTime: 云存套餐开始时间
|
8823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8824
8747
|
:type StartTime: int
|
8825
8748
|
:param _ExpireTime: 云存套餐过期时间
|
8826
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8827
8749
|
:type ExpireTime: int
|
8828
8750
|
:param _PackageId: 套餐id
|
8829
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8830
8751
|
:type PackageId: str
|
8831
8752
|
:param _Status: 套餐状态
|
8832
8753
|
0:等待生效
|
@@ -8836,10 +8757,8 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
|
|
8836
8757
|
:param _ChannelId: 通道id
|
8837
8758
|
:type ChannelId: int
|
8838
8759
|
:param _Price: 订单金额,单位为分
|
8839
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8840
8760
|
:type Price: int
|
8841
8761
|
:param _Amount: 支付金额,单位为分
|
8842
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8843
8762
|
:type Amount: int
|
8844
8763
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8845
8764
|
:type RequestId: str
|
@@ -8856,7 +8775,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
|
|
8856
8775
|
@property
|
8857
8776
|
def StartTime(self):
|
8858
8777
|
"""云存套餐开始时间
|
8859
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8860
8778
|
:rtype: int
|
8861
8779
|
"""
|
8862
8780
|
return self._StartTime
|
@@ -8868,7 +8786,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
|
|
8868
8786
|
@property
|
8869
8787
|
def ExpireTime(self):
|
8870
8788
|
"""云存套餐过期时间
|
8871
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8872
8789
|
:rtype: int
|
8873
8790
|
"""
|
8874
8791
|
return self._ExpireTime
|
@@ -8880,7 +8797,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
|
|
8880
8797
|
@property
|
8881
8798
|
def PackageId(self):
|
8882
8799
|
"""套餐id
|
8883
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8884
8800
|
:rtype: str
|
8885
8801
|
"""
|
8886
8802
|
return self._PackageId
|
@@ -8917,7 +8833,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
|
|
8917
8833
|
@property
|
8918
8834
|
def Price(self):
|
8919
8835
|
"""订单金额,单位为分
|
8920
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8921
8836
|
:rtype: int
|
8922
8837
|
"""
|
8923
8838
|
return self._Price
|
@@ -8929,7 +8844,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
|
|
8929
8844
|
@property
|
8930
8845
|
def Amount(self):
|
8931
8846
|
"""支付金额,单位为分
|
8932
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8933
8847
|
:rtype: int
|
8934
8848
|
"""
|
8935
8849
|
return self._Amount
|
@@ -9236,7 +9150,6 @@ class DescribeCloudStorageResponse(AbstractModel):
|
|
9236
9150
|
:param _ShiftDuration: 云存回看时长
|
9237
9151
|
:type ShiftDuration: int
|
9238
9152
|
:param _UserId: 云存用户ID
|
9239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9240
9153
|
:type UserId: str
|
9241
9154
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9242
9155
|
:type RequestId: str
|
@@ -9295,7 +9208,6 @@ class DescribeCloudStorageResponse(AbstractModel):
|
|
9295
9208
|
@property
|
9296
9209
|
def UserId(self):
|
9297
9210
|
"""云存用户ID
|
9298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9299
9211
|
:rtype: str
|
9300
9212
|
"""
|
9301
9213
|
return self._UserId
|
@@ -10061,19 +9973,14 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
|
|
10061
9973
|
def __init__(self):
|
10062
9974
|
r"""
|
10063
9975
|
:param _GatewayProductId: 网关产品ID
|
10064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10065
9976
|
:type GatewayProductId: str
|
10066
9977
|
:param _GatewayDeviceName: 网关设备名
|
10067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10068
9978
|
:type GatewayDeviceName: str
|
10069
9979
|
:param _GatewayName: 网关产品名称
|
10070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10071
9980
|
:type GatewayName: str
|
10072
9981
|
:param _GatewayProductOwnerName: 设备对应产品所属的主账号名称
|
10073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10074
9982
|
:type GatewayProductOwnerName: str
|
10075
9983
|
:param _GatewayProductOwnerUin: 设备对应产品所属的主账号 UIN
|
10076
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10077
9984
|
:type GatewayProductOwnerUin: str
|
10078
9985
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10079
9986
|
:type RequestId: str
|
@@ -10088,7 +9995,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
|
|
10088
9995
|
@property
|
10089
9996
|
def GatewayProductId(self):
|
10090
9997
|
"""网关产品ID
|
10091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10092
9998
|
:rtype: str
|
10093
9999
|
"""
|
10094
10000
|
return self._GatewayProductId
|
@@ -10100,7 +10006,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
|
|
10100
10006
|
@property
|
10101
10007
|
def GatewayDeviceName(self):
|
10102
10008
|
"""网关设备名
|
10103
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10104
10009
|
:rtype: str
|
10105
10010
|
"""
|
10106
10011
|
return self._GatewayDeviceName
|
@@ -10112,7 +10017,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
|
|
10112
10017
|
@property
|
10113
10018
|
def GatewayName(self):
|
10114
10019
|
"""网关产品名称
|
10115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10116
10020
|
:rtype: str
|
10117
10021
|
"""
|
10118
10022
|
return self._GatewayName
|
@@ -10124,7 +10028,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
|
|
10124
10028
|
@property
|
10125
10029
|
def GatewayProductOwnerName(self):
|
10126
10030
|
"""设备对应产品所属的主账号名称
|
10127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10128
10031
|
:rtype: str
|
10129
10032
|
"""
|
10130
10033
|
return self._GatewayProductOwnerName
|
@@ -10136,7 +10039,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
|
|
10136
10039
|
@property
|
10137
10040
|
def GatewayProductOwnerUin(self):
|
10138
10041
|
"""设备对应产品所属的主账号 UIN
|
10139
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10140
10042
|
:rtype: str
|
10141
10043
|
"""
|
10142
10044
|
return self._GatewayProductOwnerUin
|
@@ -10300,16 +10202,12 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
|
|
10300
10202
|
def __init__(self):
|
10301
10203
|
r"""
|
10302
10204
|
:param _FieldName: 属性字段名称,对应数据模板中功能属性的标识符
|
10303
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10304
10205
|
:type FieldName: str
|
10305
10206
|
:param _Listover: 数据是否已全部返回,true 表示数据全部返回,false 表示还有数据待返回,可将 Context 作为入参,继续查询返回结果。
|
10306
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10307
10207
|
:type Listover: bool
|
10308
10208
|
:param _Context: 检索上下文,当 ListOver 为false时,可以用此上下文,继续读取后续数据
|
10309
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10310
10209
|
:type Context: str
|
10311
10210
|
:param _Results: 历史数据结果数组,返回对应时间点及取值。
|
10312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10313
10211
|
:type Results: list of DeviceDataHistoryItem
|
10314
10212
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10315
10213
|
:type RequestId: str
|
@@ -10323,7 +10221,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
|
|
10323
10221
|
@property
|
10324
10222
|
def FieldName(self):
|
10325
10223
|
"""属性字段名称,对应数据模板中功能属性的标识符
|
10326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10327
10224
|
:rtype: str
|
10328
10225
|
"""
|
10329
10226
|
return self._FieldName
|
@@ -10335,7 +10232,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
|
|
10335
10232
|
@property
|
10336
10233
|
def Listover(self):
|
10337
10234
|
"""数据是否已全部返回,true 表示数据全部返回,false 表示还有数据待返回,可将 Context 作为入参,继续查询返回结果。
|
10338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10339
10235
|
:rtype: bool
|
10340
10236
|
"""
|
10341
10237
|
return self._Listover
|
@@ -10347,7 +10243,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
|
|
10347
10243
|
@property
|
10348
10244
|
def Context(self):
|
10349
10245
|
"""检索上下文,当 ListOver 为false时,可以用此上下文,继续读取后续数据
|
10350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10351
10246
|
:rtype: str
|
10352
10247
|
"""
|
10353
10248
|
return self._Context
|
@@ -10359,7 +10254,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
|
|
10359
10254
|
@property
|
10360
10255
|
def Results(self):
|
10361
10256
|
"""历史数据结果数组,返回对应时间点及取值。
|
10362
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10363
10257
|
:rtype: list of DeviceDataHistoryItem
|
10364
10258
|
"""
|
10365
10259
|
return self._Results
|
@@ -10655,7 +10549,6 @@ class DescribeDeviceFirmwaresResponse(AbstractModel):
|
|
10655
10549
|
def __init__(self):
|
10656
10550
|
r"""
|
10657
10551
|
:param _Firmwares: 固件信息列表
|
10658
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10659
10552
|
:type Firmwares: list of DeviceFirmwareInfo
|
10660
10553
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10661
10554
|
:type RequestId: str
|
@@ -10666,7 +10559,6 @@ class DescribeDeviceFirmwaresResponse(AbstractModel):
|
|
10666
10559
|
@property
|
10667
10560
|
def Firmwares(self):
|
10668
10561
|
"""固件信息列表
|
10669
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10670
10562
|
:rtype: list of DeviceFirmwareInfo
|
10671
10563
|
"""
|
10672
10564
|
return self._Firmwares
|
@@ -10812,7 +10704,6 @@ class DescribeDeviceLocationSolveResponse(AbstractModel):
|
|
10812
10704
|
:param _LocationType: 类型
|
10813
10705
|
:type LocationType: str
|
10814
10706
|
:param _Accuracy: 误差精度预估,单位为米
|
10815
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10816
10707
|
:type Accuracy: float
|
10817
10708
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10818
10709
|
:type RequestId: str
|
@@ -10859,7 +10750,6 @@ class DescribeDeviceLocationSolveResponse(AbstractModel):
|
|
10859
10750
|
@property
|
10860
10751
|
def Accuracy(self):
|
10861
10752
|
"""误差精度预估,单位为米
|
10862
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10863
10753
|
:rtype: float
|
10864
10754
|
"""
|
10865
10755
|
return self._Accuracy
|
@@ -11700,24 +11590,18 @@ class DescribeFirmwareResponse(AbstractModel):
|
|
11700
11590
|
:param _ProductId: 产品ID
|
11701
11591
|
:type ProductId: str
|
11702
11592
|
:param _Name: 固件名称
|
11703
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11704
11593
|
:type Name: str
|
11705
11594
|
:param _Description: 固件描述
|
11706
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11707
11595
|
:type Description: str
|
11708
11596
|
:param _Md5sum: 固件Md5值
|
11709
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11710
11597
|
:type Md5sum: str
|
11711
11598
|
:param _Createtime: 固件上传的秒级时间戳
|
11712
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11713
11599
|
:type Createtime: int
|
11714
11600
|
:param _ProductName: 产品名称
|
11715
11601
|
:type ProductName: str
|
11716
11602
|
:param _FwType: 固件升级模块
|
11717
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11718
11603
|
:type FwType: str
|
11719
11604
|
:param _UserDefined: 固件用户自定义配置信息
|
11720
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11721
11605
|
:type UserDefined: str
|
11722
11606
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11723
11607
|
:type RequestId: str
|
@@ -11758,7 +11642,6 @@ class DescribeFirmwareResponse(AbstractModel):
|
|
11758
11642
|
@property
|
11759
11643
|
def Name(self):
|
11760
11644
|
"""固件名称
|
11761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11762
11645
|
:rtype: str
|
11763
11646
|
"""
|
11764
11647
|
return self._Name
|
@@ -11770,7 +11653,6 @@ class DescribeFirmwareResponse(AbstractModel):
|
|
11770
11653
|
@property
|
11771
11654
|
def Description(self):
|
11772
11655
|
"""固件描述
|
11773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11774
11656
|
:rtype: str
|
11775
11657
|
"""
|
11776
11658
|
return self._Description
|
@@ -11782,7 +11664,6 @@ class DescribeFirmwareResponse(AbstractModel):
|
|
11782
11664
|
@property
|
11783
11665
|
def Md5sum(self):
|
11784
11666
|
"""固件Md5值
|
11785
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11786
11667
|
:rtype: str
|
11787
11668
|
"""
|
11788
11669
|
return self._Md5sum
|
@@ -11794,7 +11675,6 @@ class DescribeFirmwareResponse(AbstractModel):
|
|
11794
11675
|
@property
|
11795
11676
|
def Createtime(self):
|
11796
11677
|
"""固件上传的秒级时间戳
|
11797
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11798
11678
|
:rtype: int
|
11799
11679
|
"""
|
11800
11680
|
return self._Createtime
|
@@ -11817,7 +11697,6 @@ class DescribeFirmwareResponse(AbstractModel):
|
|
11817
11697
|
@property
|
11818
11698
|
def FwType(self):
|
11819
11699
|
"""固件升级模块
|
11820
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11821
11700
|
:rtype: str
|
11822
11701
|
"""
|
11823
11702
|
return self._FwType
|
@@ -11829,7 +11708,6 @@ class DescribeFirmwareResponse(AbstractModel):
|
|
11829
11708
|
@property
|
11830
11709
|
def UserDefined(self):
|
11831
11710
|
"""固件用户自定义配置信息
|
11832
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11833
11711
|
:rtype: str
|
11834
11712
|
"""
|
11835
11713
|
return self._UserDefined
|
@@ -11937,34 +11815,24 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
11937
11815
|
def __init__(self):
|
11938
11816
|
r"""
|
11939
11817
|
:param _TaskId: 固件任务ID
|
11940
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11941
11818
|
:type TaskId: int
|
11942
11819
|
:param _Status: 固件任务状态
|
11943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11944
11820
|
:type Status: int
|
11945
11821
|
:param _CreateTime: 固件任务创建时间,单位:秒
|
11946
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11947
11822
|
:type CreateTime: int
|
11948
11823
|
:param _Type: 固件任务升级类型
|
11949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11950
11824
|
:type Type: int
|
11951
11825
|
:param _ProductName: 产品名称
|
11952
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11953
11826
|
:type ProductName: str
|
11954
11827
|
:param _UpgradeMode: 固件任务升级模式。originalVersion(按版本号升级)、filename(提交文件升级)、devicenames(按设备名称升级)
|
11955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11956
11828
|
:type UpgradeMode: str
|
11957
11829
|
:param _ProductId: 产品ID
|
11958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11959
11830
|
:type ProductId: str
|
11960
11831
|
:param _OriginalVersion: 原始固件版本号,在UpgradeMode是originalVersion升级模式下会返回
|
11961
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11962
11832
|
:type OriginalVersion: str
|
11963
11833
|
:param _CreateUserId: 创建账号ID
|
11964
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11965
11834
|
:type CreateUserId: int
|
11966
11835
|
:param _CreatorNickName: 创建账号ID昵称
|
11967
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11968
11836
|
:type CreatorNickName: str
|
11969
11837
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11970
11838
|
:type RequestId: str
|
@@ -11984,7 +11852,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
11984
11852
|
@property
|
11985
11853
|
def TaskId(self):
|
11986
11854
|
"""固件任务ID
|
11987
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11988
11855
|
:rtype: int
|
11989
11856
|
"""
|
11990
11857
|
return self._TaskId
|
@@ -11996,7 +11863,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
11996
11863
|
@property
|
11997
11864
|
def Status(self):
|
11998
11865
|
"""固件任务状态
|
11999
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12000
11866
|
:rtype: int
|
12001
11867
|
"""
|
12002
11868
|
return self._Status
|
@@ -12008,7 +11874,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12008
11874
|
@property
|
12009
11875
|
def CreateTime(self):
|
12010
11876
|
"""固件任务创建时间,单位:秒
|
12011
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12012
11877
|
:rtype: int
|
12013
11878
|
"""
|
12014
11879
|
return self._CreateTime
|
@@ -12020,7 +11885,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12020
11885
|
@property
|
12021
11886
|
def Type(self):
|
12022
11887
|
"""固件任务升级类型
|
12023
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12024
11888
|
:rtype: int
|
12025
11889
|
"""
|
12026
11890
|
return self._Type
|
@@ -12032,7 +11896,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12032
11896
|
@property
|
12033
11897
|
def ProductName(self):
|
12034
11898
|
"""产品名称
|
12035
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12036
11899
|
:rtype: str
|
12037
11900
|
"""
|
12038
11901
|
return self._ProductName
|
@@ -12044,7 +11907,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12044
11907
|
@property
|
12045
11908
|
def UpgradeMode(self):
|
12046
11909
|
"""固件任务升级模式。originalVersion(按版本号升级)、filename(提交文件升级)、devicenames(按设备名称升级)
|
12047
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12048
11910
|
:rtype: str
|
12049
11911
|
"""
|
12050
11912
|
return self._UpgradeMode
|
@@ -12056,7 +11918,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12056
11918
|
@property
|
12057
11919
|
def ProductId(self):
|
12058
11920
|
"""产品ID
|
12059
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12060
11921
|
:rtype: str
|
12061
11922
|
"""
|
12062
11923
|
return self._ProductId
|
@@ -12068,7 +11929,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12068
11929
|
@property
|
12069
11930
|
def OriginalVersion(self):
|
12070
11931
|
"""原始固件版本号,在UpgradeMode是originalVersion升级模式下会返回
|
12071
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12072
11932
|
:rtype: str
|
12073
11933
|
"""
|
12074
11934
|
return self._OriginalVersion
|
@@ -12080,7 +11940,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12080
11940
|
@property
|
12081
11941
|
def CreateUserId(self):
|
12082
11942
|
"""创建账号ID
|
12083
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12084
11943
|
:rtype: int
|
12085
11944
|
"""
|
12086
11945
|
return self._CreateUserId
|
@@ -12092,7 +11951,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
|
|
12092
11951
|
@property
|
12093
11952
|
def CreatorNickName(self):
|
12094
11953
|
"""创建账号ID昵称
|
12095
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12096
11954
|
:rtype: str
|
12097
11955
|
"""
|
12098
11956
|
return self._CreatorNickName
|
@@ -12186,15 +12044,12 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
|
|
12186
12044
|
def __init__(self):
|
12187
12045
|
r"""
|
12188
12046
|
:param _OriVersion: 升级任务源版本。
|
12189
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12190
12047
|
:type OriVersion: str
|
12191
12048
|
:param _DstVersion: 升级任务目标版本。
|
12192
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12193
12049
|
:type DstVersion: str
|
12194
12050
|
:param _Status: 升级状态:- 0:设备离线。- 1:待处理。- 2:消息下发成功。- 3:下载中。- 4:烧录中。- 5:失败。- 6:升级完成。- 7:正在处理中。- 8:等待用户确认。- 10:升级超时。- 20:下载完成。
|
12195
12051
|
:type Status: int
|
12196
12052
|
:param _Percent: 进度
|
12197
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12198
12053
|
:type Percent: int
|
12199
12054
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12200
12055
|
:type RequestId: str
|
@@ -12208,7 +12063,6 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
|
|
12208
12063
|
@property
|
12209
12064
|
def OriVersion(self):
|
12210
12065
|
"""升级任务源版本。
|
12211
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12212
12066
|
:rtype: str
|
12213
12067
|
"""
|
12214
12068
|
return self._OriVersion
|
@@ -12220,7 +12074,6 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
|
|
12220
12074
|
@property
|
12221
12075
|
def DstVersion(self):
|
12222
12076
|
"""升级任务目标版本。
|
12223
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12224
12077
|
:rtype: str
|
12225
12078
|
"""
|
12226
12079
|
return self._DstVersion
|
@@ -12243,7 +12096,6 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
|
|
12243
12096
|
@property
|
12244
12097
|
def Percent(self):
|
12245
12098
|
"""进度
|
12246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12247
12099
|
:rtype: int
|
12248
12100
|
"""
|
12249
12101
|
return self._Percent
|
@@ -12589,10 +12441,8 @@ class DescribeGatewaySubDeviceListResponse(AbstractModel):
|
|
12589
12441
|
def __init__(self):
|
12590
12442
|
r"""
|
12591
12443
|
:param _Total: 设备的总数
|
12592
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12593
12444
|
:type Total: int
|
12594
12445
|
:param _DeviceList: 设备列表
|
12595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12596
12446
|
:type DeviceList: list of FamilySubDevice
|
12597
12447
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12598
12448
|
:type RequestId: str
|
@@ -12604,7 +12454,6 @@ class DescribeGatewaySubDeviceListResponse(AbstractModel):
|
|
12604
12454
|
@property
|
12605
12455
|
def Total(self):
|
12606
12456
|
"""设备的总数
|
12607
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12608
12457
|
:rtype: int
|
12609
12458
|
"""
|
12610
12459
|
return self._Total
|
@@ -12616,7 +12465,6 @@ class DescribeGatewaySubDeviceListResponse(AbstractModel):
|
|
12616
12465
|
@property
|
12617
12466
|
def DeviceList(self):
|
12618
12467
|
"""设备列表
|
12619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12620
12468
|
:rtype: list of FamilySubDevice
|
12621
12469
|
"""
|
12622
12470
|
return self._DeviceList
|
@@ -12896,7 +12744,6 @@ class DescribeInstanceResponse(AbstractModel):
|
|
12896
12744
|
def __init__(self):
|
12897
12745
|
r"""
|
12898
12746
|
:param _Data: 实例信息
|
12899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12900
12747
|
:type Data: :class:`tencentcloud.iotexplorer.v20190423.models.InstanceDetail`
|
12901
12748
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12902
12749
|
:type RequestId: str
|
@@ -12907,7 +12754,6 @@ class DescribeInstanceResponse(AbstractModel):
|
|
12907
12754
|
@property
|
12908
12755
|
def Data(self):
|
12909
12756
|
"""实例信息
|
12910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12911
12757
|
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.InstanceDetail`
|
12912
12758
|
"""
|
12913
12759
|
return self._Data
|
@@ -12979,7 +12825,6 @@ class DescribeLoRaFrequencyResponse(AbstractModel):
|
|
12979
12825
|
def __init__(self):
|
12980
12826
|
r"""
|
12981
12827
|
:param _Data: 返回详情项
|
12982
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12983
12828
|
:type Data: :class:`tencentcloud.iotexplorer.v20190423.models.LoRaFrequencyEntry`
|
12984
12829
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12985
12830
|
:type RequestId: str
|
@@ -12990,7 +12835,6 @@ class DescribeLoRaFrequencyResponse(AbstractModel):
|
|
12990
12835
|
@property
|
12991
12836
|
def Data(self):
|
12992
12837
|
"""返回详情项
|
12993
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12994
12838
|
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.LoRaFrequencyEntry`
|
12995
12839
|
"""
|
12996
12840
|
return self._Data
|
@@ -13460,10 +13304,8 @@ class DescribePositionFenceListResponse(AbstractModel):
|
|
13460
13304
|
def __init__(self):
|
13461
13305
|
r"""
|
13462
13306
|
:param _List: 围栏列表
|
13463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13464
13307
|
:type List: list of PositionFenceInfo
|
13465
13308
|
:param _Total: 围栏数量
|
13466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13467
13309
|
:type Total: int
|
13468
13310
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13469
13311
|
:type RequestId: str
|
@@ -13475,7 +13317,6 @@ class DescribePositionFenceListResponse(AbstractModel):
|
|
13475
13317
|
@property
|
13476
13318
|
def List(self):
|
13477
13319
|
"""围栏列表
|
13478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13479
13320
|
:rtype: list of PositionFenceInfo
|
13480
13321
|
"""
|
13481
13322
|
return self._List
|
@@ -13487,7 +13328,6 @@ class DescribePositionFenceListResponse(AbstractModel):
|
|
13487
13328
|
@property
|
13488
13329
|
def Total(self):
|
13489
13330
|
"""围栏数量
|
13490
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13491
13331
|
:rtype: int
|
13492
13332
|
"""
|
13493
13333
|
return self._Total
|
@@ -14104,10 +13944,8 @@ class DescribeTopicRuleResponse(AbstractModel):
|
|
14104
13944
|
def __init__(self):
|
14105
13945
|
r"""
|
14106
13946
|
:param _Rule: 规则描述。
|
14107
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14108
13947
|
:type Rule: :class:`tencentcloud.iotexplorer.v20190423.models.TopicRule`
|
14109
13948
|
:param _CamTag: 规则绑定的标签
|
14110
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14111
13949
|
:type CamTag: list of CamTag
|
14112
13950
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14113
13951
|
:type RequestId: str
|
@@ -14119,7 +13957,6 @@ class DescribeTopicRuleResponse(AbstractModel):
|
|
14119
13957
|
@property
|
14120
13958
|
def Rule(self):
|
14121
13959
|
"""规则描述。
|
14122
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14123
13960
|
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.TopicRule`
|
14124
13961
|
"""
|
14125
13962
|
return self._Rule
|
@@ -14131,7 +13968,6 @@ class DescribeTopicRuleResponse(AbstractModel):
|
|
14131
13968
|
@property
|
14132
13969
|
def CamTag(self):
|
14133
13970
|
"""规则绑定的标签
|
14134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14135
13971
|
:rtype: list of CamTag
|
14136
13972
|
"""
|
14137
13973
|
return self._CamTag
|
@@ -14239,7 +14075,6 @@ class DescribeUnbindedDevicesResponse(AbstractModel):
|
|
14239
14075
|
def __init__(self):
|
14240
14076
|
r"""
|
14241
14077
|
:param _UnbindedDevices: 未绑定的设备列表
|
14242
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14243
14078
|
:type UnbindedDevices: list of BindDeviceInfo
|
14244
14079
|
:param _Total: 设备的总数量
|
14245
14080
|
:type Total: int
|
@@ -14253,7 +14088,6 @@ class DescribeUnbindedDevicesResponse(AbstractModel):
|
|
14253
14088
|
@property
|
14254
14089
|
def UnbindedDevices(self):
|
14255
14090
|
"""未绑定的设备列表
|
14256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14257
14091
|
:rtype: list of BindDeviceInfo
|
14258
14092
|
"""
|
14259
14093
|
return self._UnbindedDevices
|
@@ -14340,7 +14174,6 @@ class DescribeVideoLicenseResponse(AbstractModel):
|
|
14340
14174
|
def __init__(self):
|
14341
14175
|
r"""
|
14342
14176
|
:param _License: 视频激活码分类概览
|
14343
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14344
14177
|
:type License: list of VideoLicenseEntity
|
14345
14178
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14346
14179
|
:type RequestId: str
|
@@ -14351,7 +14184,6 @@ class DescribeVideoLicenseResponse(AbstractModel):
|
|
14351
14184
|
@property
|
14352
14185
|
def License(self):
|
14353
14186
|
"""视频激活码分类概览
|
14354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14355
14187
|
:rtype: list of VideoLicenseEntity
|
14356
14188
|
"""
|
14357
14189
|
return self._License
|
@@ -14401,6 +14233,10 @@ class DeviceActivationDetail(AbstractModel):
|
|
14401
14233
|
:type TotalBluetoothLicense: int
|
14402
14234
|
:param _UsedBluetoothLicense: 已使用蓝牙授权数
|
14403
14235
|
:type UsedBluetoothLicense: int
|
14236
|
+
:param _TotalFreeLicense: 可免费注册设备数
|
14237
|
+
:type TotalFreeLicense: int
|
14238
|
+
:param _UsedFreeLicense: 已使用注册设备数
|
14239
|
+
:type UsedFreeLicense: int
|
14404
14240
|
"""
|
14405
14241
|
self._TotalDeviceNum = None
|
14406
14242
|
self._UsedDeviceNum = None
|
@@ -14408,6 +14244,8 @@ class DeviceActivationDetail(AbstractModel):
|
|
14408
14244
|
self._UsedNormalLicense = None
|
14409
14245
|
self._TotalBluetoothLicense = None
|
14410
14246
|
self._UsedBluetoothLicense = None
|
14247
|
+
self._TotalFreeLicense = None
|
14248
|
+
self._UsedFreeLicense = None
|
14411
14249
|
|
14412
14250
|
@property
|
14413
14251
|
def TotalDeviceNum(self):
|
@@ -14475,6 +14313,28 @@ class DeviceActivationDetail(AbstractModel):
|
|
14475
14313
|
def UsedBluetoothLicense(self, UsedBluetoothLicense):
|
14476
14314
|
self._UsedBluetoothLicense = UsedBluetoothLicense
|
14477
14315
|
|
14316
|
+
@property
|
14317
|
+
def TotalFreeLicense(self):
|
14318
|
+
"""可免费注册设备数
|
14319
|
+
:rtype: int
|
14320
|
+
"""
|
14321
|
+
return self._TotalFreeLicense
|
14322
|
+
|
14323
|
+
@TotalFreeLicense.setter
|
14324
|
+
def TotalFreeLicense(self, TotalFreeLicense):
|
14325
|
+
self._TotalFreeLicense = TotalFreeLicense
|
14326
|
+
|
14327
|
+
@property
|
14328
|
+
def UsedFreeLicense(self):
|
14329
|
+
"""已使用注册设备数
|
14330
|
+
:rtype: int
|
14331
|
+
"""
|
14332
|
+
return self._UsedFreeLicense
|
14333
|
+
|
14334
|
+
@UsedFreeLicense.setter
|
14335
|
+
def UsedFreeLicense(self, UsedFreeLicense):
|
14336
|
+
self._UsedFreeLicense = UsedFreeLicense
|
14337
|
+
|
14478
14338
|
|
14479
14339
|
def _deserialize(self, params):
|
14480
14340
|
self._TotalDeviceNum = params.get("TotalDeviceNum")
|
@@ -14483,6 +14343,8 @@ class DeviceActivationDetail(AbstractModel):
|
|
14483
14343
|
self._UsedNormalLicense = params.get("UsedNormalLicense")
|
14484
14344
|
self._TotalBluetoothLicense = params.get("TotalBluetoothLicense")
|
14485
14345
|
self._UsedBluetoothLicense = params.get("UsedBluetoothLicense")
|
14346
|
+
self._TotalFreeLicense = params.get("TotalFreeLicense")
|
14347
|
+
self._UsedFreeLicense = params.get("UsedFreeLicense")
|
14486
14348
|
memeber_set = set(params.keys())
|
14487
14349
|
for name, value in vars(self).items():
|
14488
14350
|
property_name = name[1:]
|
@@ -14504,13 +14366,10 @@ class DeviceActiveResult(AbstractModel):
|
|
14504
14366
|
注意:此字段可能返回 null,表示取不到有效值。
|
14505
14367
|
:type ModelId: str
|
14506
14368
|
:param _Sn: SN信息
|
14507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14508
14369
|
:type Sn: str
|
14509
14370
|
:param _ErrCode: 设备激活状态,0:激活成功;50011:系统错误;50012:产品不存在;50013:设备不存在;50014:产品无权限;50015:不是音视频产品;50016:SN格式错误;50017:激活码类型错误;50018:激活次数限频;50019:激活码不足;50020:SN已暂停;
|
14510
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14511
14371
|
:type ErrCode: int
|
14512
14372
|
:param _ExpireTime: 过期时间
|
14513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14514
14373
|
:type ExpireTime: int
|
14515
14374
|
"""
|
14516
14375
|
self._ModelId = None
|
@@ -14537,7 +14396,6 @@ class DeviceActiveResult(AbstractModel):
|
|
14537
14396
|
@property
|
14538
14397
|
def Sn(self):
|
14539
14398
|
"""SN信息
|
14540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14541
14399
|
:rtype: str
|
14542
14400
|
"""
|
14543
14401
|
return self._Sn
|
@@ -14549,7 +14407,6 @@ class DeviceActiveResult(AbstractModel):
|
|
14549
14407
|
@property
|
14550
14408
|
def ErrCode(self):
|
14551
14409
|
"""设备激活状态,0:激活成功;50011:系统错误;50012:产品不存在;50013:设备不存在;50014:产品无权限;50015:不是音视频产品;50016:SN格式错误;50017:激活码类型错误;50018:激活次数限频;50019:激活码不足;50020:SN已暂停;
|
14552
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14553
14410
|
:rtype: int
|
14554
14411
|
"""
|
14555
14412
|
return self._ErrCode
|
@@ -14561,7 +14418,6 @@ class DeviceActiveResult(AbstractModel):
|
|
14561
14418
|
@property
|
14562
14419
|
def ExpireTime(self):
|
14563
14420
|
"""过期时间
|
14564
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14565
14421
|
:rtype: int
|
14566
14422
|
"""
|
14567
14423
|
return self._ExpireTime
|
@@ -14594,16 +14450,12 @@ class DeviceData(AbstractModel):
|
|
14594
14450
|
def __init__(self):
|
14595
14451
|
r"""
|
14596
14452
|
:param _DeviceCert: 设备证书,用于 TLS 建立链接时校验客户端身份。采用非对称加密时返回该参数。
|
14597
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14598
14453
|
:type DeviceCert: str
|
14599
14454
|
:param _DeviceName: 设备名称。
|
14600
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14601
14455
|
:type DeviceName: str
|
14602
14456
|
:param _DevicePrivateKey: 设备私钥,用于 TLS 建立链接时校验客户端身份,腾讯云后台不保存,请妥善保管。采用非对称加密时返回该参数。
|
14603
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14604
14457
|
:type DevicePrivateKey: str
|
14605
14458
|
:param _DevicePsk: 对称加密密钥,base64编码。采用对称加密时返回该参数。
|
14606
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14607
14459
|
:type DevicePsk: str
|
14608
14460
|
"""
|
14609
14461
|
self._DeviceCert = None
|
@@ -14614,7 +14466,6 @@ class DeviceData(AbstractModel):
|
|
14614
14466
|
@property
|
14615
14467
|
def DeviceCert(self):
|
14616
14468
|
"""设备证书,用于 TLS 建立链接时校验客户端身份。采用非对称加密时返回该参数。
|
14617
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14618
14469
|
:rtype: str
|
14619
14470
|
"""
|
14620
14471
|
return self._DeviceCert
|
@@ -14626,7 +14477,6 @@ class DeviceData(AbstractModel):
|
|
14626
14477
|
@property
|
14627
14478
|
def DeviceName(self):
|
14628
14479
|
"""设备名称。
|
14629
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14630
14480
|
:rtype: str
|
14631
14481
|
"""
|
14632
14482
|
return self._DeviceName
|
@@ -14638,7 +14488,6 @@ class DeviceData(AbstractModel):
|
|
14638
14488
|
@property
|
14639
14489
|
def DevicePrivateKey(self):
|
14640
14490
|
"""设备私钥,用于 TLS 建立链接时校验客户端身份,腾讯云后台不保存,请妥善保管。采用非对称加密时返回该参数。
|
14641
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14642
14491
|
:rtype: str
|
14643
14492
|
"""
|
14644
14493
|
return self._DevicePrivateKey
|
@@ -14650,7 +14499,6 @@ class DeviceData(AbstractModel):
|
|
14650
14499
|
@property
|
14651
14500
|
def DevicePsk(self):
|
14652
14501
|
"""对称加密密钥,base64编码。采用对称加密时返回该参数。
|
14653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14654
14502
|
:rtype: str
|
14655
14503
|
"""
|
14656
14504
|
return self._DevicePsk
|
@@ -14806,59 +14654,41 @@ class DeviceInfo(AbstractModel):
|
|
14806
14654
|
:param _DevicePsk: 设备密钥,密钥加密的设备返回
|
14807
14655
|
:type DevicePsk: str
|
14808
14656
|
:param _FirstOnlineTime: 首次上线时间
|
14809
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14810
14657
|
注意:此字段可能返回 null,表示取不到有效值。
|
14811
14658
|
:type FirstOnlineTime: int
|
14812
14659
|
:param _LoginTime: 最后一次上线时间
|
14813
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14814
14660
|
:type LoginTime: int
|
14815
14661
|
:param _CreateTime: 设备创建时间
|
14816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14817
14662
|
:type CreateTime: int
|
14818
14663
|
:param _Version: 设备固件版本
|
14819
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14820
14664
|
:type Version: str
|
14821
14665
|
:param _DeviceCert: 设备证书
|
14822
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14823
14666
|
:type DeviceCert: str
|
14824
14667
|
:param _LogLevel: 日志级别
|
14825
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14826
14668
|
:type LogLevel: int
|
14827
14669
|
:param _DevAddr: LoRaWAN 设备地址
|
14828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14829
14670
|
:type DevAddr: str
|
14830
14671
|
:param _AppKey: LoRaWAN 应用密钥
|
14831
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14832
14672
|
:type AppKey: str
|
14833
14673
|
:param _DevEUI: LoRaWAN 设备唯一标识
|
14834
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14835
14674
|
:type DevEUI: str
|
14836
14675
|
:param _AppSKey: LoRaWAN 应用会话密钥
|
14837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14838
14676
|
:type AppSKey: str
|
14839
14677
|
:param _NwkSKey: LoRaWAN 网络会话密钥
|
14840
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14841
14678
|
:type NwkSKey: str
|
14842
14679
|
:param _CreateUserId: 创建人Id
|
14843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14844
14680
|
:type CreateUserId: int
|
14845
14681
|
:param _CreatorNickName: 创建人昵称
|
14846
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14847
14682
|
:type CreatorNickName: str
|
14848
14683
|
:param _EnableState: 启用/禁用状态
|
14849
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14850
14684
|
:type EnableState: int
|
14851
14685
|
:param _ProductId: 产品ID
|
14852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14853
14686
|
:type ProductId: str
|
14854
14687
|
:param _ProductName: 产品名称
|
14855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14856
14688
|
:type ProductName: str
|
14857
14689
|
:param _DeviceType: 设备类型(设备、子设备、网关)
|
14858
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14859
14690
|
:type DeviceType: str
|
14860
14691
|
:param _IsLora: 是否是 lora 设备
|
14861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14862
14692
|
:type IsLora: bool
|
14863
14693
|
"""
|
14864
14694
|
self._DeviceName = None
|
@@ -14919,7 +14749,6 @@ class DeviceInfo(AbstractModel):
|
|
14919
14749
|
@property
|
14920
14750
|
def FirstOnlineTime(self):
|
14921
14751
|
"""首次上线时间
|
14922
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14923
14752
|
注意:此字段可能返回 null,表示取不到有效值。
|
14924
14753
|
:rtype: int
|
14925
14754
|
"""
|
@@ -14932,7 +14761,6 @@ class DeviceInfo(AbstractModel):
|
|
14932
14761
|
@property
|
14933
14762
|
def LoginTime(self):
|
14934
14763
|
"""最后一次上线时间
|
14935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14936
14764
|
:rtype: int
|
14937
14765
|
"""
|
14938
14766
|
return self._LoginTime
|
@@ -14944,7 +14772,6 @@ class DeviceInfo(AbstractModel):
|
|
14944
14772
|
@property
|
14945
14773
|
def CreateTime(self):
|
14946
14774
|
"""设备创建时间
|
14947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14948
14775
|
:rtype: int
|
14949
14776
|
"""
|
14950
14777
|
return self._CreateTime
|
@@ -14956,7 +14783,6 @@ class DeviceInfo(AbstractModel):
|
|
14956
14783
|
@property
|
14957
14784
|
def Version(self):
|
14958
14785
|
"""设备固件版本
|
14959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14960
14786
|
:rtype: str
|
14961
14787
|
"""
|
14962
14788
|
return self._Version
|
@@ -14968,7 +14794,6 @@ class DeviceInfo(AbstractModel):
|
|
14968
14794
|
@property
|
14969
14795
|
def DeviceCert(self):
|
14970
14796
|
"""设备证书
|
14971
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14972
14797
|
:rtype: str
|
14973
14798
|
"""
|
14974
14799
|
return self._DeviceCert
|
@@ -14980,7 +14805,6 @@ class DeviceInfo(AbstractModel):
|
|
14980
14805
|
@property
|
14981
14806
|
def LogLevel(self):
|
14982
14807
|
"""日志级别
|
14983
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14984
14808
|
:rtype: int
|
14985
14809
|
"""
|
14986
14810
|
return self._LogLevel
|
@@ -14992,7 +14816,6 @@ class DeviceInfo(AbstractModel):
|
|
14992
14816
|
@property
|
14993
14817
|
def DevAddr(self):
|
14994
14818
|
"""LoRaWAN 设备地址
|
14995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14996
14819
|
:rtype: str
|
14997
14820
|
"""
|
14998
14821
|
return self._DevAddr
|
@@ -15004,7 +14827,6 @@ class DeviceInfo(AbstractModel):
|
|
15004
14827
|
@property
|
15005
14828
|
def AppKey(self):
|
15006
14829
|
"""LoRaWAN 应用密钥
|
15007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15008
14830
|
:rtype: str
|
15009
14831
|
"""
|
15010
14832
|
return self._AppKey
|
@@ -15016,7 +14838,6 @@ class DeviceInfo(AbstractModel):
|
|
15016
14838
|
@property
|
15017
14839
|
def DevEUI(self):
|
15018
14840
|
"""LoRaWAN 设备唯一标识
|
15019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15020
14841
|
:rtype: str
|
15021
14842
|
"""
|
15022
14843
|
return self._DevEUI
|
@@ -15028,7 +14849,6 @@ class DeviceInfo(AbstractModel):
|
|
15028
14849
|
@property
|
15029
14850
|
def AppSKey(self):
|
15030
14851
|
"""LoRaWAN 应用会话密钥
|
15031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15032
14852
|
:rtype: str
|
15033
14853
|
"""
|
15034
14854
|
return self._AppSKey
|
@@ -15040,7 +14860,6 @@ class DeviceInfo(AbstractModel):
|
|
15040
14860
|
@property
|
15041
14861
|
def NwkSKey(self):
|
15042
14862
|
"""LoRaWAN 网络会话密钥
|
15043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15044
14863
|
:rtype: str
|
15045
14864
|
"""
|
15046
14865
|
return self._NwkSKey
|
@@ -15052,7 +14871,6 @@ class DeviceInfo(AbstractModel):
|
|
15052
14871
|
@property
|
15053
14872
|
def CreateUserId(self):
|
15054
14873
|
"""创建人Id
|
15055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15056
14874
|
:rtype: int
|
15057
14875
|
"""
|
15058
14876
|
return self._CreateUserId
|
@@ -15064,7 +14882,6 @@ class DeviceInfo(AbstractModel):
|
|
15064
14882
|
@property
|
15065
14883
|
def CreatorNickName(self):
|
15066
14884
|
"""创建人昵称
|
15067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15068
14885
|
:rtype: str
|
15069
14886
|
"""
|
15070
14887
|
return self._CreatorNickName
|
@@ -15076,7 +14893,6 @@ class DeviceInfo(AbstractModel):
|
|
15076
14893
|
@property
|
15077
14894
|
def EnableState(self):
|
15078
14895
|
"""启用/禁用状态
|
15079
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15080
14896
|
:rtype: int
|
15081
14897
|
"""
|
15082
14898
|
return self._EnableState
|
@@ -15088,7 +14904,6 @@ class DeviceInfo(AbstractModel):
|
|
15088
14904
|
@property
|
15089
14905
|
def ProductId(self):
|
15090
14906
|
"""产品ID
|
15091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15092
14907
|
:rtype: str
|
15093
14908
|
"""
|
15094
14909
|
return self._ProductId
|
@@ -15100,7 +14915,6 @@ class DeviceInfo(AbstractModel):
|
|
15100
14915
|
@property
|
15101
14916
|
def ProductName(self):
|
15102
14917
|
"""产品名称
|
15103
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15104
14918
|
:rtype: str
|
15105
14919
|
"""
|
15106
14920
|
return self._ProductName
|
@@ -15112,7 +14926,6 @@ class DeviceInfo(AbstractModel):
|
|
15112
14926
|
@property
|
15113
14927
|
def DeviceType(self):
|
15114
14928
|
"""设备类型(设备、子设备、网关)
|
15115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15116
14929
|
:rtype: str
|
15117
14930
|
"""
|
15118
14931
|
return self._DeviceType
|
@@ -15124,7 +14937,6 @@ class DeviceInfo(AbstractModel):
|
|
15124
14937
|
@property
|
15125
14938
|
def IsLora(self):
|
15126
14939
|
"""是否是 lora 设备
|
15127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15128
14940
|
:rtype: bool
|
15129
14941
|
"""
|
15130
14942
|
return self._IsLora
|
@@ -15310,10 +15122,8 @@ class DeviceUser(AbstractModel):
|
|
15310
15122
|
:param _Role: 用户角色 1所有者,0:其他分享者
|
15311
15123
|
:type Role: int
|
15312
15124
|
:param _FamilyId: 家庭ID,所有者带该参数
|
15313
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15314
15125
|
:type FamilyId: str
|
15315
15126
|
:param _FamilyName: 家庭名称,所有者带该参数
|
15316
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15317
15127
|
:type FamilyName: str
|
15318
15128
|
"""
|
15319
15129
|
self._UserId = None
|
@@ -15346,7 +15156,6 @@ class DeviceUser(AbstractModel):
|
|
15346
15156
|
@property
|
15347
15157
|
def FamilyId(self):
|
15348
15158
|
"""家庭ID,所有者带该参数
|
15349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15350
15159
|
:rtype: str
|
15351
15160
|
"""
|
15352
15161
|
return self._FamilyId
|
@@ -15358,7 +15167,6 @@ class DeviceUser(AbstractModel):
|
|
15358
15167
|
@property
|
15359
15168
|
def FamilyName(self):
|
15360
15169
|
"""家庭名称,所有者带该参数
|
15361
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15362
15170
|
:rtype: str
|
15363
15171
|
"""
|
15364
15172
|
return self._FamilyName
|
@@ -15790,22 +15598,16 @@ class EventHistoryItem(AbstractModel):
|
|
15790
15598
|
def __init__(self):
|
15791
15599
|
r"""
|
15792
15600
|
:param _TimeStamp: 事件的时间戳
|
15793
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15794
15601
|
:type TimeStamp: int
|
15795
15602
|
:param _ProductId: 事件的产品ID
|
15796
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15797
15603
|
:type ProductId: str
|
15798
15604
|
:param _DeviceName: 事件的设备名称
|
15799
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15800
15605
|
:type DeviceName: str
|
15801
15606
|
:param _EventId: 事件的标识符ID
|
15802
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15803
15607
|
:type EventId: str
|
15804
15608
|
:param _Type: 事件的类型
|
15805
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15806
15609
|
:type Type: str
|
15807
15610
|
:param _Data: 事件的数据
|
15808
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15809
15611
|
:type Data: str
|
15810
15612
|
"""
|
15811
15613
|
self._TimeStamp = None
|
@@ -15818,7 +15620,6 @@ class EventHistoryItem(AbstractModel):
|
|
15818
15620
|
@property
|
15819
15621
|
def TimeStamp(self):
|
15820
15622
|
"""事件的时间戳
|
15821
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15822
15623
|
:rtype: int
|
15823
15624
|
"""
|
15824
15625
|
return self._TimeStamp
|
@@ -15830,7 +15631,6 @@ class EventHistoryItem(AbstractModel):
|
|
15830
15631
|
@property
|
15831
15632
|
def ProductId(self):
|
15832
15633
|
"""事件的产品ID
|
15833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15834
15634
|
:rtype: str
|
15835
15635
|
"""
|
15836
15636
|
return self._ProductId
|
@@ -15842,7 +15642,6 @@ class EventHistoryItem(AbstractModel):
|
|
15842
15642
|
@property
|
15843
15643
|
def DeviceName(self):
|
15844
15644
|
"""事件的设备名称
|
15845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15846
15645
|
:rtype: str
|
15847
15646
|
"""
|
15848
15647
|
return self._DeviceName
|
@@ -15854,7 +15653,6 @@ class EventHistoryItem(AbstractModel):
|
|
15854
15653
|
@property
|
15855
15654
|
def EventId(self):
|
15856
15655
|
"""事件的标识符ID
|
15857
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15858
15656
|
:rtype: str
|
15859
15657
|
"""
|
15860
15658
|
return self._EventId
|
@@ -15866,7 +15664,6 @@ class EventHistoryItem(AbstractModel):
|
|
15866
15664
|
@property
|
15867
15665
|
def Type(self):
|
15868
15666
|
"""事件的类型
|
15869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15870
15667
|
:rtype: str
|
15871
15668
|
"""
|
15872
15669
|
return self._Type
|
@@ -15878,7 +15675,6 @@ class EventHistoryItem(AbstractModel):
|
|
15878
15675
|
@property
|
15879
15676
|
def Data(self):
|
15880
15677
|
"""事件的数据
|
15881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15882
15678
|
:rtype: str
|
15883
15679
|
"""
|
15884
15680
|
return self._Data
|
@@ -15919,18 +15715,14 @@ class FamilySubDevice(AbstractModel):
|
|
15919
15715
|
:param _DeviceId: 设备ID
|
15920
15716
|
:type DeviceId: str
|
15921
15717
|
:param _AliasName: 设备别名
|
15922
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15923
15718
|
:type AliasName: str
|
15924
15719
|
:param _FamilyId: 设备绑定的家庭ID
|
15925
15720
|
:type FamilyId: str
|
15926
15721
|
:param _RoomId: 设备所在的房间ID,默认"0"
|
15927
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15928
15722
|
:type RoomId: str
|
15929
15723
|
:param _IconUrl: 图标
|
15930
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15931
15724
|
:type IconUrl: str
|
15932
15725
|
:param _IconUrlGrid: grid图标
|
15933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15934
15726
|
:type IconUrlGrid: str
|
15935
15727
|
:param _CreateTime: 设备绑定时间戳
|
15936
15728
|
:type CreateTime: int
|
@@ -15984,7 +15776,6 @@ class FamilySubDevice(AbstractModel):
|
|
15984
15776
|
@property
|
15985
15777
|
def AliasName(self):
|
15986
15778
|
"""设备别名
|
15987
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15988
15779
|
:rtype: str
|
15989
15780
|
"""
|
15990
15781
|
return self._AliasName
|
@@ -16007,7 +15798,6 @@ class FamilySubDevice(AbstractModel):
|
|
16007
15798
|
@property
|
16008
15799
|
def RoomId(self):
|
16009
15800
|
"""设备所在的房间ID,默认"0"
|
16010
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16011
15801
|
:rtype: str
|
16012
15802
|
"""
|
16013
15803
|
return self._RoomId
|
@@ -16019,7 +15809,6 @@ class FamilySubDevice(AbstractModel):
|
|
16019
15809
|
@property
|
16020
15810
|
def IconUrl(self):
|
16021
15811
|
"""图标
|
16022
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16023
15812
|
:rtype: str
|
16024
15813
|
"""
|
16025
15814
|
return self._IconUrl
|
@@ -16031,7 +15820,6 @@ class FamilySubDevice(AbstractModel):
|
|
16031
15820
|
@property
|
16032
15821
|
def IconUrlGrid(self):
|
16033
15822
|
"""grid图标
|
16034
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16035
15823
|
:rtype: str
|
16036
15824
|
"""
|
16037
15825
|
return self._IconUrlGrid
|
@@ -16454,28 +16242,20 @@ class FirmwareInfo(AbstractModel):
|
|
16454
16242
|
:param _CreateTime: 固件创建时间
|
16455
16243
|
:type CreateTime: int
|
16456
16244
|
:param _ProductName: 产品名称
|
16457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16458
16245
|
:type ProductName: str
|
16459
16246
|
:param _Name: 固件名称
|
16460
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16461
16247
|
:type Name: str
|
16462
16248
|
:param _Description: 固件描述
|
16463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16464
16249
|
:type Description: str
|
16465
16250
|
:param _ProductId: 产品ID
|
16466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16467
16251
|
:type ProductId: str
|
16468
16252
|
:param _FwType: 固件升级模块
|
16469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16470
16253
|
:type FwType: str
|
16471
16254
|
:param _CreateUserId: 创建者子 uin
|
16472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16473
16255
|
:type CreateUserId: int
|
16474
16256
|
:param _CreatorNickName: 创建者昵称
|
16475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16476
16257
|
:type CreatorNickName: str
|
16477
16258
|
:param _UserDefined: 固件用户自定义配置信息
|
16478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16479
16259
|
:type UserDefined: str
|
16480
16260
|
"""
|
16481
16261
|
self._Version = None
|
@@ -16526,7 +16306,6 @@ class FirmwareInfo(AbstractModel):
|
|
16526
16306
|
@property
|
16527
16307
|
def ProductName(self):
|
16528
16308
|
"""产品名称
|
16529
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16530
16309
|
:rtype: str
|
16531
16310
|
"""
|
16532
16311
|
return self._ProductName
|
@@ -16538,7 +16317,6 @@ class FirmwareInfo(AbstractModel):
|
|
16538
16317
|
@property
|
16539
16318
|
def Name(self):
|
16540
16319
|
"""固件名称
|
16541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16542
16320
|
:rtype: str
|
16543
16321
|
"""
|
16544
16322
|
return self._Name
|
@@ -16550,7 +16328,6 @@ class FirmwareInfo(AbstractModel):
|
|
16550
16328
|
@property
|
16551
16329
|
def Description(self):
|
16552
16330
|
"""固件描述
|
16553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16554
16331
|
:rtype: str
|
16555
16332
|
"""
|
16556
16333
|
return self._Description
|
@@ -16562,7 +16339,6 @@ class FirmwareInfo(AbstractModel):
|
|
16562
16339
|
@property
|
16563
16340
|
def ProductId(self):
|
16564
16341
|
"""产品ID
|
16565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16566
16342
|
:rtype: str
|
16567
16343
|
"""
|
16568
16344
|
return self._ProductId
|
@@ -16574,7 +16350,6 @@ class FirmwareInfo(AbstractModel):
|
|
16574
16350
|
@property
|
16575
16351
|
def FwType(self):
|
16576
16352
|
"""固件升级模块
|
16577
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16578
16353
|
:rtype: str
|
16579
16354
|
"""
|
16580
16355
|
return self._FwType
|
@@ -16586,7 +16361,6 @@ class FirmwareInfo(AbstractModel):
|
|
16586
16361
|
@property
|
16587
16362
|
def CreateUserId(self):
|
16588
16363
|
"""创建者子 uin
|
16589
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16590
16364
|
:rtype: int
|
16591
16365
|
"""
|
16592
16366
|
return self._CreateUserId
|
@@ -16598,7 +16372,6 @@ class FirmwareInfo(AbstractModel):
|
|
16598
16372
|
@property
|
16599
16373
|
def CreatorNickName(self):
|
16600
16374
|
"""创建者昵称
|
16601
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16602
16375
|
:rtype: str
|
16603
16376
|
"""
|
16604
16377
|
return self._CreatorNickName
|
@@ -16610,7 +16383,6 @@ class FirmwareInfo(AbstractModel):
|
|
16610
16383
|
@property
|
16611
16384
|
def UserDefined(self):
|
16612
16385
|
"""固件用户自定义配置信息
|
16613
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16614
16386
|
:rtype: str
|
16615
16387
|
"""
|
16616
16388
|
return self._UserDefined
|
@@ -17494,10 +17266,8 @@ class GetDeviceListResponse(AbstractModel):
|
|
17494
17266
|
def __init__(self):
|
17495
17267
|
r"""
|
17496
17268
|
:param _Devices: 返回的设备列表, 注意列表设备的 DevicePsk 为空, 要获取设备的 DevicePsk 请使用 DescribeDevice
|
17497
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17498
17269
|
:type Devices: list of DeviceInfo
|
17499
17270
|
:param _Total: 产品下的设备总数
|
17500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17501
17271
|
:type Total: int
|
17502
17272
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17503
17273
|
:type RequestId: str
|
@@ -17509,7 +17279,6 @@ class GetDeviceListResponse(AbstractModel):
|
|
17509
17279
|
@property
|
17510
17280
|
def Devices(self):
|
17511
17281
|
"""返回的设备列表, 注意列表设备的 DevicePsk 为空, 要获取设备的 DevicePsk 请使用 DescribeDevice
|
17512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17513
17282
|
:rtype: list of DeviceInfo
|
17514
17283
|
"""
|
17515
17284
|
return self._Devices
|
@@ -17521,7 +17290,6 @@ class GetDeviceListResponse(AbstractModel):
|
|
17521
17290
|
@property
|
17522
17291
|
def Total(self):
|
17523
17292
|
"""产品下的设备总数
|
17524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17525
17293
|
:rtype: int
|
17526
17294
|
"""
|
17527
17295
|
return self._Total
|
@@ -17955,7 +17723,6 @@ class GetFamilyDeviceUserListResponse(AbstractModel):
|
|
17955
17723
|
def __init__(self):
|
17956
17724
|
r"""
|
17957
17725
|
:param _UserList: 设备的用户列表
|
17958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17959
17726
|
:type UserList: list of DeviceUser
|
17960
17727
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17961
17728
|
:type RequestId: str
|
@@ -17966,7 +17733,6 @@ class GetFamilyDeviceUserListResponse(AbstractModel):
|
|
17966
17733
|
@property
|
17967
17734
|
def UserList(self):
|
17968
17735
|
"""设备的用户列表
|
17969
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17970
17736
|
:rtype: list of DeviceUser
|
17971
17737
|
"""
|
17972
17738
|
return self._UserList
|
@@ -18086,10 +17852,8 @@ class GetGatewaySubDeviceListResponse(AbstractModel):
|
|
18086
17852
|
def __init__(self):
|
18087
17853
|
r"""
|
18088
17854
|
:param _Total: 设备的总数
|
18089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18090
17855
|
:type Total: int
|
18091
17856
|
:param _DeviceList: 设备列表
|
18092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18093
17857
|
:type DeviceList: :class:`tencentcloud.iotexplorer.v20190423.models.FamilySubDevice`
|
18094
17858
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18095
17859
|
:type RequestId: str
|
@@ -18101,7 +17865,6 @@ class GetGatewaySubDeviceListResponse(AbstractModel):
|
|
18101
17865
|
@property
|
18102
17866
|
def Total(self):
|
18103
17867
|
"""设备的总数
|
18104
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18105
17868
|
:rtype: int
|
18106
17869
|
"""
|
18107
17870
|
return self._Total
|
@@ -18113,7 +17876,6 @@ class GetGatewaySubDeviceListResponse(AbstractModel):
|
|
18113
17876
|
@property
|
18114
17877
|
def DeviceList(self):
|
18115
17878
|
"""设备列表
|
18116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18117
17879
|
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.FamilySubDevice`
|
18118
17880
|
"""
|
18119
17881
|
return self._DeviceList
|
@@ -18218,7 +17980,6 @@ class GetLoRaGatewayListResponse(AbstractModel):
|
|
18218
17980
|
:param _Total: 返回总数
|
18219
17981
|
:type Total: int
|
18220
17982
|
:param _Gateways: 返回详情项
|
18221
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18222
17983
|
:type Gateways: list of LoRaGatewayItem
|
18223
17984
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18224
17985
|
:type RequestId: str
|
@@ -18241,7 +18002,6 @@ class GetLoRaGatewayListResponse(AbstractModel):
|
|
18241
18002
|
@property
|
18242
18003
|
def Gateways(self):
|
18243
18004
|
"""返回详情项
|
18244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18245
18005
|
:rtype: list of LoRaGatewayItem
|
18246
18006
|
"""
|
18247
18007
|
return self._Gateways
|
@@ -18347,10 +18107,8 @@ class GetPositionSpaceListResponse(AbstractModel):
|
|
18347
18107
|
def __init__(self):
|
18348
18108
|
r"""
|
18349
18109
|
:param _List: 位置空间列表
|
18350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18351
18110
|
:type List: list of PositionSpaceInfo
|
18352
18111
|
:param _Total: 位置空间数量
|
18353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18354
18112
|
:type Total: int
|
18355
18113
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18356
18114
|
:type RequestId: str
|
@@ -18362,7 +18120,6 @@ class GetPositionSpaceListResponse(AbstractModel):
|
|
18362
18120
|
@property
|
18363
18121
|
def List(self):
|
18364
18122
|
"""位置空间列表
|
18365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18366
18123
|
:rtype: list of PositionSpaceInfo
|
18367
18124
|
"""
|
18368
18125
|
return self._List
|
@@ -18374,7 +18131,6 @@ class GetPositionSpaceListResponse(AbstractModel):
|
|
18374
18131
|
@property
|
18375
18132
|
def Total(self):
|
18376
18133
|
"""位置空间数量
|
18377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18378
18134
|
:rtype: int
|
18379
18135
|
"""
|
18380
18136
|
return self._Total
|
@@ -18540,10 +18296,8 @@ class GetProjectListResponse(AbstractModel):
|
|
18540
18296
|
def __init__(self):
|
18541
18297
|
r"""
|
18542
18298
|
:param _Projects: 项目列表
|
18543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18544
18299
|
:type Projects: list of ProjectEntryEx
|
18545
18300
|
:param _Total: 列表项个数
|
18546
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18547
18301
|
:type Total: int
|
18548
18302
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18549
18303
|
:type RequestId: str
|
@@ -18555,7 +18309,6 @@ class GetProjectListResponse(AbstractModel):
|
|
18555
18309
|
@property
|
18556
18310
|
def Projects(self):
|
18557
18311
|
"""项目列表
|
18558
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18559
18312
|
:rtype: list of ProjectEntryEx
|
18560
18313
|
"""
|
18561
18314
|
return self._Projects
|
@@ -18567,7 +18320,6 @@ class GetProjectListResponse(AbstractModel):
|
|
18567
18320
|
@property
|
18568
18321
|
def Total(self):
|
18569
18322
|
"""列表项个数
|
18570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18571
18323
|
:rtype: int
|
18572
18324
|
"""
|
18573
18325
|
return self._Total
|
@@ -19069,7 +18821,6 @@ class GetWechatDeviceTicketResponse(AbstractModel):
|
|
19069
18821
|
def __init__(self):
|
19070
18822
|
r"""
|
19071
18823
|
:param _WXDeviceInfo: 微信设备信息
|
19072
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19073
18824
|
:type WXDeviceInfo: :class:`tencentcloud.iotexplorer.v20190423.models.WXDeviceInfo`
|
19074
18825
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19075
18826
|
:type RequestId: str
|
@@ -19080,7 +18831,6 @@ class GetWechatDeviceTicketResponse(AbstractModel):
|
|
19080
18831
|
@property
|
19081
18832
|
def WXDeviceInfo(self):
|
19082
18833
|
"""微信设备信息
|
19083
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19084
18834
|
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.WXDeviceInfo`
|
19085
18835
|
"""
|
19086
18836
|
return self._WXDeviceInfo
|
@@ -19248,40 +18998,28 @@ class InstanceDetail(AbstractModel):
|
|
19248
18998
|
:param _ExpireTime: 过期时间,公共实例过期时间 0001-01-01T00:00:00Z,公共实例是永久有效
|
19249
18999
|
:type ExpireTime: str
|
19250
19000
|
:param _TotalDevice: 总设备数
|
19251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19252
19001
|
:type TotalDevice: int
|
19253
19002
|
:param _ActivateDevice: 激活设备数
|
19254
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19255
19003
|
:type ActivateDevice: int
|
19256
19004
|
:param _Description: 备注
|
19257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19258
19005
|
:type Description: str
|
19259
19006
|
:param _Status: 实例状态
|
19260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19261
19007
|
:type Status: int
|
19262
19008
|
:param _UpDownTPS: 消息上下行配置TPS
|
19263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19264
19009
|
:type UpDownTPS: int
|
19265
19010
|
:param _UpDownCurrentTPS: 当前消息上下行TPS
|
19266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19267
19011
|
:type UpDownCurrentTPS: int
|
19268
19012
|
:param _ForwardTPS: 消息转发配置TPS
|
19269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19270
19013
|
:type ForwardTPS: int
|
19271
19014
|
:param _ForwardCurrentTPS: 消息转发当前TPS
|
19272
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19273
19015
|
:type ForwardCurrentTPS: int
|
19274
19016
|
:param _CellNum: 实例单元数
|
19275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19276
19017
|
:type CellNum: int
|
19277
19018
|
:param _BillingTag: 实例Tag,企业实例必传
|
19278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19279
19019
|
:type BillingTag: str
|
19280
19020
|
:param _EverydayFreeMessageCount: 每日消息数
|
19281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19282
19021
|
:type EverydayFreeMessageCount: int
|
19283
19022
|
:param _MaxDeviceOnlineCount: 最大在线设备数
|
19284
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19285
19023
|
:type MaxDeviceOnlineCount: int
|
19286
19024
|
"""
|
19287
19025
|
self._InstanceId = None
|
@@ -19432,7 +19170,6 @@ class InstanceDetail(AbstractModel):
|
|
19432
19170
|
@property
|
19433
19171
|
def TotalDevice(self):
|
19434
19172
|
"""总设备数
|
19435
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19436
19173
|
:rtype: int
|
19437
19174
|
"""
|
19438
19175
|
return self._TotalDevice
|
@@ -19444,7 +19181,6 @@ class InstanceDetail(AbstractModel):
|
|
19444
19181
|
@property
|
19445
19182
|
def ActivateDevice(self):
|
19446
19183
|
"""激活设备数
|
19447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19448
19184
|
:rtype: int
|
19449
19185
|
"""
|
19450
19186
|
return self._ActivateDevice
|
@@ -19456,7 +19192,6 @@ class InstanceDetail(AbstractModel):
|
|
19456
19192
|
@property
|
19457
19193
|
def Description(self):
|
19458
19194
|
"""备注
|
19459
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19460
19195
|
:rtype: str
|
19461
19196
|
"""
|
19462
19197
|
return self._Description
|
@@ -19468,7 +19203,6 @@ class InstanceDetail(AbstractModel):
|
|
19468
19203
|
@property
|
19469
19204
|
def Status(self):
|
19470
19205
|
"""实例状态
|
19471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19472
19206
|
:rtype: int
|
19473
19207
|
"""
|
19474
19208
|
return self._Status
|
@@ -19480,7 +19214,6 @@ class InstanceDetail(AbstractModel):
|
|
19480
19214
|
@property
|
19481
19215
|
def UpDownTPS(self):
|
19482
19216
|
"""消息上下行配置TPS
|
19483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19484
19217
|
:rtype: int
|
19485
19218
|
"""
|
19486
19219
|
return self._UpDownTPS
|
@@ -19492,7 +19225,6 @@ class InstanceDetail(AbstractModel):
|
|
19492
19225
|
@property
|
19493
19226
|
def UpDownCurrentTPS(self):
|
19494
19227
|
"""当前消息上下行TPS
|
19495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19496
19228
|
:rtype: int
|
19497
19229
|
"""
|
19498
19230
|
return self._UpDownCurrentTPS
|
@@ -19504,7 +19236,6 @@ class InstanceDetail(AbstractModel):
|
|
19504
19236
|
@property
|
19505
19237
|
def ForwardTPS(self):
|
19506
19238
|
"""消息转发配置TPS
|
19507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19508
19239
|
:rtype: int
|
19509
19240
|
"""
|
19510
19241
|
return self._ForwardTPS
|
@@ -19516,7 +19247,6 @@ class InstanceDetail(AbstractModel):
|
|
19516
19247
|
@property
|
19517
19248
|
def ForwardCurrentTPS(self):
|
19518
19249
|
"""消息转发当前TPS
|
19519
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19520
19250
|
:rtype: int
|
19521
19251
|
"""
|
19522
19252
|
return self._ForwardCurrentTPS
|
@@ -19528,7 +19258,6 @@ class InstanceDetail(AbstractModel):
|
|
19528
19258
|
@property
|
19529
19259
|
def CellNum(self):
|
19530
19260
|
"""实例单元数
|
19531
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19532
19261
|
:rtype: int
|
19533
19262
|
"""
|
19534
19263
|
return self._CellNum
|
@@ -19540,7 +19269,6 @@ class InstanceDetail(AbstractModel):
|
|
19540
19269
|
@property
|
19541
19270
|
def BillingTag(self):
|
19542
19271
|
"""实例Tag,企业实例必传
|
19543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19544
19272
|
:rtype: str
|
19545
19273
|
"""
|
19546
19274
|
return self._BillingTag
|
@@ -19552,7 +19280,6 @@ class InstanceDetail(AbstractModel):
|
|
19552
19280
|
@property
|
19553
19281
|
def EverydayFreeMessageCount(self):
|
19554
19282
|
"""每日消息数
|
19555
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19556
19283
|
:rtype: int
|
19557
19284
|
"""
|
19558
19285
|
return self._EverydayFreeMessageCount
|
@@ -19564,7 +19291,6 @@ class InstanceDetail(AbstractModel):
|
|
19564
19291
|
@property
|
19565
19292
|
def MaxDeviceOnlineCount(self):
|
19566
19293
|
"""最大在线设备数
|
19567
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19568
19294
|
:rtype: int
|
19569
19295
|
"""
|
19570
19296
|
return self._MaxDeviceOnlineCount
|
@@ -20106,22 +19832,16 @@ class IotApplication(AbstractModel):
|
|
20106
19832
|
:param _TPNSAndroidRegion: TPNS服务Android应用所属地域,详细说明参见 ModifyApplication 同名入参。
|
20107
19833
|
:type TPNSAndroidRegion: str
|
20108
19834
|
:param _SelfSmsAppId: 自主短信配置APPID
|
20109
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20110
19835
|
:type SelfSmsAppId: str
|
20111
19836
|
:param _SelfSmsAppKey: 自主短信配置APPKey
|
20112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20113
19837
|
:type SelfSmsAppKey: str
|
20114
19838
|
:param _SelfSmsSign: 自主短信配置签名
|
20115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20116
19839
|
:type SelfSmsSign: str
|
20117
19840
|
:param _SelfSmsTemplateId: 自主短信配置模板ID
|
20118
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20119
19841
|
:type SelfSmsTemplateId: int
|
20120
19842
|
:param _WechatNotifyStatus: 第三方小程序强提醒开关 0:关闭;1:开启
|
20121
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20122
19843
|
:type WechatNotifyStatus: int
|
20123
19844
|
:param _InterconnectionProducts: 互联互通产品ID列表
|
20124
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20125
19845
|
:type InterconnectionProducts: str
|
20126
19846
|
"""
|
20127
19847
|
self._IotAppID = None
|
@@ -20410,7 +20130,6 @@ class IotApplication(AbstractModel):
|
|
20410
20130
|
@property
|
20411
20131
|
def SelfSmsAppId(self):
|
20412
20132
|
"""自主短信配置APPID
|
20413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20414
20133
|
:rtype: str
|
20415
20134
|
"""
|
20416
20135
|
return self._SelfSmsAppId
|
@@ -20422,7 +20141,6 @@ class IotApplication(AbstractModel):
|
|
20422
20141
|
@property
|
20423
20142
|
def SelfSmsAppKey(self):
|
20424
20143
|
"""自主短信配置APPKey
|
20425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20426
20144
|
:rtype: str
|
20427
20145
|
"""
|
20428
20146
|
return self._SelfSmsAppKey
|
@@ -20434,7 +20152,6 @@ class IotApplication(AbstractModel):
|
|
20434
20152
|
@property
|
20435
20153
|
def SelfSmsSign(self):
|
20436
20154
|
"""自主短信配置签名
|
20437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20438
20155
|
:rtype: str
|
20439
20156
|
"""
|
20440
20157
|
return self._SelfSmsSign
|
@@ -20446,7 +20163,6 @@ class IotApplication(AbstractModel):
|
|
20446
20163
|
@property
|
20447
20164
|
def SelfSmsTemplateId(self):
|
20448
20165
|
"""自主短信配置模板ID
|
20449
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20450
20166
|
:rtype: int
|
20451
20167
|
"""
|
20452
20168
|
return self._SelfSmsTemplateId
|
@@ -20458,7 +20174,6 @@ class IotApplication(AbstractModel):
|
|
20458
20174
|
@property
|
20459
20175
|
def WechatNotifyStatus(self):
|
20460
20176
|
"""第三方小程序强提醒开关 0:关闭;1:开启
|
20461
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20462
20177
|
:rtype: int
|
20463
20178
|
"""
|
20464
20179
|
return self._WechatNotifyStatus
|
@@ -20470,7 +20185,6 @@ class IotApplication(AbstractModel):
|
|
20470
20185
|
@property
|
20471
20186
|
def InterconnectionProducts(self):
|
20472
20187
|
"""互联互通产品ID列表
|
20473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20474
20188
|
:rtype: str
|
20475
20189
|
"""
|
20476
20190
|
return self._InterconnectionProducts
|
@@ -20534,7 +20248,6 @@ class LicenseServiceNumInfo(AbstractModel):
|
|
20534
20248
|
:param _UsedNum: 已使用授权数
|
20535
20249
|
:type UsedNum: int
|
20536
20250
|
:param _TWeCallLicense: TWeCall激活码
|
20537
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20538
20251
|
:type TWeCallLicense: list of TWeCallLicenseInfo
|
20539
20252
|
"""
|
20540
20253
|
self._LicenseType = None
|
@@ -20578,7 +20291,6 @@ class LicenseServiceNumInfo(AbstractModel):
|
|
20578
20291
|
@property
|
20579
20292
|
def TWeCallLicense(self):
|
20580
20293
|
"""TWeCall激活码
|
20581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20582
20294
|
:rtype: list of TWeCallLicenseInfo
|
20583
20295
|
"""
|
20584
20296
|
return self._TWeCallLicense
|
@@ -20757,16 +20469,12 @@ class ListEventHistoryResponse(AbstractModel):
|
|
20757
20469
|
def __init__(self):
|
20758
20470
|
r"""
|
20759
20471
|
:param _Context: 搜索上下文, 用作查询游标
|
20760
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20761
20472
|
:type Context: str
|
20762
20473
|
:param _Total: 搜索结果数量
|
20763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20764
20474
|
:type Total: int
|
20765
20475
|
:param _Listover: 搜索结果是否已经结束
|
20766
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20767
20476
|
:type Listover: bool
|
20768
20477
|
:param _EventHistory: 搜集结果集
|
20769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20770
20478
|
:type EventHistory: list of EventHistoryItem
|
20771
20479
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20772
20480
|
:type RequestId: str
|
@@ -20780,7 +20488,6 @@ class ListEventHistoryResponse(AbstractModel):
|
|
20780
20488
|
@property
|
20781
20489
|
def Context(self):
|
20782
20490
|
"""搜索上下文, 用作查询游标
|
20783
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20784
20491
|
:rtype: str
|
20785
20492
|
"""
|
20786
20493
|
return self._Context
|
@@ -20792,7 +20499,6 @@ class ListEventHistoryResponse(AbstractModel):
|
|
20792
20499
|
@property
|
20793
20500
|
def Total(self):
|
20794
20501
|
"""搜索结果数量
|
20795
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20796
20502
|
:rtype: int
|
20797
20503
|
"""
|
20798
20504
|
return self._Total
|
@@ -20804,7 +20510,6 @@ class ListEventHistoryResponse(AbstractModel):
|
|
20804
20510
|
@property
|
20805
20511
|
def Listover(self):
|
20806
20512
|
"""搜索结果是否已经结束
|
20807
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20808
20513
|
:rtype: bool
|
20809
20514
|
"""
|
20810
20515
|
return self._Listover
|
@@ -20816,7 +20521,6 @@ class ListEventHistoryResponse(AbstractModel):
|
|
20816
20521
|
@property
|
20817
20522
|
def EventHistory(self):
|
20818
20523
|
"""搜集结果集
|
20819
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20820
20524
|
:rtype: list of EventHistoryItem
|
20821
20525
|
"""
|
20822
20526
|
return self._EventHistory
|
@@ -23602,21 +23306,16 @@ class PackageInfo(AbstractModel):
|
|
23602
23306
|
:param _CSExpiredTime: 云存套餐过期时间
|
23603
23307
|
:type CSExpiredTime: int
|
23604
23308
|
:param _CreatedAt: 云存套餐创建时间
|
23605
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23606
23309
|
:type CreatedAt: int
|
23607
23310
|
:param _UpdatedAt: 云存套餐更新时间
|
23608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23609
23311
|
:type UpdatedAt: int
|
23610
23312
|
:param _PackageId: 套餐id
|
23611
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23612
23313
|
:type PackageId: str
|
23613
23314
|
:param _OrderId: 订单id
|
23614
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23615
23315
|
:type OrderId: str
|
23616
23316
|
:param _ChannelId: 通道id
|
23617
23317
|
:type ChannelId: int
|
23618
23318
|
:param _CSUserId: 用户id
|
23619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23620
23319
|
:type CSUserId: str
|
23621
23320
|
"""
|
23622
23321
|
self._Status = None
|
@@ -23678,7 +23377,6 @@ class PackageInfo(AbstractModel):
|
|
23678
23377
|
@property
|
23679
23378
|
def CreatedAt(self):
|
23680
23379
|
"""云存套餐创建时间
|
23681
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23682
23380
|
:rtype: int
|
23683
23381
|
"""
|
23684
23382
|
return self._CreatedAt
|
@@ -23690,7 +23388,6 @@ class PackageInfo(AbstractModel):
|
|
23690
23388
|
@property
|
23691
23389
|
def UpdatedAt(self):
|
23692
23390
|
"""云存套餐更新时间
|
23693
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23694
23391
|
:rtype: int
|
23695
23392
|
"""
|
23696
23393
|
return self._UpdatedAt
|
@@ -23702,7 +23399,6 @@ class PackageInfo(AbstractModel):
|
|
23702
23399
|
@property
|
23703
23400
|
def PackageId(self):
|
23704
23401
|
"""套餐id
|
23705
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23706
23402
|
:rtype: str
|
23707
23403
|
"""
|
23708
23404
|
return self._PackageId
|
@@ -23714,7 +23410,6 @@ class PackageInfo(AbstractModel):
|
|
23714
23410
|
@property
|
23715
23411
|
def OrderId(self):
|
23716
23412
|
"""订单id
|
23717
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23718
23413
|
:rtype: str
|
23719
23414
|
"""
|
23720
23415
|
return self._OrderId
|
@@ -23737,7 +23432,6 @@ class PackageInfo(AbstractModel):
|
|
23737
23432
|
@property
|
23738
23433
|
def CSUserId(self):
|
23739
23434
|
"""用户id
|
23740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23741
23435
|
:rtype: str
|
23742
23436
|
"""
|
23743
23437
|
return self._CSUserId
|
@@ -24015,10 +23709,8 @@ class PositionItem(AbstractModel):
|
|
24015
23709
|
:param _Latitude: 位置点的纬度
|
24016
23710
|
:type Latitude: float
|
24017
23711
|
:param _LocationType: 位置点的定位类型
|
24018
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24019
23712
|
:type LocationType: str
|
24020
23713
|
:param _Accuracy: 位置点的精度预估,单位为米
|
24021
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24022
23714
|
:type Accuracy: float
|
24023
23715
|
"""
|
24024
23716
|
self._CreateTime = None
|
@@ -24063,7 +23755,6 @@ class PositionItem(AbstractModel):
|
|
24063
23755
|
@property
|
24064
23756
|
def LocationType(self):
|
24065
23757
|
"""位置点的定位类型
|
24066
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24067
23758
|
:rtype: str
|
24068
23759
|
"""
|
24069
23760
|
return self._LocationType
|
@@ -24075,7 +23766,6 @@ class PositionItem(AbstractModel):
|
|
24075
23766
|
@property
|
24076
23767
|
def Accuracy(self):
|
24077
23768
|
"""位置点的精度预估,单位为米
|
24078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24079
23769
|
:rtype: float
|
24080
23770
|
"""
|
24081
23771
|
return self._Accuracy
|
@@ -24117,7 +23807,6 @@ class PositionSpaceInfo(AbstractModel):
|
|
24117
23807
|
:param _AuthorizeType: 授权类型
|
24118
23808
|
:type AuthorizeType: int
|
24119
23809
|
:param _Description: 描述备注
|
24120
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24121
23810
|
:type Description: str
|
24122
23811
|
:param _ProductIdList: 产品列表
|
24123
23812
|
:type ProductIdList: list of str
|
@@ -24188,7 +23877,6 @@ class PositionSpaceInfo(AbstractModel):
|
|
24188
23877
|
@property
|
24189
23878
|
def Description(self):
|
24190
23879
|
"""描述备注
|
24191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24192
23880
|
:rtype: str
|
24193
23881
|
"""
|
24194
23882
|
return self._Description
|
@@ -24382,28 +24070,20 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24382
24070
|
:param _ModuleId: 产品ModuleId
|
24383
24071
|
:type ModuleId: int
|
24384
24072
|
:param _EnableProductScript: 是否使用脚本进行二进制转json功能 可以取值 true / false
|
24385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24386
24073
|
:type EnableProductScript: str
|
24387
24074
|
:param _CreateUserId: 创建人 UinId
|
24388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24389
24075
|
:type CreateUserId: int
|
24390
24076
|
:param _CreatorNickName: 创建者昵称
|
24391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24392
24077
|
:type CreatorNickName: str
|
24393
24078
|
:param _BindStrategy: 绑定策略(1:强踢;2:非强踢;0:表示无意义)
|
24394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24395
24079
|
:type BindStrategy: int
|
24396
24080
|
:param _DeviceCount: 设备数量
|
24397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24398
24081
|
:type DeviceCount: int
|
24399
24082
|
:param _Rate: 平均传输速率
|
24400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24401
24083
|
:type Rate: str
|
24402
24084
|
:param _Period: 有效期
|
24403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24404
24085
|
:type Period: str
|
24405
24086
|
:param _IsInterconnection: 互联互通标识
|
24406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24407
24087
|
:type IsInterconnection: int
|
24408
24088
|
"""
|
24409
24089
|
self._ProductId = None
|
@@ -24587,7 +24267,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24587
24267
|
@property
|
24588
24268
|
def EnableProductScript(self):
|
24589
24269
|
"""是否使用脚本进行二进制转json功能 可以取值 true / false
|
24590
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24591
24270
|
:rtype: str
|
24592
24271
|
"""
|
24593
24272
|
return self._EnableProductScript
|
@@ -24599,7 +24278,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24599
24278
|
@property
|
24600
24279
|
def CreateUserId(self):
|
24601
24280
|
"""创建人 UinId
|
24602
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24603
24281
|
:rtype: int
|
24604
24282
|
"""
|
24605
24283
|
return self._CreateUserId
|
@@ -24611,7 +24289,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24611
24289
|
@property
|
24612
24290
|
def CreatorNickName(self):
|
24613
24291
|
"""创建者昵称
|
24614
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24615
24292
|
:rtype: str
|
24616
24293
|
"""
|
24617
24294
|
return self._CreatorNickName
|
@@ -24623,7 +24300,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24623
24300
|
@property
|
24624
24301
|
def BindStrategy(self):
|
24625
24302
|
"""绑定策略(1:强踢;2:非强踢;0:表示无意义)
|
24626
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24627
24303
|
:rtype: int
|
24628
24304
|
"""
|
24629
24305
|
return self._BindStrategy
|
@@ -24635,7 +24311,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24635
24311
|
@property
|
24636
24312
|
def DeviceCount(self):
|
24637
24313
|
"""设备数量
|
24638
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24639
24314
|
:rtype: int
|
24640
24315
|
"""
|
24641
24316
|
return self._DeviceCount
|
@@ -24647,7 +24322,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24647
24322
|
@property
|
24648
24323
|
def Rate(self):
|
24649
24324
|
"""平均传输速率
|
24650
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24651
24325
|
:rtype: str
|
24652
24326
|
"""
|
24653
24327
|
return self._Rate
|
@@ -24659,7 +24333,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24659
24333
|
@property
|
24660
24334
|
def Period(self):
|
24661
24335
|
"""有效期
|
24662
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24663
24336
|
:rtype: str
|
24664
24337
|
"""
|
24665
24338
|
return self._Period
|
@@ -24671,7 +24344,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
24671
24344
|
@property
|
24672
24345
|
def IsInterconnection(self):
|
24673
24346
|
"""互联互通标识
|
24674
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24675
24347
|
:rtype: int
|
24676
24348
|
"""
|
24677
24349
|
return self._IsInterconnection
|
@@ -24730,10 +24402,8 @@ class ProductModelDefinition(AbstractModel):
|
|
24730
24402
|
:param _CreateTime: 创建时间,秒级时间戳
|
24731
24403
|
:type CreateTime: int
|
24732
24404
|
:param _CategoryModel: 产品所属分类的模型快照(产品创建时刻的)
|
24733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24734
24405
|
:type CategoryModel: str
|
24735
24406
|
:param _NetTypeModel: 产品的连接类型的模型
|
24736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24737
24407
|
:type NetTypeModel: str
|
24738
24408
|
"""
|
24739
24409
|
self._ProductId = None
|
@@ -24790,7 +24460,6 @@ class ProductModelDefinition(AbstractModel):
|
|
24790
24460
|
@property
|
24791
24461
|
def CategoryModel(self):
|
24792
24462
|
"""产品所属分类的模型快照(产品创建时刻的)
|
24793
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24794
24463
|
:rtype: str
|
24795
24464
|
"""
|
24796
24465
|
return self._CategoryModel
|
@@ -24802,7 +24471,6 @@ class ProductModelDefinition(AbstractModel):
|
|
24802
24471
|
@property
|
24803
24472
|
def NetTypeModel(self):
|
24804
24473
|
"""产品的连接类型的模型
|
24805
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24806
24474
|
:rtype: str
|
24807
24475
|
"""
|
24808
24476
|
return self._NetTypeModel
|
@@ -24949,16 +24617,12 @@ class ProjectEntryEx(AbstractModel):
|
|
24949
24617
|
:param _WebAppCount: WebApp数量
|
24950
24618
|
:type WebAppCount: int
|
24951
24619
|
:param _InstanceId: 实例ID
|
24952
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24953
24620
|
:type InstanceId: str
|
24954
24621
|
:param _ApplicationCount: 应用数量
|
24955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24956
24622
|
:type ApplicationCount: int
|
24957
24623
|
:param _DeviceCount: 设备注册总数
|
24958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24959
24624
|
:type DeviceCount: int
|
24960
24625
|
:param _EnableOpenState: 是否开通物联使能
|
24961
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24962
24626
|
:type EnableOpenState: int
|
24963
24627
|
"""
|
24964
24628
|
self._ProjectId = None
|
@@ -25065,7 +24729,6 @@ class ProjectEntryEx(AbstractModel):
|
|
25065
24729
|
@property
|
25066
24730
|
def InstanceId(self):
|
25067
24731
|
"""实例ID
|
25068
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25069
24732
|
:rtype: str
|
25070
24733
|
"""
|
25071
24734
|
return self._InstanceId
|
@@ -25077,7 +24740,6 @@ class ProjectEntryEx(AbstractModel):
|
|
25077
24740
|
@property
|
25078
24741
|
def ApplicationCount(self):
|
25079
24742
|
"""应用数量
|
25080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25081
24743
|
:rtype: int
|
25082
24744
|
"""
|
25083
24745
|
return self._ApplicationCount
|
@@ -25089,7 +24751,6 @@ class ProjectEntryEx(AbstractModel):
|
|
25089
24751
|
@property
|
25090
24752
|
def DeviceCount(self):
|
25091
24753
|
"""设备注册总数
|
25092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25093
24754
|
:rtype: int
|
25094
24755
|
"""
|
25095
24756
|
return self._DeviceCount
|
@@ -25101,7 +24762,6 @@ class ProjectEntryEx(AbstractModel):
|
|
25101
24762
|
@property
|
25102
24763
|
def EnableOpenState(self):
|
25103
24764
|
"""是否开通物联使能
|
25104
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25105
24765
|
:rtype: int
|
25106
24766
|
"""
|
25107
24767
|
return self._EnableOpenState
|
@@ -25317,7 +24977,6 @@ class PublishFirmwareUpdateMessageResponse(AbstractModel):
|
|
25317
24977
|
def __init__(self):
|
25318
24978
|
r"""
|
25319
24979
|
:param _Status: 请求状态
|
25320
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25321
24980
|
:type Status: str
|
25322
24981
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25323
24982
|
:type RequestId: str
|
@@ -25328,7 +24987,6 @@ class PublishFirmwareUpdateMessageResponse(AbstractModel):
|
|
25328
24987
|
@property
|
25329
24988
|
def Status(self):
|
25330
24989
|
"""请求状态
|
25331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25332
24990
|
:rtype: str
|
25333
24991
|
"""
|
25334
24992
|
return self._Status
|
@@ -25685,10 +25343,13 @@ class RegisteredDeviceTypeInfo(AbstractModel):
|
|
25685
25343
|
:type GatewayDeviceNum: int
|
25686
25344
|
:param _SubDeviceNum: 已注册子设备数
|
25687
25345
|
:type SubDeviceNum: int
|
25346
|
+
:param _VideoDeviceNum: 已注册视频设备数
|
25347
|
+
:type VideoDeviceNum: int
|
25688
25348
|
"""
|
25689
25349
|
self._NormalDeviceNum = None
|
25690
25350
|
self._GatewayDeviceNum = None
|
25691
25351
|
self._SubDeviceNum = None
|
25352
|
+
self._VideoDeviceNum = None
|
25692
25353
|
|
25693
25354
|
@property
|
25694
25355
|
def NormalDeviceNum(self):
|
@@ -25723,11 +25384,23 @@ class RegisteredDeviceTypeInfo(AbstractModel):
|
|
25723
25384
|
def SubDeviceNum(self, SubDeviceNum):
|
25724
25385
|
self._SubDeviceNum = SubDeviceNum
|
25725
25386
|
|
25387
|
+
@property
|
25388
|
+
def VideoDeviceNum(self):
|
25389
|
+
"""已注册视频设备数
|
25390
|
+
:rtype: int
|
25391
|
+
"""
|
25392
|
+
return self._VideoDeviceNum
|
25393
|
+
|
25394
|
+
@VideoDeviceNum.setter
|
25395
|
+
def VideoDeviceNum(self, VideoDeviceNum):
|
25396
|
+
self._VideoDeviceNum = VideoDeviceNum
|
25397
|
+
|
25726
25398
|
|
25727
25399
|
def _deserialize(self, params):
|
25728
25400
|
self._NormalDeviceNum = params.get("NormalDeviceNum")
|
25729
25401
|
self._GatewayDeviceNum = params.get("GatewayDeviceNum")
|
25730
25402
|
self._SubDeviceNum = params.get("SubDeviceNum")
|
25403
|
+
self._VideoDeviceNum = params.get("VideoDeviceNum")
|
25731
25404
|
memeber_set = set(params.keys())
|
25732
25405
|
for name, value in vars(self).items():
|
25733
25406
|
property_name = name[1:]
|
@@ -26520,10 +26193,8 @@ class SearchPositionSpaceResponse(AbstractModel):
|
|
26520
26193
|
def __init__(self):
|
26521
26194
|
r"""
|
26522
26195
|
:param _List: 位置空间列表
|
26523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26524
26196
|
:type List: list of PositionSpaceInfo
|
26525
26197
|
:param _Total: 符合条件的位置空间个数
|
26526
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26527
26198
|
:type Total: int
|
26528
26199
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
26529
26200
|
:type RequestId: str
|
@@ -26535,7 +26206,6 @@ class SearchPositionSpaceResponse(AbstractModel):
|
|
26535
26206
|
@property
|
26536
26207
|
def List(self):
|
26537
26208
|
"""位置空间列表
|
26538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26539
26209
|
:rtype: list of PositionSpaceInfo
|
26540
26210
|
"""
|
26541
26211
|
return self._List
|
@@ -26547,7 +26217,6 @@ class SearchPositionSpaceResponse(AbstractModel):
|
|
26547
26217
|
@property
|
26548
26218
|
def Total(self):
|
26549
26219
|
"""符合条件的位置空间个数
|
26550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26551
26220
|
:rtype: int
|
26552
26221
|
"""
|
26553
26222
|
return self._Total
|
@@ -26979,10 +26648,8 @@ class TWeCallActiveInfo(AbstractModel):
|
|
26979
26648
|
注意:此字段可能返回 null,表示取不到有效值。
|
26980
26649
|
:type ModelId: str
|
26981
26650
|
:param _Sn: Sn信息
|
26982
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26983
26651
|
:type Sn: str
|
26984
26652
|
:param _ExpireTime: 过期时间
|
26985
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26986
26653
|
:type ExpireTime: int
|
26987
26654
|
:param _PkgType: 类型
|
26988
26655
|
:type PkgType: int
|
@@ -27011,7 +26678,6 @@ class TWeCallActiveInfo(AbstractModel):
|
|
27011
26678
|
@property
|
27012
26679
|
def Sn(self):
|
27013
26680
|
"""Sn信息
|
27014
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27015
26681
|
:rtype: str
|
27016
26682
|
"""
|
27017
26683
|
return self._Sn
|
@@ -27023,7 +26689,6 @@ class TWeCallActiveInfo(AbstractModel):
|
|
27023
26689
|
@property
|
27024
26690
|
def ExpireTime(self):
|
27025
26691
|
"""过期时间
|
27026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27027
26692
|
:rtype: int
|
27028
26693
|
"""
|
27029
26694
|
return self._ExpireTime
|
@@ -27067,7 +26732,6 @@ class TWeCallInfo(AbstractModel):
|
|
27067
26732
|
def __init__(self):
|
27068
26733
|
r"""
|
27069
26734
|
:param _Sn: Sn信息,SN格式:产品ID_设备名
|
27070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27071
26735
|
:type Sn: str
|
27072
26736
|
:param _ModelId: 小程序ID,参数已弃用,不用传参
|
27073
26737
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -27083,7 +26747,6 @@ class TWeCallInfo(AbstractModel):
|
|
27083
26747
|
@property
|
27084
26748
|
def Sn(self):
|
27085
26749
|
"""Sn信息,SN格式:产品ID_设备名
|
27086
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27087
26750
|
:rtype: str
|
27088
26751
|
"""
|
27089
26752
|
return self._Sn
|
@@ -27147,13 +26810,10 @@ class TWeCallLicenseInfo(AbstractModel):
|
|
27147
26810
|
def __init__(self):
|
27148
26811
|
r"""
|
27149
26812
|
:param _TWeCallType: voip类型
|
27150
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27151
26813
|
:type TWeCallType: str
|
27152
26814
|
:param _TotalNum: 总数
|
27153
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27154
26815
|
:type TotalNum: int
|
27155
26816
|
:param _UsedNum: 已使用
|
27156
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27157
26817
|
:type UsedNum: int
|
27158
26818
|
"""
|
27159
26819
|
self._TWeCallType = None
|
@@ -27163,7 +26823,6 @@ class TWeCallLicenseInfo(AbstractModel):
|
|
27163
26823
|
@property
|
27164
26824
|
def TWeCallType(self):
|
27165
26825
|
"""voip类型
|
27166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27167
26826
|
:rtype: str
|
27168
26827
|
"""
|
27169
26828
|
return self._TWeCallType
|
@@ -27175,7 +26834,6 @@ class TWeCallLicenseInfo(AbstractModel):
|
|
27175
26834
|
@property
|
27176
26835
|
def TotalNum(self):
|
27177
26836
|
"""总数
|
27178
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27179
26837
|
:rtype: int
|
27180
26838
|
"""
|
27181
26839
|
return self._TotalNum
|
@@ -27187,7 +26845,6 @@ class TWeCallLicenseInfo(AbstractModel):
|
|
27187
26845
|
@property
|
27188
26846
|
def UsedNum(self):
|
27189
26847
|
"""已使用
|
27190
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27191
26848
|
:rtype: int
|
27192
26849
|
"""
|
27193
26850
|
return self._UsedNum
|
@@ -27219,10 +26876,8 @@ class ThumbnailURLInfoList(AbstractModel):
|
|
27219
26876
|
def __init__(self):
|
27220
26877
|
r"""
|
27221
26878
|
:param _ThumbnailURL: 缩略图访问地址
|
27222
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27223
26879
|
:type ThumbnailURL: str
|
27224
26880
|
:param _ExpireTime: 缩略图访问地址的过期时间
|
27225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27226
26881
|
:type ExpireTime: int
|
27227
26882
|
"""
|
27228
26883
|
self._ThumbnailURL = None
|
@@ -27231,7 +26886,6 @@ class ThumbnailURLInfoList(AbstractModel):
|
|
27231
26886
|
@property
|
27232
26887
|
def ThumbnailURL(self):
|
27233
26888
|
"""缩略图访问地址
|
27234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27235
26889
|
:rtype: str
|
27236
26890
|
"""
|
27237
26891
|
return self._ThumbnailURL
|
@@ -27243,7 +26897,6 @@ class ThumbnailURLInfoList(AbstractModel):
|
|
27243
26897
|
@property
|
27244
26898
|
def ExpireTime(self):
|
27245
26899
|
"""缩略图访问地址的过期时间
|
27246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27247
26900
|
:rtype: int
|
27248
26901
|
"""
|
27249
26902
|
return self._ExpireTime
|
@@ -27329,13 +26982,10 @@ class TopicRule(AbstractModel):
|
|
27329
26982
|
:param _Sql: 规则的SQL语句,如: SELECT * FROM 'pid/dname/event',然后对其进行base64编码,得:U0VMRUNUICogRlJPTSAncGlkL2RuYW1lL2V2ZW50Jw==
|
27330
26983
|
:type Sql: str
|
27331
26984
|
:param _Description: 规则描述。
|
27332
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27333
26985
|
:type Description: str
|
27334
26986
|
:param _Actions: 行为的JSON字符串。
|
27335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27336
26987
|
:type Actions: str
|
27337
26988
|
:param _RuleDisabled: 是否禁用规则
|
27338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27339
26989
|
:type RuleDisabled: bool
|
27340
26990
|
"""
|
27341
26991
|
self._RuleName = None
|
@@ -27369,7 +27019,6 @@ class TopicRule(AbstractModel):
|
|
27369
27019
|
@property
|
27370
27020
|
def Description(self):
|
27371
27021
|
"""规则描述。
|
27372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27373
27022
|
:rtype: str
|
27374
27023
|
"""
|
27375
27024
|
return self._Description
|
@@ -27381,7 +27030,6 @@ class TopicRule(AbstractModel):
|
|
27381
27030
|
@property
|
27382
27031
|
def Actions(self):
|
27383
27032
|
"""行为的JSON字符串。
|
27384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27385
27033
|
:rtype: str
|
27386
27034
|
"""
|
27387
27035
|
return self._Actions
|
@@ -27393,7 +27041,6 @@ class TopicRule(AbstractModel):
|
|
27393
27041
|
@property
|
27394
27042
|
def RuleDisabled(self):
|
27395
27043
|
"""是否禁用规则
|
27396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27397
27044
|
:rtype: bool
|
27398
27045
|
"""
|
27399
27046
|
return self._RuleDisabled
|
@@ -28241,10 +27888,8 @@ class UpdateDevicesEnableStateResponse(AbstractModel):
|
|
28241
27888
|
def __init__(self):
|
28242
27889
|
r"""
|
28243
27890
|
:param _ResultCode: 删除的结果代码
|
28244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28245
27891
|
:type ResultCode: str
|
28246
27892
|
:param _ResultMessage: 删除的结果信息
|
28247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28248
27893
|
:type ResultMessage: str
|
28249
27894
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
28250
27895
|
:type RequestId: str
|
@@ -28256,7 +27901,6 @@ class UpdateDevicesEnableStateResponse(AbstractModel):
|
|
28256
27901
|
@property
|
28257
27902
|
def ResultCode(self):
|
28258
27903
|
"""删除的结果代码
|
28259
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28260
27904
|
:rtype: str
|
28261
27905
|
"""
|
28262
27906
|
return self._ResultCode
|
@@ -28268,7 +27912,6 @@ class UpdateDevicesEnableStateResponse(AbstractModel):
|
|
28268
27912
|
@property
|
28269
27913
|
def ResultMessage(self):
|
28270
27914
|
"""删除的结果信息
|
28271
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28272
27915
|
:rtype: str
|
28273
27916
|
"""
|
28274
27917
|
return self._ResultMessage
|
@@ -28677,10 +28320,8 @@ class WXDeviceInfo(AbstractModel):
|
|
28677
28320
|
def __init__(self):
|
28678
28321
|
r"""
|
28679
28322
|
:param _DeviceId: 设备ID
|
28680
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28681
28323
|
:type DeviceId: str
|
28682
28324
|
:param _WXIoTDeviceInfo: 设备信息
|
28683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28684
28325
|
:type WXIoTDeviceInfo: :class:`tencentcloud.iotexplorer.v20190423.models.WXIoTDeviceInfo`
|
28685
28326
|
"""
|
28686
28327
|
self._DeviceId = None
|
@@ -28689,7 +28330,6 @@ class WXDeviceInfo(AbstractModel):
|
|
28689
28330
|
@property
|
28690
28331
|
def DeviceId(self):
|
28691
28332
|
"""设备ID
|
28692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28693
28333
|
:rtype: str
|
28694
28334
|
"""
|
28695
28335
|
return self._DeviceId
|
@@ -28701,7 +28341,6 @@ class WXDeviceInfo(AbstractModel):
|
|
28701
28341
|
@property
|
28702
28342
|
def WXIoTDeviceInfo(self):
|
28703
28343
|
"""设备信息
|
28704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28705
28344
|
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.WXIoTDeviceInfo`
|
28706
28345
|
"""
|
28707
28346
|
return self._WXIoTDeviceInfo
|
@@ -28734,13 +28373,10 @@ class WXIoTDeviceInfo(AbstractModel):
|
|
28734
28373
|
def __init__(self):
|
28735
28374
|
r"""
|
28736
28375
|
:param _SN: sn信息
|
28737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28738
28376
|
:type SN: str
|
28739
28377
|
:param _SNTicket: 票据
|
28740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28741
28378
|
:type SNTicket: str
|
28742
28379
|
:param _ModelId: 模板ID
|
28743
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28744
28380
|
:type ModelId: str
|
28745
28381
|
"""
|
28746
28382
|
self._SN = None
|
@@ -28750,7 +28386,6 @@ class WXIoTDeviceInfo(AbstractModel):
|
|
28750
28386
|
@property
|
28751
28387
|
def SN(self):
|
28752
28388
|
"""sn信息
|
28753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28754
28389
|
:rtype: str
|
28755
28390
|
"""
|
28756
28391
|
return self._SN
|
@@ -28762,7 +28397,6 @@ class WXIoTDeviceInfo(AbstractModel):
|
|
28762
28397
|
@property
|
28763
28398
|
def SNTicket(self):
|
28764
28399
|
"""票据
|
28765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28766
28400
|
:rtype: str
|
28767
28401
|
"""
|
28768
28402
|
return self._SNTicket
|
@@ -28774,7 +28408,6 @@ class WXIoTDeviceInfo(AbstractModel):
|
|
28774
28408
|
@property
|
28775
28409
|
def ModelId(self):
|
28776
28410
|
"""模板ID
|
28777
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28778
28411
|
:rtype: str
|
28779
28412
|
"""
|
28780
28413
|
return self._ModelId
|