tencentcloud-sdk-python-weilingwith 3.0.1086__tar.gz → 3.0.1087__tar.gz

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 (16) hide show
  1. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/setup.py +1 -1
  3. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud/weilingwith/v20230427/models.py +52 -2
  5. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud_sdk_python_weilingwith.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-weilingwith-3.0.1087/tencentcloud_sdk_python_weilingwith.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-weilingwith-3.0.1086/tencentcloud_sdk_python_weilingwith.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/README.rst +0 -0
  9. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud/weilingwith/__init__.py +0 -0
  11. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud/weilingwith/v20230427/__init__.py +0 -0
  12. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud/weilingwith/v20230427/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud/weilingwith/v20230427/weilingwith_client.py +0 -0
  14. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud_sdk_python_weilingwith.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud_sdk_python_weilingwith.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-weilingwith-3.0.1086 → tencentcloud-sdk-python-weilingwith-3.0.1087}/tencentcloud_sdk_python_weilingwith.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-weilingwith
3
- Version: 3.0.1086
3
+ Version: 3.0.1087
4
4
  Summary: Tencent Cloud Weilingwith SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-weilingwith',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1086"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1087"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Weilingwith SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1086'
17
+ __version__ = '3.0.1087'
@@ -5575,6 +5575,10 @@ class DescribeDeviceListRequest(AbstractModel):
5575
5575
  :type Field: :class:`tencentcloud.weilingwith.v20230427.models.CustomField`
5576
5576
  :param _GroupIdSet: 分组id列表,非必填
5577
5577
  :type GroupIdSet: list of int
5578
+ :param _IsActive: 是否激活,默认全部,"1"激活,"0"未激活
5579
+ :type IsActive: str
5580
+ :param _IsCamera: 是否为摄像头,默认全部,"true"摄像头,"false"非摄像头
5581
+ :type IsCamera: str
5578
5582
  """
5579
5583
  self._WorkspaceId = None
5580
5584
  self._PageNumber = None
@@ -5588,6 +5592,8 @@ class DescribeDeviceListRequest(AbstractModel):
5588
5592
  self._WIDSet = None
5589
5593
  self._Field = None
5590
5594
  self._GroupIdSet = None
5595
+ self._IsActive = None
5596
+ self._IsCamera = None
5591
5597
 
5592
5598
  @property
5593
5599
  def WorkspaceId(self):
@@ -5685,6 +5691,22 @@ class DescribeDeviceListRequest(AbstractModel):
5685
5691
  def GroupIdSet(self, GroupIdSet):
5686
5692
  self._GroupIdSet = GroupIdSet
5687
5693
 
5694
+ @property
5695
+ def IsActive(self):
5696
+ return self._IsActive
5697
+
5698
+ @IsActive.setter
5699
+ def IsActive(self, IsActive):
5700
+ self._IsActive = IsActive
5701
+
5702
+ @property
5703
+ def IsCamera(self):
5704
+ return self._IsCamera
5705
+
5706
+ @IsCamera.setter
5707
+ def IsCamera(self, IsCamera):
5708
+ self._IsCamera = IsCamera
5709
+
5688
5710
 
5689
5711
  def _deserialize(self, params):
5690
5712
  self._WorkspaceId = params.get("WorkspaceId")
@@ -5701,6 +5723,8 @@ class DescribeDeviceListRequest(AbstractModel):
5701
5723
  self._Field = CustomField()
5702
5724
  self._Field._deserialize(params.get("Field"))
5703
5725
  self._GroupIdSet = params.get("GroupIdSet")
5726
+ self._IsActive = params.get("IsActive")
5727
+ self._IsCamera = params.get("IsCamera")
5704
5728
  memeber_set = set(params.keys())
5705
5729
  for name, value in vars(self).items():
5706
5730
  property_name = name[1:]
@@ -10120,7 +10144,7 @@ class DeviceDataInfo(AbstractModel):
10120
10144
  :param _ProductName: 产品名称
10121
10145
  注意:此字段可能返回 null,表示取不到有效值。
10122
10146
  :type ProductName: str
10123
- :param _ProductAbility: 产品能力:信令数据、音视频。第0位表示信令数据、第1表示音视频 ,默认为1(信令数据)
10147
+ :param _ProductAbility: 产品能力:信令数据、音视频。二进制数值中第0位表示信令数据、第1位表示音视频 1(信令数据),3(具有信令数据以及音视频能力)。
10124
10148
  注意:此字段可能返回 null,表示取不到有效值。
10125
10149
  :type ProductAbility: int
10126
10150
  :param _SpaceInfoSet: 设备位置信息
@@ -10162,6 +10186,12 @@ class DeviceDataInfo(AbstractModel):
10162
10186
  :param _GroupInfo: 分组信息
10163
10187
  注意:此字段可能返回 null,表示取不到有效值。
10164
10188
  :type GroupInfo: str
10189
+ :param _DeviceStatus: 通信在/离线状态(online=normal+fault,offline)
10190
+ 注意:此字段可能返回 null,表示取不到有效值。
10191
+ :type DeviceStatus: str
10192
+ :param _Status: 设备业务状态(normal、fault、offline)
10193
+ 注意:此字段可能返回 null,表示取不到有效值。
10194
+ :type Status: str
10165
10195
  """
