tencentcloud-sdk-python 3.0.1352__py2.py3-none-any.whl → 3.0.1353__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.
Files changed (43) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/batch_client.py +0 -46
  3. tencentcloud/batch/v20170312/errorcodes.py +0 -9
  4. tencentcloud/batch/v20170312/models.py +21 -962
  5. tencentcloud/bi/v20220105/models.py +145 -0
  6. tencentcloud/cam/v20190116/errorcodes.py +3 -0
  7. tencentcloud/cam/v20190116/models.py +0 -82
  8. tencentcloud/cbs/v20170312/models.py +6 -14
  9. tencentcloud/cdn/v20180606/models.py +0 -46
  10. tencentcloud/chdfs/v20201112/models.py +2 -2
  11. tencentcloud/controlcenter/v20230110/models.py +0 -58
  12. tencentcloud/dbbrain/v20191016/dbbrain_client.py +23 -0
  13. tencentcloud/dbbrain/v20191016/models.py +375 -0
  14. tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
  15. tencentcloud/dbbrain/v20210527/models.py +701 -26
  16. tencentcloud/dcdb/v20180411/models.py +175 -2
  17. tencentcloud/dnspod/v20210323/models.py +0 -70
  18. tencentcloud/facefusion/v20220927/models.py +4 -2
  19. tencentcloud/gs/v20191118/models.py +16 -4
  20. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
  21. tencentcloud/iotexplorer/v20190423/models.py +49 -412
  22. tencentcloud/lkeap/v20240522/models.py +12 -6
  23. tencentcloud/mariadb/v20170312/models.py +151 -2
  24. tencentcloud/mps/v20190612/models.py +2 -2
  25. tencentcloud/mqtt/v20240516/models.py +8 -2
  26. tencentcloud/ocr/v20181119/errorcodes.py +0 -3
  27. tencentcloud/ocr/v20181119/models.py +0 -558
  28. tencentcloud/ocr/v20181119/ocr_client.py +0 -23
  29. tencentcloud/organization/v20210331/models.py +15 -0
  30. tencentcloud/sqlserver/v20180328/models.py +15 -0
  31. tencentcloud/tcb/v20180608/models.py +20 -0
  32. tencentcloud/teo/v20220106/teo_client.py +6 -2
  33. tencentcloud/tione/v20211111/models.py +35 -3
  34. tencentcloud/tse/v20201207/models.py +0 -34
  35. tencentcloud/vod/v20240718/models.py +0 -2
  36. tencentcloud/vpc/v20170312/models.py +300 -0
  37. tencentcloud/vpc/v20170312/vpc_client.py +26 -0
  38. tencentcloud/wedata/v20210820/models.py +17 -0
  39. {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/METADATA +1 -1
  40. {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/RECORD +43 -43
  41. {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/LICENSE +0 -0
  42. {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/WHEEL +0 -0
  43. {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.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
@@ -2604,7 +2566,6 @@ class CloudStorageTimeData(AbstractModel):
2604
2566
  :param _TimeList: 云存时间轴信息列表
2605
2567
  :type TimeList: list of CloudStorageTimeInfo
2606
2568
  :param _VideoURL: 播放地址
2607
- 注意:此字段可能返回 null,表示取不到有效值。
2608
2569
  :type VideoURL: str
2609
2570
  """
2610
2571
  self._TimeList = None
@@ -2624,7 +2585,6 @@ class CloudStorageTimeData(AbstractModel):
2624
2585
  @property
2625
2586
  def VideoURL(self):
2626
2587
  """播放地址
2627
- 注意:此字段可能返回 null,表示取不到有效值。
2628
2588
  :rtype: str
2629
2589
  """
2630
2590
  return self._VideoURL
@@ -2862,7 +2822,6 @@ class ControlDeviceDataResponse(AbstractModel):
2862
2822
  :param _Result: JSON字符串, 返回下发控制的结果信息,
2863
2823
  Sent = 1 表示设备已经在线并且订阅了控制下发的mqtt topic.
2864
2824
  pushResult 是表示发送结果,其中 0 表示成功, 23101 表示设备未在线或没有订阅相关的 MQTT Topic。
2865
- 注意:此字段可能返回 null,表示取不到有效值。
2866
2825
  :type Result: str
2867
2826
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2868
2827
  :type RequestId: str
@@ -2887,7 +2846,6 @@ pushResult 是表示发送结果,其中 0 表示成功, 23101 表示设备
2887
2846
  """JSON字符串, 返回下发控制的结果信息,
2888
2847
  Sent = 1 表示设备已经在线并且订阅了控制下发的mqtt topic.
2889
2848
  pushResult 是表示发送结果,其中 0 表示成功, 23101 表示设备未在线或没有订阅相关的 MQTT Topic。
2890
- 注意:此字段可能返回 null,表示取不到有效值。
2891
2849
  :rtype: str
2892
2850
  """
2893
2851
  return self._Result
@@ -4175,10 +4133,8 @@ class CreateFreeCloudStorageResponse(AbstractModel):
4175
4133
  def __init__(self):
4176
4134
  r"""
4177
4135
  :param _Price: 订单金额,单位为分
4178
- 注意:此字段可能返回 null,表示取不到有效值。
4179
4136
  :type Price: int
4180
4137
  :param _Amount: 支付金额,单位为分
4181
- 注意:此字段可能返回 null,表示取不到有效值。
4182
4138
  :type Amount: int
4183
4139
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4184
4140
  :type RequestId: str
@@ -4190,7 +4146,6 @@ class CreateFreeCloudStorageResponse(AbstractModel):
4190
4146
  @property
4191
4147
  def Price(self):
4192
4148
  """订单金额,单位为分
4193
- 注意:此字段可能返回 null,表示取不到有效值。
4194
4149
  :rtype: int
4195
4150
  """
4196
4151
  return self._Price
@@ -4202,7 +4157,6 @@ class CreateFreeCloudStorageResponse(AbstractModel):
4202
4157
  @property
4203
4158
  def Amount(self):
4204
4159
  """支付金额,单位为分
4205
- 注意:此字段可能返回 null,表示取不到有效值。
4206
4160
  :rtype: int
4207
4161
  """
4208
4162
  return self._Amount
@@ -4418,10 +4372,8 @@ class CreateIotVideoCloudStorageResponse(AbstractModel):
4418
4372
  def __init__(self):
4419
4373
  r"""
4420
4374
  :param _Price: 订单金额,单位为分
4421
- 注意:此字段可能返回 null,表示取不到有效值。
4422
4375
  :type Price: int
4423
4376
  :param _Amount: 支付金额,单位为分
4424
- 注意:此字段可能返回 null,表示取不到有效值。
4425
4377
  :type Amount: int
4426
4378
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4427
4379
  :type RequestId: str
@@ -4433,7 +4385,6 @@ class CreateIotVideoCloudStorageResponse(AbstractModel):
4433
4385
  @property
4434
4386
  def Price(self):
4435
4387
  """订单金额,单位为分
4436
- 注意:此字段可能返回 null,表示取不到有效值。
4437
4388
  :rtype: int
4438
4389
  """
4439
4390
  return self._Price
@@ -4445,7 +4396,6 @@ class CreateIotVideoCloudStorageResponse(AbstractModel):
4445
4396
  @property
4446
4397
  def Amount(self):
4447
4398
  """支付金额,单位为分
4448
- 注意:此字段可能返回 null,表示取不到有效值。
4449
4399
  :rtype: int
4450
4400
  """
4451
4401
  return self._Amount
@@ -5074,7 +5024,6 @@ class CreatePositionSpaceResponse(AbstractModel):
5074
5024
  def __init__(self):
5075
5025
  r"""
5076
5026
  :param _SpaceId: 空间Id
5077
- 注意:此字段可能返回 null,表示取不到有效值。
5078
5027
  :type SpaceId: str
5079
5028
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5080
5029
  :type RequestId: str
@@ -5085,7 +5034,6 @@ class CreatePositionSpaceResponse(AbstractModel):
5085
5034
  @property
5086
5035
  def SpaceId(self):
5087
5036
  """空间Id
5088
- 注意:此字段可能返回 null,表示取不到有效值。
5089
5037
  :rtype: str
5090
5038
  """
5091
5039
  return self._SpaceId
@@ -5497,7 +5445,6 @@ class CreateTRTCSignaturesWithRoomIdResponse(AbstractModel):
5497
5445
  def __init__(self):
5498
5446
  r"""
5499
5447
  :param _TRTCParamList: 返回参数数组
5500
- 注意:此字段可能返回 null,表示取不到有效值。
5501
5448
  :type TRTCParamList: list of TRTCParams
5502
5449
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5503
5450
  :type RequestId: str
@@ -5508,7 +5455,6 @@ class CreateTRTCSignaturesWithRoomIdResponse(AbstractModel):
5508
5455
  @property
5509
5456
  def TRTCParamList(self):
5510
5457
  """返回参数数组
5511
- 注意:此字段可能返回 null,表示取不到有效值。
5512
5458
  :rtype: list of TRTCParams
5513
5459
  """
5514
5460
  return self._TRTCParamList
@@ -5942,10 +5888,8 @@ class DeleteDeviceResponse(AbstractModel):
5942
5888
  def __init__(self):
5943
5889
  r"""
5944
5890
  :param _ResultCode: 删除的结果代码
5945
- 注意:此字段可能返回 null,表示取不到有效值。
5946
5891
  :type ResultCode: str
5947
5892
  :param _ResultMessage: 删除的结果信息
5948
- 注意:此字段可能返回 null,表示取不到有效值。
5949
5893
  :type ResultMessage: str
5950
5894
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5951
5895
  :type RequestId: str
@@ -5957,7 +5901,6 @@ class DeleteDeviceResponse(AbstractModel):
5957
5901
  @property
5958
5902
  def ResultCode(self):
5959
5903
  """删除的结果代码
5960
- 注意:此字段可能返回 null,表示取不到有效值。
5961
5904
  :rtype: str
5962
5905
  """
5963
5906
  return self._ResultCode
@@ -5969,7 +5912,6 @@ class DeleteDeviceResponse(AbstractModel):
5969
5912
  @property
5970
5913
  def ResultMessage(self):
5971
5914
  """删除的结果信息
5972
- 注意:此字段可能返回 null,表示取不到有效值。
5973
5915
  :rtype: str
5974
5916
  """
5975
5917
  return self._ResultMessage
@@ -6045,10 +5987,8 @@ class DeleteDevicesResponse(AbstractModel):
6045
5987
  def __init__(self):
6046
5988
  r"""
6047
5989
  :param _ResultCode: 删除的结果代码
6048
- 注意:此字段可能返回 null,表示取不到有效值。
6049
5990
  :type ResultCode: str
6050
5991
  :param _ResultMessage: 删除的结果信息
6051
- 注意:此字段可能返回 null,表示取不到有效值。
6052
5992
  :type ResultMessage: str
6053
5993
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6054
5994
  :type RequestId: str
@@ -6060,7 +6000,6 @@ class DeleteDevicesResponse(AbstractModel):
6060
6000
  @property
6061
6001
  def ResultCode(self):
6062
6002
  """删除的结果代码
6063
- 注意:此字段可能返回 null,表示取不到有效值。
6064
6003
  :rtype: str
6065
6004
  """
6066
6005
  return self._ResultCode
@@ -6072,7 +6011,6 @@ class DeleteDevicesResponse(AbstractModel):
6072
6011
  @property
6073
6012
  def ResultMessage(self):
6074
6013
  """删除的结果信息
6075
- 注意:此字段可能返回 null,表示取不到有效值。
6076
6014
  :rtype: str
6077
6015
  """
6078
6016
  return self._ResultMessage
@@ -6769,7 +6707,6 @@ class DescribeActivateDeviceResponse(AbstractModel):
6769
6707
  def __init__(self):
6770
6708
  r"""
6771
6709
  :param _Data: 设备激活详情信息
6772
- 注意:此字段可能返回 null,表示取不到有效值。
6773
6710
  :type Data: :class:`tencentcloud.iotexplorer.v20190423.models.ActivateDeviceInfo`
6774
6711
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6775
6712
  :type RequestId: str
@@ -6780,7 +6717,6 @@ class DescribeActivateDeviceResponse(AbstractModel):
6780
6717
  @property
6781
6718
  def Data(self):
6782
6719
  """设备激活详情信息
6783
- 注意:此字段可能返回 null,表示取不到有效值。
6784
6720
  :rtype: :class:`tencentcloud.iotexplorer.v20190423.models.ActivateDeviceInfo`
6785
6721
  """
6786
6722
  return self._Data
@@ -6867,7 +6803,6 @@ class DescribeActivateLicenseServiceResponse(AbstractModel):
6867
6803
  def __init__(self):
6868
6804
  r"""
6869
6805
  :param _Data: 增值服务激活码信息
6870
- 注意:此字段可能返回 null,表示取不到有效值。
6871
6806
  :type Data: list of LicenseServiceNumInfo
6872
6807
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6873
6808
  :type RequestId: str
@@ -6878,7 +6813,6 @@ class DescribeActivateLicenseServiceResponse(AbstractModel):
6878
6813
  @property
6879
6814
  def Data(self):
6880
6815
  """增值服务激活码信息
6881
- 注意:此字段可能返回 null,表示取不到有效值。
6882
6816
  :rtype: list of LicenseServiceNumInfo
6883
6817
  """
6884
6818
  return self._Data
@@ -6980,13 +6914,10 @@ class DescribeBatchProductionResponse(AbstractModel):
6980
6914
  :param _UploadUrl: 上传URL。
6981
6915
  :type UploadUrl: str
6982
6916
  :param _SuccessCount: 成功数
6983
- 注意:此字段可能返回 null,表示取不到有效值。
6984
6917
  :type SuccessCount: int
6985
6918
  :param _LastFailedReason: 量产最后失败原因
6986
- 注意:此字段可能返回 null,表示取不到有效值。
6987
6919
  :type LastFailedReason: str
6988
6920
  :param _Status: 量产状态 0:任务创建,未量产;1:处理中;2:量产结束上传结果中;3:任务完成
6989
- 注意:此字段可能返回 null,表示取不到有效值。
6990
6921
  :type Status: int
6991
6922
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6992
6923
  :type RequestId: str
@@ -7071,7 +7002,6 @@ class DescribeBatchProductionResponse(AbstractModel):
7071
7002
  @property
7072
7003
  def SuccessCount(self):
7073
7004
  """成功数
7074
- 注意:此字段可能返回 null,表示取不到有效值。
7075
7005
  :rtype: int
7076
7006
  """
7077
7007
  return self._SuccessCount
@@ -7083,7 +7013,6 @@ class DescribeBatchProductionResponse(AbstractModel):
7083
7013
  @property
7084
7014
  def LastFailedReason(self):
7085
7015
  """量产最后失败原因
7086
- 注意:此字段可能返回 null,表示取不到有效值。
7087
7016
  :rtype: str
7088
7017
  """
7089
7018
  return self._LastFailedReason
@@ -7095,7 +7024,6 @@ class DescribeBatchProductionResponse(AbstractModel):
7095
7024
  @property
7096
7025
  def Status(self):
7097
7026
  """量产状态 0:任务创建,未量产;1:处理中;2:量产结束上传结果中;3:任务完成
7098
- 注意:此字段可能返回 null,表示取不到有效值。
7099
7027
  :rtype: int
7100
7028
  """
7101
7029
  return self._Status
@@ -8820,13 +8748,10 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
8820
8748
  def __init__(self):
8821
8749
  r"""
8822
8750
  :param _StartTime: 云存套餐开始时间
8823
- 注意:此字段可能返回 null,表示取不到有效值。
8824
8751
  :type StartTime: int
8825
8752
  :param _ExpireTime: 云存套餐过期时间
8826
- 注意:此字段可能返回 null,表示取不到有效值。
8827
8753
  :type ExpireTime: int
8828
8754
  :param _PackageId: 套餐id
8829
- 注意:此字段可能返回 null,表示取不到有效值。
8830
8755
  :type PackageId: str
8831
8756
  :param _Status: 套餐状态
8832
8757
  0:等待生效
@@ -8836,10 +8761,8 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
8836
8761
  :param _ChannelId: 通道id
8837
8762
  :type ChannelId: int
8838
8763
  :param _Price: 订单金额,单位为分
8839
- 注意:此字段可能返回 null,表示取不到有效值。
8840
8764
  :type Price: int
8841
8765
  :param _Amount: 支付金额,单位为分
8842
- 注意:此字段可能返回 null,表示取不到有效值。
8843
8766
  :type Amount: int
8844
8767
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8845
8768
  :type RequestId: str
@@ -8856,7 +8779,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
8856
8779
  @property
8857
8780
  def StartTime(self):
8858
8781
  """云存套餐开始时间
8859
- 注意:此字段可能返回 null,表示取不到有效值。
8860
8782
  :rtype: int
8861
8783
  """
8862
8784
  return self._StartTime
@@ -8868,7 +8790,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
8868
8790
  @property
8869
8791
  def ExpireTime(self):
8870
8792
  """云存套餐过期时间
8871
- 注意:此字段可能返回 null,表示取不到有效值。
8872
8793
  :rtype: int
8873
8794
  """
8874
8795
  return self._ExpireTime
@@ -8880,7 +8801,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
8880
8801
  @property
8881
8802
  def PackageId(self):
8882
8803
  """套餐id
8883
- 注意:此字段可能返回 null,表示取不到有效值。
8884
8804
  :rtype: str
8885
8805
  """
8886
8806
  return self._PackageId
@@ -8917,7 +8837,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
8917
8837
  @property
8918
8838
  def Price(self):
8919
8839
  """订单金额,单位为分
8920
- 注意:此字段可能返回 null,表示取不到有效值。
8921
8840
  :rtype: int
8922
8841
  """
8923
8842
  return self._Price
@@ -8929,7 +8848,6 @@ class DescribeCloudStorageOrderResponse(AbstractModel):
8929
8848
  @property
8930
8849
  def Amount(self):
8931
8850
  """支付金额,单位为分
8932
- 注意:此字段可能返回 null,表示取不到有效值。
8933
8851
  :rtype: int
8934
8852
  """
8935
8853
  return self._Amount
@@ -9236,7 +9154,6 @@ class DescribeCloudStorageResponse(AbstractModel):
9236
9154
  :param _ShiftDuration: 云存回看时长
9237
9155
  :type ShiftDuration: int
9238
9156
  :param _UserId: 云存用户ID
9239
- 注意:此字段可能返回 null,表示取不到有效值。
9240
9157
  :type UserId: str
9241
9158
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9242
9159
  :type RequestId: str
@@ -9295,7 +9212,6 @@ class DescribeCloudStorageResponse(AbstractModel):
9295
9212
  @property
9296
9213
  def UserId(self):
9297
9214
  """云存用户ID
9298
- 注意:此字段可能返回 null,表示取不到有效值。
9299
9215
  :rtype: str
9300
9216
  """
9301
9217
  return self._UserId
@@ -10061,19 +9977,14 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
10061
9977
  def __init__(self):
10062
9978
  r"""
10063
9979
  :param _GatewayProductId: 网关产品ID
10064
- 注意:此字段可能返回 null,表示取不到有效值。
10065
9980
  :type GatewayProductId: str
10066
9981
  :param _GatewayDeviceName: 网关设备名
10067
- 注意:此字段可能返回 null,表示取不到有效值。
10068
9982
  :type GatewayDeviceName: str
10069
9983
  :param _GatewayName: 网关产品名称
10070
- 注意:此字段可能返回 null,表示取不到有效值。
10071
9984
  :type GatewayName: str
10072
9985
  :param _GatewayProductOwnerName: 设备对应产品所属的主账号名称
10073
- 注意:此字段可能返回 null,表示取不到有效值。
10074
9986
  :type GatewayProductOwnerName: str
10075
9987
  :param _GatewayProductOwnerUin: 设备对应产品所属的主账号 UIN
10076
- 注意:此字段可能返回 null,表示取不到有效值。
10077
9988
  :type GatewayProductOwnerUin: str
10078
9989
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10079
9990
  :type RequestId: str
@@ -10088,7 +9999,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
10088
9999
  @property
10089
10000
  def GatewayProductId(self):
10090
10001
  """网关产品ID
10091
- 注意:此字段可能返回 null,表示取不到有效值。
10092
10002
  :rtype: str
10093
10003
  """
10094
10004
  return self._GatewayProductId
@@ -10100,7 +10010,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
10100
10010
  @property
10101
10011
  def GatewayDeviceName(self):
10102
10012
  """网关设备名
10103
- 注意:此字段可能返回 null,表示取不到有效值。
10104
10013
  :rtype: str
10105
10014
  """
10106
10015
  return self._GatewayDeviceName
@@ -10112,7 +10021,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
10112
10021
  @property
10113
10022
  def GatewayName(self):
10114
10023
  """网关产品名称
10115
- 注意:此字段可能返回 null,表示取不到有效值。
10116
10024
  :rtype: str
10117
10025
  """
10118
10026
  return self._GatewayName
@@ -10124,7 +10032,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
10124
10032
  @property
10125
10033
  def GatewayProductOwnerName(self):
10126
10034
  """设备对应产品所属的主账号名称
10127
- 注意:此字段可能返回 null,表示取不到有效值。
10128
10035
  :rtype: str
10129
10036
  """
10130
10037
  return self._GatewayProductOwnerName
@@ -10136,7 +10043,6 @@ class DescribeDeviceBindGatewayResponse(AbstractModel):
10136
10043
  @property
10137
10044
  def GatewayProductOwnerUin(self):
10138
10045
  """设备对应产品所属的主账号 UIN
10139
- 注意:此字段可能返回 null,表示取不到有效值。
10140
10046
  :rtype: str
10141
10047
  """
10142
10048
  return self._GatewayProductOwnerUin
@@ -10300,16 +10206,12 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
10300
10206
  def __init__(self):
10301
10207
  r"""
10302
10208
  :param _FieldName: 属性字段名称,对应数据模板中功能属性的标识符
10303
- 注意:此字段可能返回 null,表示取不到有效值。
10304
10209
  :type FieldName: str
10305
10210
  :param _Listover: 数据是否已全部返回,true 表示数据全部返回,false 表示还有数据待返回,可将 Context 作为入参,继续查询返回结果。
10306
- 注意:此字段可能返回 null,表示取不到有效值。
10307
10211
  :type Listover: bool
10308
10212
  :param _Context: 检索上下文,当 ListOver 为false时,可以用此上下文,继续读取后续数据
10309
- 注意:此字段可能返回 null,表示取不到有效值。
10310
10213
  :type Context: str
10311
10214
  :param _Results: 历史数据结果数组,返回对应时间点及取值。
10312
- 注意:此字段可能返回 null,表示取不到有效值。
10313
10215
  :type Results: list of DeviceDataHistoryItem
10314
10216
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10315
10217
  :type RequestId: str
@@ -10323,7 +10225,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
10323
10225
  @property
10324
10226
  def FieldName(self):
10325
10227
  """属性字段名称,对应数据模板中功能属性的标识符
10326
- 注意:此字段可能返回 null,表示取不到有效值。
10327
10228
  :rtype: str
10328
10229
  """
10329
10230
  return self._FieldName
@@ -10335,7 +10236,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
10335
10236
  @property
10336
10237
  def Listover(self):
10337
10238
  """数据是否已全部返回,true 表示数据全部返回,false 表示还有数据待返回,可将 Context 作为入参,继续查询返回结果。
10338
- 注意:此字段可能返回 null,表示取不到有效值。
10339
10239
  :rtype: bool
10340
10240
  """
10341
10241
  return self._Listover
@@ -10347,7 +10247,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
10347
10247
  @property
10348
10248
  def Context(self):
10349
10249
  """检索上下文,当 ListOver 为false时,可以用此上下文,继续读取后续数据
10350
- 注意:此字段可能返回 null,表示取不到有效值。
10351
10250
  :rtype: str
10352
10251
  """
10353
10252
  return self._Context
@@ -10359,7 +10258,6 @@ class DescribeDeviceDataHistoryResponse(AbstractModel):
10359
10258
  @property
10360
10259
  def Results(self):
10361
10260
  """历史数据结果数组,返回对应时间点及取值。
10362
- 注意:此字段可能返回 null,表示取不到有效值。
10363
10261
  :rtype: list of DeviceDataHistoryItem
10364
10262
  """
10365
10263
  return self._Results
@@ -10655,7 +10553,6 @@ class DescribeDeviceFirmwaresResponse(AbstractModel):
10655
10553
  def __init__(self):
10656
10554
  r"""
10657
10555
  :param _Firmwares: 固件信息列表
10658
- 注意:此字段可能返回 null,表示取不到有效值。
10659
10556
  :type Firmwares: list of DeviceFirmwareInfo
10660
10557
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10661
10558
  :type RequestId: str
@@ -10666,7 +10563,6 @@ class DescribeDeviceFirmwaresResponse(AbstractModel):
10666
10563
  @property
10667
10564
  def Firmwares(self):
10668
10565
  """固件信息列表
10669
- 注意:此字段可能返回 null,表示取不到有效值。
10670
10566
  :rtype: list of DeviceFirmwareInfo
10671
10567
  """
10672
10568
  return self._Firmwares
@@ -10812,7 +10708,6 @@ class DescribeDeviceLocationSolveResponse(AbstractModel):
10812
10708
  :param _LocationType: 类型
10813
10709
  :type LocationType: str
10814
10710
  :param _Accuracy: 误差精度预估,单位为米
10815
- 注意:此字段可能返回 null,表示取不到有效值。
10816
10711
  :type Accuracy: float
10817
10712
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10818
10713
  :type RequestId: str
@@ -10859,7 +10754,6 @@ class DescribeDeviceLocationSolveResponse(AbstractModel):
10859
10754
  @property
10860
10755
  def Accuracy(self):
10861
10756
  """误差精度预估,单位为米
10862
- 注意:此字段可能返回 null,表示取不到有效值。
10863
10757
  :rtype: float
10864
10758
  """
10865
10759
  return self._Accuracy
@@ -11700,24 +11594,18 @@ class DescribeFirmwareResponse(AbstractModel):
11700
11594
  :param _ProductId: 产品ID
11701
11595
  :type ProductId: str
11702
11596
  :param _Name: 固件名称
11703
- 注意:此字段可能返回 null,表示取不到有效值。
11704
11597
  :type Name: str
11705
11598
  :param _Description: 固件描述
11706
- 注意:此字段可能返回 null,表示取不到有效值。
11707
11599
  :type Description: str
11708
11600
  :param _Md5sum: 固件Md5值
11709
- 注意:此字段可能返回 null,表示取不到有效值。
11710
11601
  :type Md5sum: str
11711
11602
  :param _Createtime: 固件上传的秒级时间戳
11712
- 注意:此字段可能返回 null,表示取不到有效值。
11713
11603
  :type Createtime: int
11714
11604
  :param _ProductName: 产品名称
11715
11605
  :type ProductName: str
11716
11606
  :param _FwType: 固件升级模块
11717
- 注意:此字段可能返回 null,表示取不到有效值。
11718
11607
  :type FwType: str
11719
11608
  :param _UserDefined: 固件用户自定义配置信息
11720
- 注意:此字段可能返回 null,表示取不到有效值。
11721
11609
  :type UserDefined: str
11722
11610
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11723
11611
  :type RequestId: str
@@ -11758,7 +11646,6 @@ class DescribeFirmwareResponse(AbstractModel):
11758
11646
  @property
11759
11647
  def Name(self):
11760
11648
  """固件名称
11761
- 注意:此字段可能返回 null,表示取不到有效值。
11762
11649
  :rtype: str
11763
11650
  """
11764
11651
  return self._Name
@@ -11770,7 +11657,6 @@ class DescribeFirmwareResponse(AbstractModel):
11770
11657
  @property
11771
11658
  def Description(self):
11772
11659
  """固件描述
11773
- 注意:此字段可能返回 null,表示取不到有效值。
11774
11660
  :rtype: str
11775
11661
  """
11776
11662
  return self._Description
@@ -11782,7 +11668,6 @@ class DescribeFirmwareResponse(AbstractModel):
11782
11668
  @property
11783
11669
  def Md5sum(self):
11784
11670
  """固件Md5值
11785
- 注意:此字段可能返回 null,表示取不到有效值。
11786
11671
  :rtype: str
11787
11672
  """
11788
11673
  return self._Md5sum
@@ -11794,7 +11679,6 @@ class DescribeFirmwareResponse(AbstractModel):
11794
11679
  @property
11795
11680
  def Createtime(self):
11796
11681
  """固件上传的秒级时间戳
11797
- 注意:此字段可能返回 null,表示取不到有效值。
11798
11682
  :rtype: int
11799
11683
  """
11800
11684
  return self._Createtime
@@ -11817,7 +11701,6 @@ class DescribeFirmwareResponse(AbstractModel):
11817
11701
  @property
11818
11702
  def FwType(self):
11819
11703
  """固件升级模块
11820
- 注意:此字段可能返回 null,表示取不到有效值。
11821
11704
  :rtype: str
11822
11705
  """
11823
11706
  return self._FwType
@@ -11829,7 +11712,6 @@ class DescribeFirmwareResponse(AbstractModel):
11829
11712
  @property
11830
11713
  def UserDefined(self):
11831
11714
  """固件用户自定义配置信息
11832
- 注意:此字段可能返回 null,表示取不到有效值。
11833
11715
  :rtype: str
11834
11716
  """
11835
11717
  return self._UserDefined
@@ -11937,34 +11819,24 @@ class DescribeFirmwareTaskResponse(AbstractModel):
11937
11819
  def __init__(self):
11938
11820
  r"""
11939
11821
  :param _TaskId: 固件任务ID
11940
- 注意:此字段可能返回 null,表示取不到有效值。
11941
11822
  :type TaskId: int
11942
11823
  :param _Status: 固件任务状态
11943
- 注意:此字段可能返回 null,表示取不到有效值。
11944
11824
  :type Status: int
11945
11825
  :param _CreateTime: 固件任务创建时间,单位:秒
11946
- 注意:此字段可能返回 null,表示取不到有效值。
11947
11826
  :type CreateTime: int
11948
11827
  :param _Type: 固件任务升级类型
11949
- 注意:此字段可能返回 null,表示取不到有效值。
11950
11828
  :type Type: int
11951
11829
  :param _ProductName: 产品名称
11952
- 注意:此字段可能返回 null,表示取不到有效值。
11953
11830
  :type ProductName: str
11954
11831
  :param _UpgradeMode: 固件任务升级模式。originalVersion(按版本号升级)、filename(提交文件升级)、devicenames(按设备名称升级)
11955
- 注意:此字段可能返回 null,表示取不到有效值。
11956
11832
  :type UpgradeMode: str
11957
11833
  :param _ProductId: 产品ID
11958
- 注意:此字段可能返回 null,表示取不到有效值。
11959
11834
  :type ProductId: str
11960
11835
  :param _OriginalVersion: 原始固件版本号,在UpgradeMode是originalVersion升级模式下会返回
11961
- 注意:此字段可能返回 null,表示取不到有效值。
11962
11836
  :type OriginalVersion: str
11963
11837
  :param _CreateUserId: 创建账号ID
11964
- 注意:此字段可能返回 null,表示取不到有效值。
11965
11838
  :type CreateUserId: int
11966
11839
  :param _CreatorNickName: 创建账号ID昵称
11967
- 注意:此字段可能返回 null,表示取不到有效值。
11968
11840
  :type CreatorNickName: str
11969
11841
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11970
11842
  :type RequestId: str
@@ -11984,7 +11856,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
11984
11856
  @property
11985
11857
  def TaskId(self):
11986
11858
  """固件任务ID
11987
- 注意:此字段可能返回 null,表示取不到有效值。
11988
11859
  :rtype: int
11989
11860
  """
11990
11861
  return self._TaskId
@@ -11996,7 +11867,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
11996
11867
  @property
11997
11868
  def Status(self):
11998
11869
  """固件任务状态
11999
- 注意:此字段可能返回 null,表示取不到有效值。
12000
11870
  :rtype: int
12001
11871
  """
12002
11872
  return self._Status
@@ -12008,7 +11878,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12008
11878
  @property
12009
11879
  def CreateTime(self):
12010
11880
  """固件任务创建时间,单位:秒
12011
- 注意:此字段可能返回 null,表示取不到有效值。
12012
11881
  :rtype: int
12013
11882
  """
12014
11883
  return self._CreateTime
@@ -12020,7 +11889,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12020
11889
  @property
12021
11890
  def Type(self):
12022
11891
  """固件任务升级类型
12023
- 注意:此字段可能返回 null,表示取不到有效值。
12024
11892
  :rtype: int
12025
11893
  """
12026
11894
  return self._Type
@@ -12032,7 +11900,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12032
11900
  @property
12033
11901
  def ProductName(self):
12034
11902
  """产品名称
12035
- 注意:此字段可能返回 null,表示取不到有效值。
12036
11903
  :rtype: str
12037
11904
  """
12038
11905
  return self._ProductName
@@ -12044,7 +11911,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12044
11911
  @property
12045
11912
  def UpgradeMode(self):
12046
11913
  """固件任务升级模式。originalVersion(按版本号升级)、filename(提交文件升级)、devicenames(按设备名称升级)
12047
- 注意:此字段可能返回 null,表示取不到有效值。
12048
11914
  :rtype: str
12049
11915
  """
12050
11916
  return self._UpgradeMode
@@ -12056,7 +11922,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12056
11922
  @property
12057
11923
  def ProductId(self):
12058
11924
  """产品ID
12059
- 注意:此字段可能返回 null,表示取不到有效值。
12060
11925
  :rtype: str
12061
11926
  """
12062
11927
  return self._ProductId
@@ -12068,7 +11933,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12068
11933
  @property
12069
11934
  def OriginalVersion(self):
12070
11935
  """原始固件版本号,在UpgradeMode是originalVersion升级模式下会返回
12071
- 注意:此字段可能返回 null,表示取不到有效值。
12072
11936
  :rtype: str
12073
11937
  """
12074
11938
  return self._OriginalVersion
@@ -12080,7 +11944,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12080
11944
  @property
12081
11945
  def CreateUserId(self):
12082
11946
  """创建账号ID
12083
- 注意:此字段可能返回 null,表示取不到有效值。
12084
11947
  :rtype: int
12085
11948
  """
12086
11949
  return self._CreateUserId
@@ -12092,7 +11955,6 @@ class DescribeFirmwareTaskResponse(AbstractModel):
12092
11955
  @property
12093
11956
  def CreatorNickName(self):
12094
11957
  """创建账号ID昵称
12095
- 注意:此字段可能返回 null,表示取不到有效值。
12096
11958
  :rtype: str
12097
11959
  """
12098
11960
  return self._CreatorNickName
@@ -12186,15 +12048,12 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
12186
12048
  def __init__(self):
12187
12049
  r"""
12188
12050
  :param _OriVersion: 升级任务源版本。
12189
- 注意:此字段可能返回 null,表示取不到有效值。
12190
12051
  :type OriVersion: str
12191
12052
  :param _DstVersion: 升级任务目标版本。
12192
- 注意:此字段可能返回 null,表示取不到有效值。
12193
12053
  :type DstVersion: str
12194
12054
  :param _Status: 升级状态:- 0:设备离线。- 1:待处理。- 2:消息下发成功。- 3:下载中。- 4:烧录中。- 5:失败。- 6:升级完成。- 7:正在处理中。- 8:等待用户确认。- 10:升级超时。- 20:下载完成。
12195
12055
  :type Status: int
12196
12056
  :param _Percent: 进度
12197
- 注意:此字段可能返回 null,表示取不到有效值。
12198
12057
  :type Percent: int
12199
12058
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12200
12059
  :type RequestId: str
@@ -12208,7 +12067,6 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
12208
12067
  @property
12209
12068
  def OriVersion(self):
12210
12069
  """升级任务源版本。
12211
- 注意:此字段可能返回 null,表示取不到有效值。
12212
12070
  :rtype: str
12213
12071
  """
12214
12072
  return self._OriVersion
@@ -12220,7 +12078,6 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
12220
12078
  @property
12221
12079
  def DstVersion(self):
12222
12080
  """升级任务目标版本。
12223
- 注意:此字段可能返回 null,表示取不到有效值。
12224
12081
  :rtype: str
12225
12082
  """
12226
12083
  return self._DstVersion
@@ -12243,7 +12100,6 @@ class DescribeFirmwareUpdateStatusResponse(AbstractModel):
12243
12100
  @property
12244
12101
  def Percent(self):
12245
12102
  """进度
12246
- 注意:此字段可能返回 null,表示取不到有效值。
12247
12103
  :rtype: int
12248
12104
  """
12249
12105
  return self._Percent
@@ -12589,10 +12445,8 @@ class DescribeGatewaySubDeviceListResponse(AbstractModel):
12589
12445
  def __init__(self):
12590
12446
  r"""
12591
12447
  :param _Total: 设备的总数
12592
- 注意:此字段可能返回 null,表示取不到有效值。
12593
12448
  :type Total: int
12594
12449
  :param _DeviceList: 设备列表
12595
- 注意:此字段可能返回 null,表示取不到有效值。
12596
12450
  :type DeviceList: list of FamilySubDevice
12597
12451
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12598
12452
  :type RequestId: str
@@ -12604,7 +12458,6 @@ class DescribeGatewaySubDeviceListResponse(AbstractModel):
12604
12458
  @property
12605
12459
  def Total(self):
12606
12460
  """设备的总数
12607
- 注意:此字段可能返回 null,表示取不到有效值。
12608
12461
  :rtype: int
12609
12462
  """
12610
12463
  return self._Total
@@ -12616,7 +12469,6 @@ class DescribeGatewaySubDeviceListResponse(AbstractModel):
12616
12469
  @property
12617
12470
  def DeviceList(self):
12618
12471
  """设备列表
12619
- 注意:此字段可能返回 null,表示取不到有效值。
12620
12472
  :rtype: list of FamilySubDevice
12621
12473
  """
12622
12474
  return self._DeviceList
@@ -12896,7 +12748,6 @@ class DescribeInstanceResponse(AbstractModel):
12896
12748
  def __init__(self):
12897
12749
  r"""
12898
12750
  :param _Data: 实例信息
12899
- 注意:此字段可能返回 null,表示取不到有效值。
12900
12751
  :type Data: :class:`tencentcloud.iotexplorer.v20190423.models.InstanceDetail`
12901
12752
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12902
12753
  :type RequestId: str
@@ -12907,7 +12758,6 @@ class DescribeInstanceResponse(AbstractModel):
12907
12758
  @property
12908
12759
  def Data(self):
12909
12760
  """实例信息
12910
- 注意:此字段可能返回 null,表示取不到有效值。
12911
12761
  :rtype: :class:`tencentcloud.iotexplorer.v20190423.models.InstanceDetail`
12912
12762
  """
12913
12763
  return self._Data
@@ -12979,7 +12829,6 @@ class DescribeLoRaFrequencyResponse(AbstractModel):
12979
12829
  def __init__(self):
12980
12830
  r"""
12981
12831
  :param _Data: 返回详情项
12982
- 注意:此字段可能返回 null,表示取不到有效值。
12983
12832
  :type Data: :class:`tencentcloud.iotexplorer.v20190423.models.LoRaFrequencyEntry`
12984
12833
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12985
12834
  :type RequestId: str
@@ -12990,7 +12839,6 @@ class DescribeLoRaFrequencyResponse(AbstractModel):
12990
12839
  @property
12991
12840
  def Data(self):
12992
12841
  """返回详情项
12993
- 注意:此字段可能返回 null,表示取不到有效值。
12994
12842
  :rtype: :class:`tencentcloud.iotexplorer.v20190423.models.LoRaFrequencyEntry`
12995
12843
  """
12996
12844
  return self._Data
@@ -13460,10 +13308,8 @@ class DescribePositionFenceListResponse(AbstractModel):
13460
13308
  def __init__(self):
13461
13309
  r"""
13462
13310
  :param _List: 围栏列表
13463
- 注意:此字段可能返回 null,表示取不到有效值。
13464
13311
  :type List: list of PositionFenceInfo
13465
13312
  :param _Total: 围栏数量
13466
- 注意:此字段可能返回 null,表示取不到有效值。
13467
13313
  :type Total: int
13468
13314
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13469
13315
  :type RequestId: str
@@ -13475,7 +13321,6 @@ class DescribePositionFenceListResponse(AbstractModel):
13475
13321
  @property
13476
13322
  def List(self):
13477
13323
  """围栏列表
13478
- 注意:此字段可能返回 null,表示取不到有效值。
13479
13324
  :rtype: list of PositionFenceInfo
13480
13325
  """
13481
13326
  return self._List
@@ -13487,7 +13332,6 @@ class DescribePositionFenceListResponse(AbstractModel):
13487
13332
  @property
13488
13333
  def Total(self):
13489
13334
  """围栏数量
13490
- 注意:此字段可能返回 null,表示取不到有效值。
13491
13335
  :rtype: int
13492
13336
  """
13493
13337
  return self._Total
@@ -14104,10 +13948,8 @@ class DescribeTopicRuleResponse(AbstractModel):
14104
13948
  def __init__(self):
14105
13949
  r"""
14106
13950
  :param _Rule: 规则描述。
14107
- 注意:此字段可能返回 null,表示取不到有效值。
14108
13951
  :type Rule: :class:`tencentcloud.iotexplorer.v20190423.models.TopicRule`
14109
13952
  :param _CamTag: 规则绑定的标签
14110
- 注意:此字段可能返回 null,表示取不到有效值。
14111
13953
  :type CamTag: list of CamTag
14112
13954
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14113
13955
  :type RequestId: str
@@ -14119,7 +13961,6 @@ class DescribeTopicRuleResponse(AbstractModel):
14119
13961
  @property
14120
13962
  def Rule(self):
14121
13963
  """规则描述。
14122
- 注意:此字段可能返回 null,表示取不到有效值。
14123
13964
  :rtype: :class:`tencentcloud.iotexplorer.v20190423.models.TopicRule`
14124
13965
  """
14125
13966
  return self._Rule
@@ -14131,7 +13972,6 @@ class DescribeTopicRuleResponse(AbstractModel):
14131
13972
  @property
14132
13973
  def CamTag(self):
14133
13974
  """规则绑定的标签
14134
- 注意:此字段可能返回 null,表示取不到有效值。
14135
13975
  :rtype: list of CamTag
14136
13976
  """
14137
13977
  return self._CamTag
@@ -14239,7 +14079,6 @@ class DescribeUnbindedDevicesResponse(AbstractModel):
14239
14079
  def __init__(self):
14240
14080
  r"""
14241
14081
  :param _UnbindedDevices: 未绑定的设备列表
14242
- 注意:此字段可能返回 null,表示取不到有效值。
14243
14082
  :type UnbindedDevices: list of BindDeviceInfo
14244
14083
  :param _Total: 设备的总数量
14245
14084
  :type Total: int
@@ -14253,7 +14092,6 @@ class DescribeUnbindedDevicesResponse(AbstractModel):
14253
14092
  @property
14254
14093
  def UnbindedDevices(self):
14255
14094
  """未绑定的设备列表
14256
- 注意:此字段可能返回 null,表示取不到有效值。
14257
14095
  :rtype: list of BindDeviceInfo
14258
14096
  """
14259
14097
  return self._UnbindedDevices
@@ -14340,7 +14178,6 @@ class DescribeVideoLicenseResponse(AbstractModel):
14340
14178
  def __init__(self):
14341
14179
  r"""
14342
14180
  :param _License: 视频激活码分类概览
14343
- 注意:此字段可能返回 null,表示取不到有效值。
14344
14181
  :type License: list of VideoLicenseEntity
14345
14182
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14346
14183
  :type RequestId: str
@@ -14351,7 +14188,6 @@ class DescribeVideoLicenseResponse(AbstractModel):
14351
14188
  @property
14352
14189
  def License(self):
14353
14190
  """视频激活码分类概览
14354
- 注意:此字段可能返回 null,表示取不到有效值。
14355
14191
  :rtype: list of VideoLicenseEntity
14356
14192
  """
14357
14193
  return self._License
@@ -14401,6 +14237,10 @@ class DeviceActivationDetail(AbstractModel):
14401
14237
  :type TotalBluetoothLicense: int
14402
14238
  :param _UsedBluetoothLicense: 已使用蓝牙授权数
14403
14239
  :type UsedBluetoothLicense: int
14240
+ :param _TotalFreeLicense: 可免费注册设备数
14241
+ :type TotalFreeLicense: int
14242
+ :param _UsedFreeLicense: 已使用注册设备数
14243
+ :type UsedFreeLicense: int
14404
14244
  """
14405
14245
  self._TotalDeviceNum = None
14406
14246
  self._UsedDeviceNum = None
@@ -14408,6 +14248,8 @@ class DeviceActivationDetail(AbstractModel):
14408
14248
  self._UsedNormalLicense = None
14409
14249
  self._TotalBluetoothLicense = None
14410
14250
  self._UsedBluetoothLicense = None
14251
+ self._TotalFreeLicense = None
14252
+ self._UsedFreeLicense = None
14411
14253
 
14412
14254
  @property
14413
14255
  def TotalDeviceNum(self):
@@ -14475,6 +14317,28 @@ class DeviceActivationDetail(AbstractModel):
14475
14317
  def UsedBluetoothLicense(self, UsedBluetoothLicense):
14476
14318
  self._UsedBluetoothLicense = UsedBluetoothLicense
14477
14319
 
14320
+ @property
14321
+ def TotalFreeLicense(self):
14322
+ """可免费注册设备数
14323
+ :rtype: int
14324
+ """
14325
+ return self._TotalFreeLicense
14326
+
14327
+ @TotalFreeLicense.setter
14328
+ def TotalFreeLicense(self, TotalFreeLicense):
14329
+ self._TotalFreeLicense = TotalFreeLicense
14330
+
14331
+ @property
14332
+ def UsedFreeLicense(self):
14333
+ """已使用注册设备数
14334
+ :rtype: int
14335
+ """
14336
+ return self._UsedFreeLicense
14337
+
14338
+ @UsedFreeLicense.setter
14339
+ def UsedFreeLicense(self, UsedFreeLicense):
14340
+ self._UsedFreeLicense = UsedFreeLicense
14341
+
14478
14342
 
14479
14343
  def _deserialize(self, params):
14480
14344
  self._TotalDeviceNum = params.get("TotalDeviceNum")
@@ -14483,6 +14347,8 @@ class DeviceActivationDetail(AbstractModel):
14483
14347
  self._UsedNormalLicense = params.get("UsedNormalLicense")
14484
14348
  self._TotalBluetoothLicense = params.get("TotalBluetoothLicense")
14485
14349
  self._UsedBluetoothLicense = params.get("UsedBluetoothLicense")
14350
+ self._TotalFreeLicense = params.get("TotalFreeLicense")
14351
+ self._UsedFreeLicense = params.get("UsedFreeLicense")
14486
14352
  memeber_set = set(params.keys())
14487
14353
  for name, value in vars(self).items():
14488
14354
  property_name = name[1:]
@@ -14504,13 +14370,10 @@ class DeviceActiveResult(AbstractModel):
14504
14370
  注意:此字段可能返回 null,表示取不到有效值。
14505
14371
  :type ModelId: str
14506
14372
  :param _Sn: SN信息
14507
- 注意:此字段可能返回 null,表示取不到有效值。
14508
14373
  :type Sn: str
14509
14374
  :param _ErrCode: 设备激活状态,0:激活成功;50011:系统错误;50012:产品不存在;50013:设备不存在;50014:产品无权限;50015:不是音视频产品;50016:SN格式错误;50017:激活码类型错误;50018:激活次数限频;50019:激活码不足;50020:SN已暂停;
14510
- 注意:此字段可能返回 null,表示取不到有效值。
14511
14375
  :type ErrCode: int
14512
14376
  :param _ExpireTime: 过期时间
14513
- 注意:此字段可能返回 null,表示取不到有效值。
14514
14377
  :type ExpireTime: int
14515
14378
  """
14516
14379
  self._ModelId = None
@@ -14537,7 +14400,6 @@ class DeviceActiveResult(AbstractModel):
14537
14400
  @property
14538
14401
  def Sn(self):
14539
14402
  """SN信息
14540
- 注意:此字段可能返回 null,表示取不到有效值。
14541
14403
  :rtype: str
14542
14404
  """
14543
14405
  return self._Sn
@@ -14549,7 +14411,6 @@ class DeviceActiveResult(AbstractModel):
14549
14411
  @property
14550
14412
  def ErrCode(self):
14551
14413
  """设备激活状态,0:激活成功;50011:系统错误;50012:产品不存在;50013:设备不存在;50014:产品无权限;50015:不是音视频产品;50016:SN格式错误;50017:激活码类型错误;50018:激活次数限频;50019:激活码不足;50020:SN已暂停;
14552
- 注意:此字段可能返回 null,表示取不到有效值。
14553
14414
  :rtype: int
14554
14415
  """
14555
14416
  return self._ErrCode
@@ -14561,7 +14422,6 @@ class DeviceActiveResult(AbstractModel):
14561
14422
  @property
14562
14423
  def ExpireTime(self):
14563
14424
  """过期时间
14564
- 注意:此字段可能返回 null,表示取不到有效值。
14565
14425
  :rtype: int
14566
14426
  """
14567
14427
  return self._ExpireTime
@@ -14594,16 +14454,12 @@ class DeviceData(AbstractModel):
14594
14454
  def __init__(self):
14595
14455
  r"""
14596
14456
  :param _DeviceCert: 设备证书,用于 TLS 建立链接时校验客户端身份。采用非对称加密时返回该参数。
14597
- 注意:此字段可能返回 null,表示取不到有效值。
14598
14457
  :type DeviceCert: str
14599
14458
  :param _DeviceName: 设备名称。
14600
- 注意:此字段可能返回 null,表示取不到有效值。
14601
14459
  :type DeviceName: str
14602
14460
  :param _DevicePrivateKey: 设备私钥,用于 TLS 建立链接时校验客户端身份,腾讯云后台不保存,请妥善保管。采用非对称加密时返回该参数。
14603
- 注意:此字段可能返回 null,表示取不到有效值。
14604
14461
  :type DevicePrivateKey: str
14605
14462
  :param _DevicePsk: 对称加密密钥,base64编码。采用对称加密时返回该参数。
14606
- 注意:此字段可能返回 null,表示取不到有效值。
14607
14463
  :type DevicePsk: str
14608
14464
  """
14609
14465
  self._DeviceCert = None
@@ -14614,7 +14470,6 @@ class DeviceData(AbstractModel):
14614
14470
  @property
14615
14471
  def DeviceCert(self):
14616
14472
  """设备证书,用于 TLS 建立链接时校验客户端身份。采用非对称加密时返回该参数。
14617
- 注意:此字段可能返回 null,表示取不到有效值。
14618
14473
  :rtype: str
14619
14474
  """
14620
14475
  return self._DeviceCert
@@ -14626,7 +14481,6 @@ class DeviceData(AbstractModel):
14626
14481
  @property
14627
14482
  def DeviceName(self):
14628
14483
  """设备名称。
14629
- 注意:此字段可能返回 null,表示取不到有效值。
14630
14484
  :rtype: str
14631
14485
  """
14632
14486
  return self._DeviceName
@@ -14638,7 +14492,6 @@ class DeviceData(AbstractModel):
14638
14492
  @property
14639
14493
  def DevicePrivateKey(self):
14640
14494
  """设备私钥,用于 TLS 建立链接时校验客户端身份,腾讯云后台不保存,请妥善保管。采用非对称加密时返回该参数。
14641
- 注意:此字段可能返回 null,表示取不到有效值。
14642
14495
  :rtype: str
14643
14496
  """
14644
14497
  return self._DevicePrivateKey
@@ -14650,7 +14503,6 @@ class DeviceData(AbstractModel):
14650
14503
  @property
14651
14504
  def DevicePsk(self):
14652
14505
  """对称加密密钥,base64编码。采用对称加密时返回该参数。
14653
- 注意:此字段可能返回 null,表示取不到有效值。
14654
14506
  :rtype: str
14655
14507
  """
14656
14508
  return self._DevicePsk
@@ -14806,59 +14658,41 @@ class DeviceInfo(AbstractModel):
14806
14658
  :param _DevicePsk: 设备密钥,密钥加密的设备返回
14807
14659
  :type DevicePsk: str
14808
14660
  :param _FirstOnlineTime: 首次上线时间
14809
- 注意:此字段可能返回 null,表示取不到有效值。
14810
14661
  注意:此字段可能返回 null,表示取不到有效值。
14811
14662
  :type FirstOnlineTime: int
14812
14663
  :param _LoginTime: 最后一次上线时间
14813
- 注意:此字段可能返回 null,表示取不到有效值。
14814
14664
  :type LoginTime: int
14815
14665
  :param _CreateTime: 设备创建时间
14816
- 注意:此字段可能返回 null,表示取不到有效值。
14817
14666
  :type CreateTime: int
14818
14667
  :param _Version: 设备固件版本
14819
- 注意:此字段可能返回 null,表示取不到有效值。
14820
14668
  :type Version: str
14821
14669
  :param _DeviceCert: 设备证书
14822
- 注意:此字段可能返回 null,表示取不到有效值。
14823
14670
  :type DeviceCert: str
14824
14671
  :param _LogLevel: 日志级别
14825
- 注意:此字段可能返回 null,表示取不到有效值。
14826
14672
  :type LogLevel: int
14827
14673
  :param _DevAddr: LoRaWAN 设备地址
14828
- 注意:此字段可能返回 null,表示取不到有效值。
14829
14674
  :type DevAddr: str
14830
14675
  :param _AppKey: LoRaWAN 应用密钥
14831
- 注意:此字段可能返回 null,表示取不到有效值。
14832
14676
  :type AppKey: str
14833
14677
  :param _DevEUI: LoRaWAN 设备唯一标识
14834
- 注意:此字段可能返回 null,表示取不到有效值。
14835
14678
  :type DevEUI: str
14836
14679
  :param _AppSKey: LoRaWAN 应用会话密钥
14837
- 注意:此字段可能返回 null,表示取不到有效值。
14838
14680
  :type AppSKey: str
14839
14681
  :param _NwkSKey: LoRaWAN 网络会话密钥
14840
- 注意:此字段可能返回 null,表示取不到有效值。
14841
14682
  :type NwkSKey: str
14842
14683
  :param _CreateUserId: 创建人Id
14843
- 注意:此字段可能返回 null,表示取不到有效值。
14844
14684
  :type CreateUserId: int
14845
14685
  :param _CreatorNickName: 创建人昵称
14846
- 注意:此字段可能返回 null,表示取不到有效值。
14847
14686
  :type CreatorNickName: str
14848
14687
  :param _EnableState: 启用/禁用状态
14849
- 注意:此字段可能返回 null,表示取不到有效值。
14850
14688
  :type EnableState: int
14851
14689
  :param _ProductId: 产品ID
14852
- 注意:此字段可能返回 null,表示取不到有效值。
14853
14690
  :type ProductId: str
14854
14691
  :param _ProductName: 产品名称
14855
- 注意:此字段可能返回 null,表示取不到有效值。
14856
14692
  :type ProductName: str
14857
14693
  :param _DeviceType: 设备类型(设备、子设备、网关)
14858
- 注意:此字段可能返回 null,表示取不到有效值。
14859
14694
  :type DeviceType: str
14860
14695
  :param _IsLora: 是否是 lora 设备
14861
- 注意:此字段可能返回 null,表示取不到有效值。
14862
14696
  :type IsLora: bool
14863
14697
  """
14864
14698
  self._DeviceName = None
@@ -14919,7 +14753,6 @@ class DeviceInfo(AbstractModel):
14919
14753
  @property
14920
14754
  def FirstOnlineTime(self):
14921
14755
  """首次上线时间
14922
- 注意:此字段可能返回 null,表示取不到有效值。
14923
14756
  注意:此字段可能返回 null,表示取不到有效值。
14924
14757
  :rtype: int
14925
14758
  """
@@ -14932,7 +14765,6 @@ class DeviceInfo(AbstractModel):
14932
14765
  @property
14933
14766
  def LoginTime(self):
14934
14767
  """最后一次上线时间
14935
- 注意:此字段可能返回 null,表示取不到有效值。
14936
14768
  :rtype: int
14937
14769
  """
14938
14770
  return self._LoginTime
@@ -14944,7 +14776,6 @@ class DeviceInfo(AbstractModel):
14944
14776
  @property
14945
14777
  def CreateTime(self):
14946
14778
  """设备创建时间
14947
- 注意:此字段可能返回 null,表示取不到有效值。
14948
14779
  :rtype: int
14949
14780
  """
14950
14781
  return self._CreateTime
@@ -14956,7 +14787,6 @@ class DeviceInfo(AbstractModel):
14956
14787
  @property
14957
14788
  def Version(self):
14958
14789
  """设备固件版本
14959
- 注意:此字段可能返回 null,表示取不到有效值。
14960
14790
  :rtype: str
14961
14791
  """
14962
14792
  return self._Version
@@ -14968,7 +14798,6 @@ class DeviceInfo(AbstractModel):
14968
14798
  @property
14969
14799
  def DeviceCert(self):
14970
14800
  """设备证书
14971
- 注意:此字段可能返回 null,表示取不到有效值。
14972
14801
  :rtype: str
14973
14802
  """
14974
14803
  return self._DeviceCert
@@ -14980,7 +14809,6 @@ class DeviceInfo(AbstractModel):
14980
14809
  @property
14981
14810
  def LogLevel(self):
14982
14811
  """日志级别
14983
- 注意:此字段可能返回 null,表示取不到有效值。
14984
14812
  :rtype: int
14985
14813
  """
14986
14814
  return self._LogLevel
@@ -14992,7 +14820,6 @@ class DeviceInfo(AbstractModel):
14992
14820
  @property
14993
14821
  def DevAddr(self):
14994
14822
  """LoRaWAN 设备地址
14995
- 注意:此字段可能返回 null,表示取不到有效值。
14996
14823
  :rtype: str
14997
14824
  """
14998
14825
  return self._DevAddr
@@ -15004,7 +14831,6 @@ class DeviceInfo(AbstractModel):
15004
14831
  @property
15005
14832
  def AppKey(self):
15006
14833
  """LoRaWAN 应用密钥
15007
- 注意:此字段可能返回 null,表示取不到有效值。
15008
14834
  :rtype: str
15009
14835
  """
15010
14836
  return self._AppKey
@@ -15016,7 +14842,6 @@ class DeviceInfo(AbstractModel):
15016
14842
  @property
15017
14843
  def DevEUI(self):
15018
14844
  """LoRaWAN 设备唯一标识
15019
- 注意:此字段可能返回 null,表示取不到有效值。
15020
14845
  :rtype: str
15021
14846
  """
15022
14847
  return self._DevEUI
@@ -15028,7 +14853,6 @@ class DeviceInfo(AbstractModel):
15028
14853
  @property
15029
14854
  def AppSKey(self):
15030
14855
  """LoRaWAN 应用会话密钥
15031
- 注意:此字段可能返回 null,表示取不到有效值。
15032
14856
  :rtype: str
15033
14857
  """
15034
14858
  return self._AppSKey
@@ -15040,7 +14864,6 @@ class DeviceInfo(AbstractModel):
15040
14864
  @property
15041
14865
  def NwkSKey(self):
15042
14866
  """LoRaWAN 网络会话密钥
15043
- 注意:此字段可能返回 null,表示取不到有效值。
15044
14867
  :rtype: str
15045
14868
  """
15046
14869
  return self._NwkSKey
@@ -15052,7 +14875,6 @@ class DeviceInfo(AbstractModel):
15052
14875
  @property
15053
14876
  def CreateUserId(self):
15054
14877
  """创建人Id
15055
- 注意:此字段可能返回 null,表示取不到有效值。
15056
14878
  :rtype: int
15057
14879
  """
15058
14880
  return self._CreateUserId
@@ -15064,7 +14886,6 @@ class DeviceInfo(AbstractModel):
15064
14886
  @property
15065
14887
  def CreatorNickName(self):
15066
14888
  """创建人昵称
15067
- 注意:此字段可能返回 null,表示取不到有效值。
15068
14889
  :rtype: str
15069
14890
  """
15070
14891
  return self._CreatorNickName
@@ -15076,7 +14897,6 @@ class DeviceInfo(AbstractModel):
15076
14897
  @property
15077
14898
  def EnableState(self):
15078
14899
  """启用/禁用状态
15079
- 注意:此字段可能返回 null,表示取不到有效值。
15080
14900
  :rtype: int
15081
14901
  """
15082
14902
  return self._EnableState
@@ -15088,7 +14908,6 @@ class DeviceInfo(AbstractModel):
15088
14908
  @property
15089
14909
  def ProductId(self):
15090
14910
  """产品ID
15091
- 注意:此字段可能返回 null,表示取不到有效值。
15092
14911
  :rtype: str
15093
14912
  """
15094
14913
  return self._ProductId
@@ -15100,7 +14919,6 @@ class DeviceInfo(AbstractModel):
15100
14919
  @property
15101
14920
  def ProductName(self):
15102
14921
  """产品名称
15103
- 注意:此字段可能返回 null,表示取不到有效值。
15104
14922
  :rtype: str
15105
14923
  """
15106
14924
  return self._ProductName
@@ -15112,7 +14930,6 @@ class DeviceInfo(AbstractModel):
15112
14930
  @property
15113
14931
  def DeviceType(self):
15114
14932
  """设备类型(设备、子设备、网关)
15115
- 注意:此字段可能返回 null,表示取不到有效值。
15116
14933
  :rtype: str
15117
14934
  """
15118
14935
  return self._DeviceType
@@ -15124,7 +14941,6 @@ class DeviceInfo(AbstractModel):
15124
14941
  @property
15125
14942
  def IsLora(self):
15126
14943
  """是否是 lora 设备
15127
- 注意:此字段可能返回 null,表示取不到有效值。
15128
14944
  :rtype: bool
15129
14945
  """
15130
14946
  return self._IsLora
@@ -15310,10 +15126,8 @@ class DeviceUser(AbstractModel):
15310
15126
  :param _Role: 用户角色 1所有者,0:其他分享者
15311
15127
  :type Role: int
15312
15128
  :param _FamilyId: 家庭ID,所有者带该参数
15313
- 注意:此字段可能返回 null,表示取不到有效值。
15314
15129
  :type FamilyId: str
15315
15130
  :param _FamilyName: 家庭名称,所有者带该参数
15316
- 注意:此字段可能返回 null,表示取不到有效值。
15317
15131
  :type FamilyName: str
15318
15132
  """
15319
15133
  self._UserId = None
@@ -15346,7 +15160,6 @@ class DeviceUser(AbstractModel):
15346
15160
  @property
15347
15161
  def FamilyId(self):
15348
15162
  """家庭ID,所有者带该参数
15349
- 注意:此字段可能返回 null,表示取不到有效值。
15350
15163
  :rtype: str
15351
15164
  """
15352
15165
  return self._FamilyId
@@ -15358,7 +15171,6 @@ class DeviceUser(AbstractModel):
15358
15171
  @property
15359
15172
  def FamilyName(self):
15360
15173
  """家庭名称,所有者带该参数
15361
- 注意:此字段可能返回 null,表示取不到有效值。
15362
15174
  :rtype: str
15363
15175
  """
15364
15176
  return self._FamilyName
@@ -15790,22 +15602,16 @@ class EventHistoryItem(AbstractModel):
15790
15602
  def __init__(self):
15791
15603
  r"""
15792
15604
  :param _TimeStamp: 事件的时间戳
15793
- 注意:此字段可能返回 null,表示取不到有效值。
15794
15605
  :type TimeStamp: int
15795
15606
  :param _ProductId: 事件的产品ID
15796
- 注意:此字段可能返回 null,表示取不到有效值。
15797
15607
  :type ProductId: str
15798
15608
  :param _DeviceName: 事件的设备名称
15799
- 注意:此字段可能返回 null,表示取不到有效值。
15800
15609
  :type DeviceName: str
15801
15610
  :param _EventId: 事件的标识符ID
15802
- 注意:此字段可能返回 null,表示取不到有效值。
15803
15611
  :type EventId: str
15804
15612
  :param _Type: 事件的类型
15805
- 注意:此字段可能返回 null,表示取不到有效值。
15806
15613
  :type Type: str
15807
15614
  :param _Data: 事件的数据
15808
- 注意:此字段可能返回 null,表示取不到有效值。
15809
15615
  :type Data: str
15810
15616
  """
15811
15617
  self._TimeStamp = None
@@ -15818,7 +15624,6 @@ class EventHistoryItem(AbstractModel):
15818
15624
  @property
15819
15625
  def TimeStamp(self):
15820
15626
  """事件的时间戳
15821
- 注意:此字段可能返回 null,表示取不到有效值。
15822
15627
  :rtype: int
15823
15628
  """
15824
15629
  return self._TimeStamp
@@ -15830,7 +15635,6 @@ class EventHistoryItem(AbstractModel):
15830
15635
  @property
15831
15636
  def ProductId(self):
15832
15637
  """事件的产品ID
15833
- 注意:此字段可能返回 null,表示取不到有效值。
15834
15638
  :rtype: str
15835
15639
  """
15836
15640
  return self._ProductId
@@ -15842,7 +15646,6 @@ class EventHistoryItem(AbstractModel):
15842
15646
  @property
15843
15647
  def DeviceName(self):
15844
15648
  """事件的设备名称
15845
- 注意:此字段可能返回 null,表示取不到有效值。
15846
15649
  :rtype: str
15847
15650
  """
15848
15651
  return self._DeviceName
@@ -15854,7 +15657,6 @@ class EventHistoryItem(AbstractModel):
15854
15657
  @property
15855
15658
  def EventId(self):
15856
15659
  """事件的标识符ID
15857
- 注意:此字段可能返回 null,表示取不到有效值。
15858
15660
  :rtype: str
15859
15661
  """
15860
15662
  return self._EventId
@@ -15866,7 +15668,6 @@ class EventHistoryItem(AbstractModel):
15866
15668
  @property
15867
15669
  def Type(self):
15868
15670
  """事件的类型
15869
- 注意:此字段可能返回 null,表示取不到有效值。
15870
15671
  :rtype: str
15871
15672
  """
15872
15673
  return self._Type
@@ -15878,7 +15679,6 @@ class EventHistoryItem(AbstractModel):
15878
15679
  @property
15879
15680
  def Data(self):
15880
15681
  """事件的数据
15881
- 注意:此字段可能返回 null,表示取不到有效值。
15882
15682
  :rtype: str
15883
15683
  """
15884
15684
  return self._Data
@@ -15919,18 +15719,14 @@ class FamilySubDevice(AbstractModel):
15919
15719
  :param _DeviceId: 设备ID
15920
15720
  :type DeviceId: str
15921
15721
  :param _AliasName: 设备别名
15922
- 注意:此字段可能返回 null,表示取不到有效值。
15923
15722
  :type AliasName: str
15924
15723
  :param _FamilyId: 设备绑定的家庭ID
15925
15724
  :type FamilyId: str
15926
15725
  :param _RoomId: 设备所在的房间ID,默认"0"
15927
- 注意:此字段可能返回 null,表示取不到有效值。
15928
15726
  :type RoomId: str
15929
15727
  :param _IconUrl: 图标
15930
- 注意:此字段可能返回 null,表示取不到有效值。
15931
15728
  :type IconUrl: str
15932
15729
  :param _IconUrlGrid: grid图标
15933
- 注意:此字段可能返回 null,表示取不到有效值。
15934
15730
  :type IconUrlGrid: str
15935
15731
  :param _CreateTime: 设备绑定时间戳
15936
15732
  :type CreateTime: int
@@ -15984,7 +15780,6 @@ class FamilySubDevice(AbstractModel):
15984
15780
  @property
15985
15781
  def AliasName(self):
15986
15782
  """设备别名
15987
- 注意:此字段可能返回 null,表示取不到有效值。
15988
15783
  :rtype: str
15989
15784
  """
15990
15785
  return self._AliasName
@@ -16007,7 +15802,6 @@ class FamilySubDevice(AbstractModel):
16007
15802
  @property
16008
15803
  def RoomId(self):
16009
15804
  """设备所在的房间ID,默认"0"
16010
- 注意:此字段可能返回 null,表示取不到有效值。
16011
15805
  :rtype: str
16012
15806
  """
16013
15807
  return self._RoomId
@@ -16019,7 +15813,6 @@ class FamilySubDevice(AbstractModel):
16019
15813
  @property
16020
15814
  def IconUrl(self):
16021
15815
  """图标
16022
- 注意:此字段可能返回 null,表示取不到有效值。
16023
15816
  :rtype: str
16024
15817
  """
16025
15818
  return self._IconUrl
@@ -16031,7 +15824,6 @@ class FamilySubDevice(AbstractModel):
16031
15824
  @property
16032
15825
  def IconUrlGrid(self):
16033
15826
  """grid图标
16034
- 注意:此字段可能返回 null,表示取不到有效值。
16035
15827
  :rtype: str
16036
15828
  """
16037
15829
  return self._IconUrlGrid
@@ -16454,28 +16246,20 @@ class FirmwareInfo(AbstractModel):
16454
16246
  :param _CreateTime: 固件创建时间
16455
16247
  :type CreateTime: int
16456
16248
  :param _ProductName: 产品名称
16457
- 注意:此字段可能返回 null,表示取不到有效值。
16458
16249
  :type ProductName: str
16459
16250
  :param _Name: 固件名称
16460
- 注意:此字段可能返回 null,表示取不到有效值。
16461
16251
  :type Name: str
16462
16252
  :param _Description: 固件描述
16463
- 注意:此字段可能返回 null,表示取不到有效值。
16464
16253
  :type Description: str
16465
16254
  :param _ProductId: 产品ID
16466
- 注意:此字段可能返回 null,表示取不到有效值。
16467
16255
  :type ProductId: str
16468
16256
  :param _FwType: 固件升级模块
16469
- 注意:此字段可能返回 null,表示取不到有效值。
16470
16257
  :type FwType: str
16471
16258
  :param _CreateUserId: 创建者子 uin
16472
- 注意:此字段可能返回 null,表示取不到有效值。
16473
16259
  :type CreateUserId: int
16474
16260
  :param _CreatorNickName: 创建者昵称
16475
- 注意:此字段可能返回 null,表示取不到有效值。
16476
16261
  :type CreatorNickName: str
16477
16262
  :param _UserDefined: 固件用户自定义配置信息
16478
- 注意:此字段可能返回 null,表示取不到有效值。
16479
16263
  :type UserDefined: str
16480
16264
  """
16481
16265
  self._Version = None
@@ -16526,7 +16310,6 @@ class FirmwareInfo(AbstractModel):
16526
16310
  @property
16527
16311
  def ProductName(self):
16528
16312
  """产品名称
16529
- 注意:此字段可能返回 null,表示取不到有效值。
16530
16313
  :rtype: str
16531
16314
  """
16532
16315
  return self._ProductName
@@ -16538,7 +16321,6 @@ class FirmwareInfo(AbstractModel):
16538
16321
  @property
16539
16322
  def Name(self):
16540
16323
  """固件名称
16541
- 注意:此字段可能返回 null,表示取不到有效值。
16542
16324
  :rtype: str
16543
16325
  """
16544
16326
  return self._Name
@@ -16550,7 +16332,6 @@ class FirmwareInfo(AbstractModel):
16550
16332
  @property
16551
16333
  def Description(self):
16552
16334
  """固件描述
16553
- 注意:此字段可能返回 null,表示取不到有效值。
16554
16335
  :rtype: str
16555
16336
  """
16556
16337
  return self._Description
@@ -16562,7 +16343,6 @@ class FirmwareInfo(AbstractModel):
16562
16343
  @property
16563
16344
  def ProductId(self):
16564
16345
  """产品ID
16565
- 注意:此字段可能返回 null,表示取不到有效值。
16566
16346
  :rtype: str
16567
16347
  """
16568
16348
  return self._ProductId
@@ -16574,7 +16354,6 @@ class FirmwareInfo(AbstractModel):
16574
16354
  @property
16575
16355
  def FwType(self):
16576
16356
  """固件升级模块
16577
- 注意:此字段可能返回 null,表示取不到有效值。
16578
16357
  :rtype: str
16579
16358
  """
16580
16359
  return self._FwType
@@ -16586,7 +16365,6 @@ class FirmwareInfo(AbstractModel):
16586
16365
  @property
16587
16366
  def CreateUserId(self):
16588
16367
  """创建者子 uin
16589
- 注意:此字段可能返回 null,表示取不到有效值。
16590
16368
  :rtype: int
16591
16369
  """
16592
16370
  return self._CreateUserId
@@ -16598,7 +16376,6 @@ class FirmwareInfo(AbstractModel):
16598
16376
  @property
16599
16377
  def CreatorNickName(self):
16600
16378
  """创建者昵称
16601
- 注意:此字段可能返回 null,表示取不到有效值。
16602
16379
  :rtype: str
16603
16380
  """
16604
16381
  return self._CreatorNickName
@@ -16610,7 +16387,6 @@ class FirmwareInfo(AbstractModel):
16610
16387
  @property
16611
16388
  def UserDefined(self):
16612
16389
  """固件用户自定义配置信息
16613
- 注意:此字段可能返回 null,表示取不到有效值。
16614
16390
  :rtype: str
16615
16391
  """
16616
16392
  return self._UserDefined
@@ -17494,10 +17270,8 @@ class GetDeviceListResponse(AbstractModel):
17494
17270
  def __init__(self):
17495
17271
  r"""
17496
17272
  :param _Devices: 返回的设备列表, 注意列表设备的 DevicePsk 为空, 要获取设备的 DevicePsk 请使用 DescribeDevice
17497
- 注意:此字段可能返回 null,表示取不到有效值。
17498
17273
  :type Devices: list of DeviceInfo
17499
17274
  :param _Total: 产品下的设备总数
17500
- 注意:此字段可能返回 null,表示取不到有效值。
17501
17275
  :type Total: int
17502
17276
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17503
17277
  :type RequestId: str
@@ -17509,7 +17283,6 @@ class GetDeviceListResponse(AbstractModel):
17509
17283
  @property
17510
17284
  def Devices(self):
17511
17285
  """返回的设备列表, 注意列表设备的 DevicePsk 为空, 要获取设备的 DevicePsk 请使用 DescribeDevice
17512
- 注意:此字段可能返回 null,表示取不到有效值。
17513
17286
  :rtype: list of DeviceInfo
17514
17287
  """
17515
17288
  return self._Devices
@@ -17521,7 +17294,6 @@ class GetDeviceListResponse(AbstractModel):
17521
17294
  @property
17522
17295
  def Total(self):
17523
17296
  """产品下的设备总数
17524
- 注意:此字段可能返回 null,表示取不到有效值。
17525
17297
  :rtype: int
17526
17298
  """
17527
17299
  return self._Total
@@ -17955,7 +17727,6 @@ class GetFamilyDeviceUserListResponse(AbstractModel):
17955
17727
  def __init__(self):
17956
17728
  r"""
17957
17729
  :param _UserList: 设备的用户列表
17958
- 注意:此字段可能返回 null,表示取不到有效值。
17959
17730
  :type UserList: list of DeviceUser
17960
17731
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17961
17732
  :type RequestId: str
@@ -17966,7 +17737,6 @@ class GetFamilyDeviceUserListResponse(AbstractModel):
17966
17737
  @property
17967
17738
  def UserList(self):
17968
17739
  """设备的用户列表
17969
- 注意:此字段可能返回 null,表示取不到有效值。
17970
17740
  :rtype: list of DeviceUser
17971
17741
  """
17972
17742
  return self._UserList
@@ -18086,10 +17856,8 @@ class GetGatewaySubDeviceListResponse(AbstractModel):
18086
17856
  def __init__(self):
18087
17857
  r"""
18088
17858
  :param _Total: 设备的总数
18089
- 注意:此字段可能返回 null,表示取不到有效值。
18090
17859
  :type Total: int
18091
17860
  :param _DeviceList: 设备列表
18092
- 注意:此字段可能返回 null,表示取不到有效值。
18093
17861
  :type DeviceList: :class:`tencentcloud.iotexplorer.v20190423.models.FamilySubDevice`
18094
17862
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18095
17863
  :type RequestId: str
@@ -18101,7 +17869,6 @@ class GetGatewaySubDeviceListResponse(AbstractModel):
18101
17869
  @property
18102
17870
  def Total(self):
18103
17871
  """设备的总数
18104
- 注意:此字段可能返回 null,表示取不到有效值。
18105
17872
  :rtype: int
18106
17873
  """
18107
17874
  return self._Total
@@ -18113,7 +17880,6 @@ class GetGatewaySubDeviceListResponse(AbstractModel):
18113
17880
  @property
18114
17881
  def DeviceList(self):
18115
17882
  """设备列表
18116
- 注意:此字段可能返回 null,表示取不到有效值。
18117
17883
  :rtype: :class:`tencentcloud.iotexplorer.v20190423.models.FamilySubDevice`
18118
17884
  """
18119
17885
  return self._DeviceList
@@ -18218,7 +17984,6 @@ class GetLoRaGatewayListResponse(AbstractModel):
18218
17984
  :param _Total: 返回总数
18219
17985
  :type Total: int
18220
17986
  :param _Gateways: 返回详情项
18221
- 注意:此字段可能返回 null,表示取不到有效值。
18222
17987
  :type Gateways: list of LoRaGatewayItem
18223
17988
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18224
17989
  :type RequestId: str
@@ -18241,7 +18006,6 @@ class GetLoRaGatewayListResponse(AbstractModel):
18241
18006
  @property
18242
18007
  def Gateways(self):
18243
18008
  """返回详情项
18244
- 注意:此字段可能返回 null,表示取不到有效值。
18245
18009
  :rtype: list of LoRaGatewayItem
18246
18010
  """
18247
18011
  return self._Gateways
@@ -18347,10 +18111,8 @@ class GetPositionSpaceListResponse(AbstractModel):
18347
18111
  def __init__(self):
18348
18112
  r"""
18349
18113
  :param _List: 位置空间列表
18350
- 注意:此字段可能返回 null,表示取不到有效值。
18351
18114
  :type List: list of PositionSpaceInfo
18352
18115
  :param _Total: 位置空间数量
18353
- 注意:此字段可能返回 null,表示取不到有效值。
18354
18116
  :type Total: int
18355
18117
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18356
18118
  :type RequestId: str
@@ -18362,7 +18124,6 @@ class GetPositionSpaceListResponse(AbstractModel):
18362
18124
  @property
18363
18125
  def List(self):
18364
18126
  """位置空间列表
18365
- 注意:此字段可能返回 null,表示取不到有效值。
18366
18127
  :rtype: list of PositionSpaceInfo
18367
18128
  """
18368
18129
  return self._List
@@ -18374,7 +18135,6 @@ class GetPositionSpaceListResponse(AbstractModel):
18374
18135
  @property
18375
18136
  def Total(self):
18376
18137
  """位置空间数量
18377
- 注意:此字段可能返回 null,表示取不到有效值。
18378
18138
  :rtype: int
18379
18139
  """
18380
18140
  return self._Total
@@ -18540,10 +18300,8 @@ class GetProjectListResponse(AbstractModel):
18540
18300
  def __init__(self):
18541
18301
  r"""
18542
18302
  :param _Projects: 项目列表
18543
- 注意:此字段可能返回 null,表示取不到有效值。
18544
18303
  :type Projects: list of ProjectEntryEx
18545
18304
  :param _Total: 列表项个数
18546
- 注意:此字段可能返回 null,表示取不到有效值。
18547
18305
  :type Total: int
18548
18306
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18549
18307
  :type RequestId: str
@@ -18555,7 +18313,6 @@ class GetProjectListResponse(AbstractModel):
18555
18313
  @property
18556
18314
  def Projects(self):
18557
18315
  """项目列表
18558
- 注意:此字段可能返回 null,表示取不到有效值。
18559
18316
  :rtype: list of ProjectEntryEx
18560
18317
  """
18561
18318
  return self._Projects
@@ -18567,7 +18324,6 @@ class GetProjectListResponse(AbstractModel):
18567
18324
  @property
18568
18325
  def Total(self):
18569
18326
  """列表项个数
18570
- 注意:此字段可能返回 null,表示取不到有效值。
18571
18327
  :rtype: int
18572
18328
  """
18573
18329
  return self._Total
@@ -19069,7 +18825,6 @@ class GetWechatDeviceTicketResponse(AbstractModel):
19069
18825
  def __init__(self):
19070
18826
  r"""
19071
18827
  :param _WXDeviceInfo: 微信设备信息
19072
- 注意:此字段可能返回 null,表示取不到有效值。
19073
18828
  :type WXDeviceInfo: :class:`tencentcloud.iotexplorer.v20190423.models.WXDeviceInfo`
19074
18829
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
19075
18830
  :type RequestId: str
@@ -19080,7 +18835,6 @@ class GetWechatDeviceTicketResponse(AbstractModel):
19080
18835
  @property
19081
18836
  def WXDeviceInfo(self):
19082
18837
  """微信设备信息
19083
- 注意:此字段可能返回 null,表示取不到有效值。
19084
18838
  :rtype: :class:`tencentcloud.iotexplorer.v20190423.models.WXDeviceInfo`
19085
18839
  """
19086
18840
  return self._WXDeviceInfo
@@ -19248,40 +19002,28 @@ class InstanceDetail(AbstractModel):
19248
19002
  :param _ExpireTime: 过期时间,公共实例过期时间 0001-01-01T00:00:00Z,公共实例是永久有效
19249
19003
  :type ExpireTime: str
19250
19004
  :param _TotalDevice: 总设备数
19251
- 注意:此字段可能返回 null,表示取不到有效值。
19252
19005
  :type TotalDevice: int
19253
19006
  :param _ActivateDevice: 激活设备数
19254
- 注意:此字段可能返回 null,表示取不到有效值。
19255
19007
  :type ActivateDevice: int
19256
19008
  :param _Description: 备注
19257
- 注意:此字段可能返回 null,表示取不到有效值。
19258
19009
  :type Description: str
19259
19010
  :param _Status: 实例状态
19260
- 注意:此字段可能返回 null,表示取不到有效值。
19261
19011
  :type Status: int
19262
19012
  :param _UpDownTPS: 消息上下行配置TPS
19263
- 注意:此字段可能返回 null,表示取不到有效值。
19264
19013
  :type UpDownTPS: int
19265
19014
  :param _UpDownCurrentTPS: 当前消息上下行TPS
19266
- 注意:此字段可能返回 null,表示取不到有效值。
19267
19015
  :type UpDownCurrentTPS: int
19268
19016
  :param _ForwardTPS: 消息转发配置TPS
19269
- 注意:此字段可能返回 null,表示取不到有效值。
19270
19017
  :type ForwardTPS: int
19271
19018
  :param _ForwardCurrentTPS: 消息转发当前TPS
19272
- 注意:此字段可能返回 null,表示取不到有效值。
19273
19019
  :type ForwardCurrentTPS: int
19274
19020
  :param _CellNum: 实例单元数
19275
- 注意:此字段可能返回 null,表示取不到有效值。
19276
19021
  :type CellNum: int
19277
19022
  :param _BillingTag: 实例Tag,企业实例必传
19278
- 注意:此字段可能返回 null,表示取不到有效值。
19279
19023
  :type BillingTag: str
19280
19024
  :param _EverydayFreeMessageCount: 每日消息数
19281
- 注意:此字段可能返回 null,表示取不到有效值。
19282
19025
  :type EverydayFreeMessageCount: int
19283
19026
  :param _MaxDeviceOnlineCount: 最大在线设备数
19284
- 注意:此字段可能返回 null,表示取不到有效值。
19285
19027
  :type MaxDeviceOnlineCount: int
19286
19028
  """
19287
19029
  self._InstanceId = None
@@ -19432,7 +19174,6 @@ class InstanceDetail(AbstractModel):
19432
19174
  @property
19433
19175
  def TotalDevice(self):
19434
19176
  """总设备数
19435
- 注意:此字段可能返回 null,表示取不到有效值。
19436
19177
  :rtype: int
19437
19178
  """
19438
19179
  return self._TotalDevice
@@ -19444,7 +19185,6 @@ class InstanceDetail(AbstractModel):
19444
19185
  @property
19445
19186
  def ActivateDevice(self):
19446
19187
  """激活设备数
19447
- 注意:此字段可能返回 null,表示取不到有效值。
19448
19188
  :rtype: int
19449
19189
  """
19450
19190
  return self._ActivateDevice
@@ -19456,7 +19196,6 @@ class InstanceDetail(AbstractModel):
19456
19196
  @property
19457
19197
  def Description(self):
19458
19198
  """备注
19459
- 注意:此字段可能返回 null,表示取不到有效值。
19460
19199
  :rtype: str
19461
19200
  """
19462
19201
  return self._Description
@@ -19468,7 +19207,6 @@ class InstanceDetail(AbstractModel):
19468
19207
  @property
19469
19208
  def Status(self):
19470
19209
  """实例状态
19471
- 注意:此字段可能返回 null,表示取不到有效值。
19472
19210
  :rtype: int
19473
19211
  """
19474
19212
  return self._Status
@@ -19480,7 +19218,6 @@ class InstanceDetail(AbstractModel):
19480
19218
  @property
19481
19219
  def UpDownTPS(self):
19482
19220
  """消息上下行配置TPS
19483
- 注意:此字段可能返回 null,表示取不到有效值。
19484
19221
  :rtype: int
19485
19222
  """
19486
19223
  return self._UpDownTPS
@@ -19492,7 +19229,6 @@ class InstanceDetail(AbstractModel):
19492
19229
  @property
19493
19230
  def UpDownCurrentTPS(self):
19494
19231
  """当前消息上下行TPS
19495
- 注意:此字段可能返回 null,表示取不到有效值。
19496
19232
  :rtype: int
19497
19233
  """
19498
19234
  return self._UpDownCurrentTPS
@@ -19504,7 +19240,6 @@ class InstanceDetail(AbstractModel):
19504
19240
  @property
19505
19241
  def ForwardTPS(self):
19506
19242
  """消息转发配置TPS
19507
- 注意:此字段可能返回 null,表示取不到有效值。
19508
19243
  :rtype: int
19509
19244
  """
19510
19245
  return self._ForwardTPS
@@ -19516,7 +19251,6 @@ class InstanceDetail(AbstractModel):
19516
19251
  @property
19517
19252
  def ForwardCurrentTPS(self):
19518
19253
  """消息转发当前TPS
19519
- 注意:此字段可能返回 null,表示取不到有效值。
19520
19254
  :rtype: int
19521
19255
  """
19522
19256
  return self._ForwardCurrentTPS
@@ -19528,7 +19262,6 @@ class InstanceDetail(AbstractModel):
19528
19262
  @property
19529
19263
  def CellNum(self):
19530
19264
  """实例单元数
19531
- 注意:此字段可能返回 null,表示取不到有效值。
19532
19265
  :rtype: int
19533
19266
  """
19534
19267
  return self._CellNum
@@ -19540,7 +19273,6 @@ class InstanceDetail(AbstractModel):
19540
19273
  @property
19541
19274
  def BillingTag(self):
19542
19275
  """实例Tag,企业实例必传
19543
- 注意:此字段可能返回 null,表示取不到有效值。
19544
19276
  :rtype: str
19545
19277
  """
19546
19278
  return self._BillingTag
@@ -19552,7 +19284,6 @@ class InstanceDetail(AbstractModel):
19552
19284
  @property
19553
19285
  def EverydayFreeMessageCount(self):
19554
19286
  """每日消息数
19555
- 注意:此字段可能返回 null,表示取不到有效值。
19556
19287
  :rtype: int
19557
19288
  """
19558
19289
  return self._EverydayFreeMessageCount
@@ -19564,7 +19295,6 @@ class InstanceDetail(AbstractModel):
19564
19295
  @property
19565
19296
  def MaxDeviceOnlineCount(self):
19566
19297
  """最大在线设备数
19567
- 注意:此字段可能返回 null,表示取不到有效值。
19568
19298
  :rtype: int
19569
19299
  """
19570
19300
  return self._MaxDeviceOnlineCount
@@ -20106,22 +19836,16 @@ class IotApplication(AbstractModel):
20106
19836
  :param _TPNSAndroidRegion: TPNS服务Android应用所属地域,详细说明参见 ModifyApplication 同名入参。
20107
19837
  :type TPNSAndroidRegion: str
20108
19838
  :param _SelfSmsAppId: 自主短信配置APPID
20109
- 注意:此字段可能返回 null,表示取不到有效值。
20110
19839
  :type SelfSmsAppId: str
20111
19840
  :param _SelfSmsAppKey: 自主短信配置APPKey
20112
- 注意:此字段可能返回 null,表示取不到有效值。
20113
19841
  :type SelfSmsAppKey: str
20114
19842
  :param _SelfSmsSign: 自主短信配置签名
20115
- 注意:此字段可能返回 null,表示取不到有效值。
20116
19843
  :type SelfSmsSign: str
20117
19844
  :param _SelfSmsTemplateId: 自主短信配置模板ID
20118
- 注意:此字段可能返回 null,表示取不到有效值。
20119
19845
  :type SelfSmsTemplateId: int
20120
19846
  :param _WechatNotifyStatus: 第三方小程序强提醒开关 0:关闭;1:开启
20121
- 注意:此字段可能返回 null,表示取不到有效值。
20122
19847
  :type WechatNotifyStatus: int
20123
19848
  :param _InterconnectionProducts: 互联互通产品ID列表
20124
- 注意:此字段可能返回 null,表示取不到有效值。
20125
19849
  :type InterconnectionProducts: str
20126
19850
  """
20127
19851
  self._IotAppID = None
@@ -20410,7 +20134,6 @@ class IotApplication(AbstractModel):
20410
20134
  @property
20411
20135
  def SelfSmsAppId(self):
20412
20136
  """自主短信配置APPID
20413
- 注意:此字段可能返回 null,表示取不到有效值。
20414
20137
  :rtype: str
20415
20138
  """
20416
20139
  return self._SelfSmsAppId
@@ -20422,7 +20145,6 @@ class IotApplication(AbstractModel):
20422
20145
  @property
20423
20146
  def SelfSmsAppKey(self):
20424
20147
  """自主短信配置APPKey
20425
- 注意:此字段可能返回 null,表示取不到有效值。
20426
20148
  :rtype: str
20427
20149
  """
20428
20150
  return self._SelfSmsAppKey
@@ -20434,7 +20156,6 @@ class IotApplication(AbstractModel):
20434
20156
  @property
20435
20157
  def SelfSmsSign(self):
20436
20158
  """自主短信配置签名
20437
- 注意:此字段可能返回 null,表示取不到有效值。
20438
20159
  :rtype: str
20439
20160
  """
20440
20161
  return self._SelfSmsSign
@@ -20446,7 +20167,6 @@ class IotApplication(AbstractModel):
20446
20167
  @property
20447
20168
  def SelfSmsTemplateId(self):
20448
20169
  """自主短信配置模板ID
20449
- 注意:此字段可能返回 null,表示取不到有效值。
20450
20170
  :rtype: int
20451
20171
  """
20452
20172
  return self._SelfSmsTemplateId
@@ -20458,7 +20178,6 @@ class IotApplication(AbstractModel):
20458
20178
  @property
20459
20179
  def WechatNotifyStatus(self):
20460
20180
  """第三方小程序强提醒开关 0:关闭;1:开启
20461
- 注意:此字段可能返回 null,表示取不到有效值。
20462
20181
  :rtype: int
20463
20182
  """
20464
20183
  return self._WechatNotifyStatus
@@ -20470,7 +20189,6 @@ class IotApplication(AbstractModel):
20470
20189
  @property
20471
20190
  def InterconnectionProducts(self):
20472
20191
  """互联互通产品ID列表
20473
- 注意:此字段可能返回 null,表示取不到有效值。
20474
20192
  :rtype: str
20475
20193
  """
20476
20194
  return self._InterconnectionProducts
@@ -20534,7 +20252,6 @@ class LicenseServiceNumInfo(AbstractModel):
20534
20252
  :param _UsedNum: 已使用授权数
20535
20253
  :type UsedNum: int
20536
20254
  :param _TWeCallLicense: TWeCall激活码
20537
- 注意:此字段可能返回 null,表示取不到有效值。
20538
20255
  :type TWeCallLicense: list of TWeCallLicenseInfo
20539
20256
  """
20540
20257
  self._LicenseType = None
@@ -20578,7 +20295,6 @@ class LicenseServiceNumInfo(AbstractModel):
20578
20295
  @property
20579
20296
  def TWeCallLicense(self):
20580
20297
  """TWeCall激活码
20581
- 注意:此字段可能返回 null,表示取不到有效值。
20582
20298
  :rtype: list of TWeCallLicenseInfo
20583
20299
  """
20584
20300
  return self._TWeCallLicense
@@ -20757,16 +20473,12 @@ class ListEventHistoryResponse(AbstractModel):
20757
20473
  def __init__(self):
20758
20474
  r"""
20759
20475
  :param _Context: 搜索上下文, 用作查询游标
20760
- 注意:此字段可能返回 null,表示取不到有效值。
20761
20476
  :type Context: str
20762
20477
  :param _Total: 搜索结果数量
20763
- 注意:此字段可能返回 null,表示取不到有效值。
20764
20478
  :type Total: int
20765
20479
  :param _Listover: 搜索结果是否已经结束
20766
- 注意:此字段可能返回 null,表示取不到有效值。
20767
20480
  :type Listover: bool
20768
20481
  :param _EventHistory: 搜集结果集
20769
- 注意:此字段可能返回 null,表示取不到有效值。
20770
20482
  :type EventHistory: list of EventHistoryItem
20771
20483
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20772
20484
  :type RequestId: str
@@ -20780,7 +20492,6 @@ class ListEventHistoryResponse(AbstractModel):
20780
20492
  @property
20781
20493
  def Context(self):
20782
20494
  """搜索上下文, 用作查询游标
20783
- 注意:此字段可能返回 null,表示取不到有效值。
20784
20495
  :rtype: str
20785
20496
  """
20786
20497
  return self._Context
@@ -20792,7 +20503,6 @@ class ListEventHistoryResponse(AbstractModel):
20792
20503
  @property
20793
20504
  def Total(self):
20794
20505
  """搜索结果数量
20795
- 注意:此字段可能返回 null,表示取不到有效值。
20796
20506
  :rtype: int
20797
20507
  """
20798
20508
  return self._Total
@@ -20804,7 +20514,6 @@ class ListEventHistoryResponse(AbstractModel):
20804
20514
  @property
20805
20515
  def Listover(self):
20806
20516
  """搜索结果是否已经结束
20807
- 注意:此字段可能返回 null,表示取不到有效值。
20808
20517
  :rtype: bool
20809
20518
  """
20810
20519
  return self._Listover
@@ -20816,7 +20525,6 @@ class ListEventHistoryResponse(AbstractModel):
20816
20525
  @property
20817
20526
  def EventHistory(self):
20818
20527
  """搜集结果集
20819
- 注意:此字段可能返回 null,表示取不到有效值。
20820
20528
  :rtype: list of EventHistoryItem
20821
20529
  """
20822
20530
  return self._EventHistory
@@ -23602,21 +23310,16 @@ class PackageInfo(AbstractModel):
23602
23310
  :param _CSExpiredTime: 云存套餐过期时间
23603
23311
  :type CSExpiredTime: int
23604
23312
  :param _CreatedAt: 云存套餐创建时间
23605
- 注意:此字段可能返回 null,表示取不到有效值。
23606
23313
  :type CreatedAt: int
23607
23314
  :param _UpdatedAt: 云存套餐更新时间
23608
- 注意:此字段可能返回 null,表示取不到有效值。
23609
23315
  :type UpdatedAt: int
23610
23316
  :param _PackageId: 套餐id
23611
- 注意:此字段可能返回 null,表示取不到有效值。
23612
23317
  :type PackageId: str
23613
23318
  :param _OrderId: 订单id
23614
- 注意:此字段可能返回 null,表示取不到有效值。
23615
23319
  :type OrderId: str
23616
23320
  :param _ChannelId: 通道id
23617
23321
  :type ChannelId: int
23618
23322
  :param _CSUserId: 用户id
23619
- 注意:此字段可能返回 null,表示取不到有效值。
23620
23323
  :type CSUserId: str
23621
23324
  """
23622
23325
  self._Status = None
@@ -23678,7 +23381,6 @@ class PackageInfo(AbstractModel):
23678
23381
  @property
23679
23382
  def CreatedAt(self):
23680
23383
  """云存套餐创建时间
23681
- 注意:此字段可能返回 null,表示取不到有效值。
23682
23384
  :rtype: int
23683
23385
  """
23684
23386
  return self._CreatedAt
@@ -23690,7 +23392,6 @@ class PackageInfo(AbstractModel):
23690
23392
  @property
23691
23393
  def UpdatedAt(self):
23692
23394
  """云存套餐更新时间
23693
- 注意:此字段可能返回 null,表示取不到有效值。
23694
23395
  :rtype: int
23695
23396
  """
23696
23397
  return self._UpdatedAt
@@ -23702,7 +23403,6 @@ class PackageInfo(AbstractModel):
23702
23403
  @property
23703
23404
  def PackageId(self):
23704
23405
  """套餐id
23705
- 注意:此字段可能返回 null,表示取不到有效值。
23706
23406
  :rtype: str
23707
23407
  """
23708
23408
  return self._PackageId
@@ -23714,7 +23414,6 @@ class PackageInfo(AbstractModel):
23714
23414
  @property
23715
23415
  def OrderId(self):
23716
23416
  """订单id
23717
- 注意:此字段可能返回 null,表示取不到有效值。
23718
23417
  :rtype: str
23719
23418
  """
23720
23419
  return self._OrderId
@@ -23737,7 +23436,6 @@ class PackageInfo(AbstractModel):
23737
23436
  @property
23738
23437
  def CSUserId(self):
23739
23438
  """用户id
23740
- 注意:此字段可能返回 null,表示取不到有效值。
23741
23439
  :rtype: str
23742
23440
  """
23743
23441
  return self._CSUserId
@@ -24015,10 +23713,8 @@ class PositionItem(AbstractModel):
24015
23713
  :param _Latitude: 位置点的纬度
24016
23714
  :type Latitude: float
24017
23715
  :param _LocationType: 位置点的定位类型
24018
- 注意:此字段可能返回 null,表示取不到有效值。
24019
23716
  :type LocationType: str
24020
23717
  :param _Accuracy: 位置点的精度预估,单位为米
24021
- 注意:此字段可能返回 null,表示取不到有效值。
24022
23718
  :type Accuracy: float
24023
23719
  """
24024
23720
  self._CreateTime = None
@@ -24063,7 +23759,6 @@ class PositionItem(AbstractModel):
24063
23759
  @property
24064
23760
  def LocationType(self):
24065
23761
  """位置点的定位类型
24066
- 注意:此字段可能返回 null,表示取不到有效值。
24067
23762
  :rtype: str
24068
23763
  """
24069
23764
  return self._LocationType
@@ -24075,7 +23770,6 @@ class PositionItem(AbstractModel):
24075
23770
  @property
24076
23771
  def Accuracy(self):
24077
23772
  """位置点的精度预估,单位为米
24078
- 注意:此字段可能返回 null,表示取不到有效值。
24079
23773
  :rtype: float
24080
23774
  """
24081
23775
  return self._Accuracy
@@ -24117,7 +23811,6 @@ class PositionSpaceInfo(AbstractModel):
24117
23811
  :param _AuthorizeType: 授权类型
24118
23812
  :type AuthorizeType: int
24119
23813
  :param _Description: 描述备注
24120
- 注意:此字段可能返回 null,表示取不到有效值。
24121
23814
  :type Description: str
24122
23815
  :param _ProductIdList: 产品列表
24123
23816
  :type ProductIdList: list of str
@@ -24188,7 +23881,6 @@ class PositionSpaceInfo(AbstractModel):
24188
23881
  @property
24189
23882
  def Description(self):
24190
23883
  """描述备注
24191
- 注意:此字段可能返回 null,表示取不到有效值。
24192
23884
  :rtype: str
24193
23885
  """
24194
23886
  return self._Description
@@ -24382,28 +24074,20 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24382
24074
  :param _ModuleId: 产品ModuleId
24383
24075
  :type ModuleId: int
24384
24076
  :param _EnableProductScript: 是否使用脚本进行二进制转json功能 可以取值 true / false
24385
- 注意:此字段可能返回 null,表示取不到有效值。
24386
24077
  :type EnableProductScript: str
24387
24078
  :param _CreateUserId: 创建人 UinId
24388
- 注意:此字段可能返回 null,表示取不到有效值。
24389
24079
  :type CreateUserId: int
24390
24080
  :param _CreatorNickName: 创建者昵称
24391
- 注意:此字段可能返回 null,表示取不到有效值。
24392
24081
  :type CreatorNickName: str
24393
24082
  :param _BindStrategy: 绑定策略(1:强踢;2:非强踢;0:表示无意义)
24394
- 注意:此字段可能返回 null,表示取不到有效值。
24395
24083
  :type BindStrategy: int
24396
24084
  :param _DeviceCount: 设备数量
24397
- 注意:此字段可能返回 null,表示取不到有效值。
24398
24085
  :type DeviceCount: int
24399
24086
  :param _Rate: 平均传输速率
24400
- 注意:此字段可能返回 null,表示取不到有效值。
24401
24087
  :type Rate: str
24402
24088
  :param _Period: 有效期
24403
- 注意:此字段可能返回 null,表示取不到有效值。
24404
24089
  :type Period: str
24405
24090
  :param _IsInterconnection: 互联互通标识
24406
- 注意:此字段可能返回 null,表示取不到有效值。
24407
24091
  :type IsInterconnection: int
24408
24092
  """
24409
24093
  self._ProductId = None
@@ -24587,7 +24271,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24587
24271
  @property
24588
24272
  def EnableProductScript(self):
24589
24273
  """是否使用脚本进行二进制转json功能 可以取值 true / false
24590
- 注意:此字段可能返回 null,表示取不到有效值。
24591
24274
  :rtype: str
24592
24275
  """
24593
24276
  return self._EnableProductScript
@@ -24599,7 +24282,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24599
24282
  @property
24600
24283
  def CreateUserId(self):
24601
24284
  """创建人 UinId
24602
- 注意:此字段可能返回 null,表示取不到有效值。
24603
24285
  :rtype: int
24604
24286
  """
24605
24287
  return self._CreateUserId
@@ -24611,7 +24293,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24611
24293
  @property
24612
24294
  def CreatorNickName(self):
24613
24295
  """创建者昵称
24614
- 注意:此字段可能返回 null,表示取不到有效值。
24615
24296
  :rtype: str
24616
24297
  """
24617
24298
  return self._CreatorNickName
@@ -24623,7 +24304,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24623
24304
  @property
24624
24305
  def BindStrategy(self):
24625
24306
  """绑定策略(1:强踢;2:非强踢;0:表示无意义)
24626
- 注意:此字段可能返回 null,表示取不到有效值。
24627
24307
  :rtype: int
24628
24308
  """
24629
24309
  return self._BindStrategy
@@ -24635,7 +24315,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24635
24315
  @property
24636
24316
  def DeviceCount(self):
24637
24317
  """设备数量
24638
- 注意:此字段可能返回 null,表示取不到有效值。
24639
24318
  :rtype: int
24640
24319
  """
24641
24320
  return self._DeviceCount
@@ -24647,7 +24326,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24647
24326
  @property
24648
24327
  def Rate(self):
24649
24328
  """平均传输速率
24650
- 注意:此字段可能返回 null,表示取不到有效值。
24651
24329
  :rtype: str
24652
24330
  """
24653
24331
  return self._Rate
@@ -24659,7 +24337,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24659
24337
  @property
24660
24338
  def Period(self):
24661
24339
  """有效期
24662
- 注意:此字段可能返回 null,表示取不到有效值。
24663
24340
  :rtype: str
24664
24341
  """
24665
24342
  return self._Period
@@ -24671,7 +24348,6 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
24671
24348
  @property
24672
24349
  def IsInterconnection(self):
24673
24350
  """互联互通标识
24674
- 注意:此字段可能返回 null,表示取不到有效值。
24675
24351
  :rtype: int
24676
24352
  """
24677
24353
  return self._IsInterconnection
@@ -24730,10 +24406,8 @@ class ProductModelDefinition(AbstractModel):
24730
24406
  :param _CreateTime: 创建时间,秒级时间戳
24731
24407
  :type CreateTime: int
24732
24408
  :param _CategoryModel: 产品所属分类的模型快照(产品创建时刻的)
24733
- 注意:此字段可能返回 null,表示取不到有效值。
24734
24409
  :type CategoryModel: str
24735
24410
  :param _NetTypeModel: 产品的连接类型的模型
24736
- 注意:此字段可能返回 null,表示取不到有效值。
24737
24411
  :type NetTypeModel: str
24738
24412
  """
24739
24413
  self._ProductId = None
@@ -24790,7 +24464,6 @@ class ProductModelDefinition(AbstractModel):
24790
24464
  @property
24791
24465
  def CategoryModel(self):
24792
24466
  """产品所属分类的模型快照(产品创建时刻的)
24793
- 注意:此字段可能返回 null,表示取不到有效值。
24794
24467
  :rtype: str
24795
24468
  """
24796
24469
  return self._CategoryModel
@@ -24802,7 +24475,6 @@ class ProductModelDefinition(AbstractModel):
24802
24475
  @property
24803
24476
  def NetTypeModel(self):
24804
24477
  """产品的连接类型的模型
24805
- 注意:此字段可能返回 null,表示取不到有效值。
24806
24478
  :rtype: str
24807
24479
  """
24808
24480
  return self._NetTypeModel
@@ -24949,16 +24621,12 @@ class ProjectEntryEx(AbstractModel):
24949
24621
  :param _WebAppCount: WebApp数量
24950
24622
  :type WebAppCount: int
24951
24623
  :param _InstanceId: 实例ID
24952
- 注意:此字段可能返回 null,表示取不到有效值。
24953
24624
  :type InstanceId: str
24954
24625
  :param _ApplicationCount: 应用数量
24955
- 注意:此字段可能返回 null,表示取不到有效值。
24956
24626
  :type ApplicationCount: int
24957
24627
  :param _DeviceCount: 设备注册总数
24958
- 注意:此字段可能返回 null,表示取不到有效值。
24959
24628
  :type DeviceCount: int
24960
24629
  :param _EnableOpenState: 是否开通物联使能
24961
- 注意:此字段可能返回 null,表示取不到有效值。
24962
24630
  :type EnableOpenState: int
24963
24631
  """
24964
24632
  self._ProjectId = None
@@ -25065,7 +24733,6 @@ class ProjectEntryEx(AbstractModel):
25065
24733
  @property
25066
24734
  def InstanceId(self):
25067
24735
  """实例ID
25068
- 注意:此字段可能返回 null,表示取不到有效值。
25069
24736
  :rtype: str
25070
24737
  """
25071
24738
  return self._InstanceId
@@ -25077,7 +24744,6 @@ class ProjectEntryEx(AbstractModel):
25077
24744
  @property
25078
24745
  def ApplicationCount(self):
25079
24746
  """应用数量
25080
- 注意:此字段可能返回 null,表示取不到有效值。
25081
24747
  :rtype: int
25082
24748
  """
25083
24749
  return self._ApplicationCount
@@ -25089,7 +24755,6 @@ class ProjectEntryEx(AbstractModel):
25089
24755
  @property
25090
24756
  def DeviceCount(self):
25091
24757
  """设备注册总数
25092
- 注意:此字段可能返回 null,表示取不到有效值。
25093
24758
  :rtype: int
25094
24759
  """
25095
24760
  return self._DeviceCount
@@ -25101,7 +24766,6 @@ class ProjectEntryEx(AbstractModel):
25101
24766
  @property
25102
24767
  def EnableOpenState(self):
25103
24768
  """是否开通物联使能
25104
- 注意:此字段可能返回 null,表示取不到有效值。
25105
24769
  :rtype: int
25106
24770
  """
25107
24771
  return self._EnableOpenState
@@ -25317,7 +24981,6 @@ class PublishFirmwareUpdateMessageResponse(AbstractModel):
25317
24981
  def __init__(self):
25318
24982
  r"""
25319
24983
  :param _Status: 请求状态
25320
- 注意:此字段可能返回 null,表示取不到有效值。
25321
24984
  :type Status: str
25322
24985
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
25323
24986
  :type RequestId: str
@@ -25328,7 +24991,6 @@ class PublishFirmwareUpdateMessageResponse(AbstractModel):
25328
24991
  @property
25329
24992
  def Status(self):
25330
24993
  """请求状态
25331
- 注意:此字段可能返回 null,表示取不到有效值。
25332
24994
  :rtype: str
25333
24995
  """
25334
24996
  return self._Status
@@ -25685,10 +25347,13 @@ class RegisteredDeviceTypeInfo(AbstractModel):
25685
25347
  :type GatewayDeviceNum: int
25686
25348
  :param _SubDeviceNum: 已注册子设备数
25687
25349
  :type SubDeviceNum: int
25350
+ :param _VideoDeviceNum: 已注册视频设备数
25351
+ :type VideoDeviceNum: int
25688
25352
  """
25689
25353
  self._NormalDeviceNum = None
25690
25354
  self._GatewayDeviceNum = None
25691
25355
  self._SubDeviceNum = None
25356
+ self._VideoDeviceNum = None
25692
25357
 
25693
25358
  @property
25694
25359
  def NormalDeviceNum(self):
@@ -25723,11 +25388,23 @@ class RegisteredDeviceTypeInfo(AbstractModel):
25723
25388
  def SubDeviceNum(self, SubDeviceNum):
25724
25389
  self._SubDeviceNum = SubDeviceNum
25725
25390
 
25391
+ @property
25392
+ def VideoDeviceNum(self):
25393
+ """已注册视频设备数
25394
+ :rtype: int
25395
+ """
25396
+ return self._VideoDeviceNum
25397
+
25398
+ @VideoDeviceNum.setter
25399
+ def VideoDeviceNum(self, VideoDeviceNum):
25400
+ self._VideoDeviceNum = VideoDeviceNum
25401
+
25726
25402
 
25727
25403
  def _deserialize(self, params):
25728
25404
  self._NormalDeviceNum = params.get("NormalDeviceNum")
25729
25405
  self._GatewayDeviceNum = params.get("GatewayDeviceNum")
25730
25406
  self._SubDeviceNum = params.get("SubDeviceNum")
25407
+ self._VideoDeviceNum = params.get("VideoDeviceNum")
25731
25408
  memeber_set = set(params.keys())
25732
25409
  for name, value in vars(self).items():
25733
25410
  property_name = name[1:]
@@ -26520,10 +26197,8 @@ class SearchPositionSpaceResponse(AbstractModel):
26520
26197
  def __init__(self):
26521
26198
  r"""
26522
26199
  :param _List: 位置空间列表
26523
- 注意:此字段可能返回 null,表示取不到有效值。
26524
26200
  :type List: list of PositionSpaceInfo
26525
26201
  :param _Total: 符合条件的位置空间个数
26526
- 注意:此字段可能返回 null,表示取不到有效值。
26527
26202
  :type Total: int
26528
26203
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
26529
26204
  :type RequestId: str
@@ -26535,7 +26210,6 @@ class SearchPositionSpaceResponse(AbstractModel):
26535
26210
  @property
26536
26211
  def List(self):
26537
26212
  """位置空间列表
26538
- 注意:此字段可能返回 null,表示取不到有效值。
26539
26213
  :rtype: list of PositionSpaceInfo
26540
26214
  """
26541
26215
  return self._List
@@ -26547,7 +26221,6 @@ class SearchPositionSpaceResponse(AbstractModel):
26547
26221
  @property
26548
26222
  def Total(self):
26549
26223
  """符合条件的位置空间个数
26550
- 注意:此字段可能返回 null,表示取不到有效值。
26551
26224
  :rtype: int
26552
26225
  """
26553
26226
  return self._Total
@@ -26979,10 +26652,8 @@ class TWeCallActiveInfo(AbstractModel):
26979
26652
  注意:此字段可能返回 null,表示取不到有效值。
26980
26653
  :type ModelId: str
26981
26654
  :param _Sn: Sn信息
26982
- 注意:此字段可能返回 null,表示取不到有效值。
26983
26655
  :type Sn: str
26984
26656
  :param _ExpireTime: 过期时间
26985
- 注意:此字段可能返回 null,表示取不到有效值。
26986
26657
  :type ExpireTime: int
26987
26658
  :param _PkgType: 类型
26988
26659
  :type PkgType: int
@@ -27011,7 +26682,6 @@ class TWeCallActiveInfo(AbstractModel):
27011
26682
  @property
27012
26683
  def Sn(self):
27013
26684
  """Sn信息
27014
- 注意:此字段可能返回 null,表示取不到有效值。
27015
26685
  :rtype: str
27016
26686
  """
27017
26687
  return self._Sn
@@ -27023,7 +26693,6 @@ class TWeCallActiveInfo(AbstractModel):
27023
26693
  @property
27024
26694
  def ExpireTime(self):
27025
26695
  """过期时间
27026
- 注意:此字段可能返回 null,表示取不到有效值。
27027
26696
  :rtype: int
27028
26697
  """
27029
26698
  return self._ExpireTime
@@ -27067,7 +26736,6 @@ class TWeCallInfo(AbstractModel):
27067
26736
  def __init__(self):
27068
26737
  r"""
27069
26738
  :param _Sn: Sn信息,SN格式:产品ID_设备名
27070
- 注意:此字段可能返回 null,表示取不到有效值。
27071
26739
  :type Sn: str
27072
26740
  :param _ModelId: 小程序ID,参数已弃用,不用传参
27073
26741
  注意:此字段可能返回 null,表示取不到有效值。
@@ -27083,7 +26751,6 @@ class TWeCallInfo(AbstractModel):
27083
26751
  @property
27084
26752
  def Sn(self):
27085
26753
  """Sn信息,SN格式:产品ID_设备名
27086
- 注意:此字段可能返回 null,表示取不到有效值。
27087
26754
  :rtype: str
27088
26755
  """
27089
26756
  return self._Sn
@@ -27147,13 +26814,10 @@ class TWeCallLicenseInfo(AbstractModel):
27147
26814
  def __init__(self):
27148
26815
  r"""
27149
26816
  :param _TWeCallType: voip类型
27150
- 注意:此字段可能返回 null,表示取不到有效值。
27151
26817
  :type TWeCallType: str
27152
26818
  :param _TotalNum: 总数
27153
- 注意:此字段可能返回 null,表示取不到有效值。
27154
26819
  :type TotalNum: int
27155
26820
  :param _UsedNum: 已使用
27156
- 注意:此字段可能返回 null,表示取不到有效值。
27157
26821
  :type UsedNum: int
27158
26822
  """
27159
26823
  self._TWeCallType = None
@@ -27163,7 +26827,6 @@ class TWeCallLicenseInfo(AbstractModel):
27163
26827
  @property
27164
26828
  def TWeCallType(self):
27165
26829
  """voip类型
27166
- 注意:此字段可能返回 null,表示取不到有效值。
27167
26830
  :rtype: str
27168
26831
  """
27169
26832
  return self._TWeCallType
@@ -27175,7 +26838,6 @@ class TWeCallLicenseInfo(AbstractModel):
27175
26838
  @property
27176
26839
  def TotalNum(self):
27177
26840
  """总数
27178
- 注意:此字段可能返回 null,表示取不到有效值。
27179
26841
  :rtype: int
27180
26842
  """
27181
26843
  return self._TotalNum
@@ -27187,7 +26849,6 @@ class TWeCallLicenseInfo(AbstractModel):
27187
26849
  @property
27188
26850
  def UsedNum(self):
27189
26851
  """已使用
27190
- 注意:此字段可能返回 null,表示取不到有效值。
27191
26852
  :rtype: int
27192
26853
  """
27193
26854
  return self._UsedNum
@@ -27219,10 +26880,8 @@ class ThumbnailURLInfoList(AbstractModel):
27219
26880
  def __init__(self):
27220
26881
  r"""
27221
26882
  :param _ThumbnailURL: 缩略图访问地址
27222
- 注意:此字段可能返回 null,表示取不到有效值。
27223
26883
  :type ThumbnailURL: str
27224
26884
  :param _ExpireTime: 缩略图访问地址的过期时间
27225
- 注意:此字段可能返回 null,表示取不到有效值。
27226
26885
  :type ExpireTime: int
27227
26886
  """
27228
26887
  self._ThumbnailURL = None
@@ -27231,7 +26890,6 @@ class ThumbnailURLInfoList(AbstractModel):
27231
26890
  @property
27232
26891
  def ThumbnailURL(self):
27233
26892
  """缩略图访问地址
27234
- 注意:此字段可能返回 null,表示取不到有效值。
27235
26893
  :rtype: str
27236
26894
  """
27237
26895
  return self._ThumbnailURL
@@ -27243,7 +26901,6 @@ class ThumbnailURLInfoList(AbstractModel):
27243
26901
  @property
27244
26902
  def ExpireTime(self):
27245
26903
  """缩略图访问地址的过期时间
27246
- 注意:此字段可能返回 null,表示取不到有效值。
27247
26904
  :rtype: int
27248
26905
  """
27249
26906
  return self._ExpireTime
@@ -27329,13 +26986,10 @@ class TopicRule(AbstractModel):
27329
26986
  :param _Sql: 规则的SQL语句,如: SELECT * FROM 'pid/dname/event',然后对其进行base64编码,得:U0VMRUNUICogRlJPTSAncGlkL2RuYW1lL2V2ZW50Jw==
27330
26987
  :type Sql: str
27331
26988
  :param _Description: 规则描述。
27332
- 注意:此字段可能返回 null,表示取不到有效值。
27333
26989
  :type Description: str
27334
26990
  :param _Actions: 行为的JSON字符串。
27335
- 注意:此字段可能返回 null,表示取不到有效值。
27336
26991
  :type Actions: str
27337
26992
  :param _RuleDisabled: 是否禁用规则
27338
- 注意:此字段可能返回 null,表示取不到有效值。
27339
26993
  :type RuleDisabled: bool
27340
26994
  """
27341
26995
  self._RuleName = None
@@ -27369,7 +27023,6 @@ class TopicRule(AbstractModel):
27369
27023
  @property
27370
27024
  def Description(self):
27371
27025
  """规则描述。
27372
- 注意:此字段可能返回 null,表示取不到有效值。
27373
27026
  :rtype: str
27374
27027
  """
27375
27028
  return self._Description
@@ -27381,7 +27034,6 @@ class TopicRule(AbstractModel):
27381
27034
  @property
27382
27035
  def Actions(self):
27383
27036
  """行为的JSON字符串。
27384
- 注意:此字段可能返回 null,表示取不到有效值。
27385
27037
  :rtype: str
27386
27038
  """
27387
27039
  return self._Actions
@@ -27393,7 +27045,6 @@ class TopicRule(AbstractModel):
27393
27045
  @property
27394
27046
  def RuleDisabled(self):
27395
27047
  """是否禁用规则
27396
- 注意:此字段可能返回 null,表示取不到有效值。
27397
27048
  :rtype: bool
27398
27049
  """
27399
27050
  return self._RuleDisabled
@@ -28241,10 +27892,8 @@ class UpdateDevicesEnableStateResponse(AbstractModel):
28241
27892
  def __init__(self):
28242
27893
  r"""
28243
27894
  :param _ResultCode: 删除的结果代码
28244
- 注意:此字段可能返回 null,表示取不到有效值。
28245
27895
  :type ResultCode: str
28246
27896
  :param _ResultMessage: 删除的结果信息
28247
- 注意:此字段可能返回 null,表示取不到有效值。
28248
27897
  :type ResultMessage: str
28249
27898
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
28250
27899
  :type RequestId: str
@@ -28256,7 +27905,6 @@ class UpdateDevicesEnableStateResponse(AbstractModel):
28256
27905
  @property
28257
27906
  def ResultCode(self):
28258
27907
  """删除的结果代码
28259
- 注意:此字段可能返回 null,表示取不到有效值。
28260
27908
  :rtype: str
28261
27909
  """
28262
27910
  return self._ResultCode
@@ -28268,7 +27916,6 @@ class UpdateDevicesEnableStateResponse(AbstractModel):
28268
27916
  @property
28269
27917
  def ResultMessage(self):
28270
27918
  """删除的结果信息
28271
- 注意:此字段可能返回 null,表示取不到有效值。
28272
27919
  :rtype: str
28273
27920
  """
28274
27921
  return self._ResultMessage
@@ -28677,10 +28324,8 @@ class WXDeviceInfo(AbstractModel):
28677
28324
  def __init__(self):
28678
28325
  r"""
28679
28326
  :param _DeviceId: 设备ID
28680
- 注意:此字段可能返回 null,表示取不到有效值。
28681
28327
  :type DeviceId: str
28682
28328
  :param _WXIoTDeviceInfo: 设备信息
28683
- 注意:此字段可能返回 null,表示取不到有效值。
28684
28329
  :type WXIoTDeviceInfo: :class:`tencentcloud.iotexplorer.v20190423.models.WXIoTDeviceInfo`
28685
28330
  """
28686
28331
  self._DeviceId = None
@@ -28689,7 +28334,6 @@ class WXDeviceInfo(AbstractModel):
28689
28334
  @property
28690
28335
  def DeviceId(self):
28691
28336
  """设备ID
28692
- 注意:此字段可能返回 null,表示取不到有效值。
28693
28337
  :rtype: str
28694
28338
  """
28695
28339
  return self._DeviceId
@@ -28701,7 +28345,6 @@ class WXDeviceInfo(AbstractModel):
28701
28345
  @property
28702
28346
  def WXIoTDeviceInfo(self):
28703
28347
  """设备信息
28704
- 注意:此字段可能返回 null,表示取不到有效值。
28705
28348
  :rtype: :class:`tencentcloud.iotexplorer.v20190423.models.WXIoTDeviceInfo`
28706
28349
  """
28707
28350
  return self._WXIoTDeviceInfo
@@ -28734,13 +28377,10 @@ class WXIoTDeviceInfo(AbstractModel):
28734
28377
  def __init__(self):
28735
28378
  r"""
28736
28379
  :param _SN: sn信息
28737
- 注意:此字段可能返回 null,表示取不到有效值。
28738
28380
  :type SN: str
28739
28381
  :param _SNTicket: 票据
28740
- 注意:此字段可能返回 null,表示取不到有效值。
28741
28382
  :type SNTicket: str
28742
28383
  :param _ModelId: 模板ID
28743
- 注意:此字段可能返回 null,表示取不到有效值。
28744
28384
  :type ModelId: str
28745
28385
  """
28746
28386
  self._SN = None
@@ -28750,7 +28390,6 @@ class WXIoTDeviceInfo(AbstractModel):
28750
28390
  @property
28751
28391
  def SN(self):
28752
28392
  """sn信息
28753
- 注意:此字段可能返回 null,表示取不到有效值。
28754
28393
  :rtype: str
28755
28394
  """
28756
28395
  return self._SN
@@ -28762,7 +28401,6 @@ class WXIoTDeviceInfo(AbstractModel):
28762
28401
  @property
28763
28402
  def SNTicket(self):
28764
28403
  """票据
28765
- 注意:此字段可能返回 null,表示取不到有效值。
28766
28404
  :rtype: str
28767
28405
  """
28768
28406
  return self._SNTicket
@@ -28774,7 +28412,6 @@ class WXIoTDeviceInfo(AbstractModel):
28774
28412
  @property
28775
28413
  def ModelId(self):
28776
28414
  """模板ID
28777
- 注意:此字段可能返回 null,表示取不到有效值。
28778
28415
  :rtype: str
28779
28416
  """
28780
28417
  return self._ModelId