10166
10196
  self._WID = None
10167
10197
  self._DeviceName = None
@@ -10183,6 +10213,8 @@ class DeviceDataInfo(AbstractModel):
10183
10213
  self._Location = None
10184
10214
  self._FieldList = None
10185
10215
  self._GroupInfo = None
10216
+ self._DeviceStatus = None
10217
+ self._Status = None
10186
10218
 
10187
10219
  @property
10188
10220
  def WID(self):
@@ -10344,6 +10376,22 @@ class DeviceDataInfo(AbstractModel):
10344
10376
  def GroupInfo(self, GroupInfo):
10345
10377
  self._GroupInfo = GroupInfo
10346
10378
 
10379
+ @property
10380
+ def DeviceStatus(self):
10381
+ return self._DeviceStatus
10382
+
10383
+ @DeviceStatus.setter
10384
+ def DeviceStatus(self, DeviceStatus):
10385
+ self._DeviceStatus = DeviceStatus
10386
+
10387
+ @property
10388
+ def Status(self):
10389
+ return self._Status
10390
+
10391
+ @Status.setter
10392
+ def Status(self, Status):
10393
+ self._Status = Status
10394
+
10347
10395
 
10348
10396
  def _deserialize(self, params):
10349
10397
  self._WID = params.get("WID")
@@ -10378,6 +10426,8 @@ class DeviceDataInfo(AbstractModel):
10378
10426
  obj._deserialize(item)
10379
10427
  self._FieldList.append(obj)
10380
10428
  self._GroupInfo = params.get("GroupInfo")
10429
+ self._DeviceStatus = params.get("DeviceStatus")
10430
+ self._Status = params.get("Status")
10381
10431
  memeber_set = set(params.keys())
10382
10432
  for name, value in vars(self).items():
10383
10433
  property_name = name[1:]
@@ -13495,7 +13545,7 @@ class ProductInfo(AbstractModel):
13495
13545
  :param _ProductType: 产品型号
13496
13546
  注意:此字段可能返回 null,表示取不到有效值。
13497
13547
  :type ProductType: str
13498
- :param _ProductAbility: 产品能力:信令数据、音视频,用二进制表示,第0位表示信令数据、第1表示音视频 ,默认为1(信令数据)
13548
+ :param _ProductAbility: 产品能力:信令数据、音视频。二进制数值中第0位表示信令数据、第1位表示音视频 1(信令数据),3(具有信令数据以及音视频能力)。
13499
13549
  注意:此字段可能返回 null,表示取不到有效值。
13500
13550
  :type ProductAbility: int
13501
13551
  :param _Manufacturer: 生产厂商
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-weilingwith
3
- Version: 3.0.1086
3
+ Version: 3.0.1087
4
4
  Summary: Tencent Cloud Weilingwith SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1087
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1086