tencentcloud-sdk-python-weilingwith 3.0.1121__py2.py3-none-any.whl → 3.0.1122__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/weilingwith/v20230427/models.py +1097 -83
- tencentcloud/weilingwith/v20230427/weilingwith_client.py +161 -0
- {tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info → tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info → tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info → tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info}/top_level.txt +0 -0
|
@@ -72,6 +72,29 @@ class WeilingwithClient(AbstractClient):
|
|
|
72
72
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
|
+
def BatchDeleteDevice(self, request):
|
|
76
|
+
"""批量删除设备
|
|
77
|
+
|
|
78
|
+
:param request: Request instance for BatchDeleteDevice.
|
|
79
|
+
:type request: :class:`tencentcloud.weilingwith.v20230427.models.BatchDeleteDeviceRequest`
|
|
80
|
+
:rtype: :class:`tencentcloud.weilingwith.v20230427.models.BatchDeleteDeviceResponse`
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
try:
|
|
84
|
+
params = request._serialize()
|
|
85
|
+
headers = request.headers
|
|
86
|
+
body = self.call("BatchDeleteDevice", params, headers=headers)
|
|
87
|
+
response = json.loads(body)
|
|
88
|
+
model = models.BatchDeleteDeviceResponse()
|
|
89
|
+
model._deserialize(response["Response"])
|
|
90
|
+
return model
|
|
91
|
+
except Exception as e:
|
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
|
93
|
+
raise
|
|
94
|
+
else:
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
|
+
|
|
97
|
+
|
|
75
98
|
def BatchKillAlarm(self, request):
|
|
76
99
|
"""批量消警
|
|
77
100
|
|
|
@@ -210,6 +233,29 @@ class WeilingwithClient(AbstractClient):
|
|
|
210
233
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
234
|
|
|
212
235
|
|
|
236
|
+
def DeleteDeviceGroup(self, request):
|
|
237
|
+
"""删除设备分组
|
|
238
|
+
|
|
239
|
+
:param request: Request instance for DeleteDeviceGroup.
|
|
240
|
+
:type request: :class:`tencentcloud.weilingwith.v20230427.models.DeleteDeviceGroupRequest`
|
|
241
|
+
:rtype: :class:`tencentcloud.weilingwith.v20230427.models.DeleteDeviceGroupResponse`
|
|
242
|
+
|
|
243
|
+
"""
|
|
244
|
+
try:
|
|
245
|
+
params = request._serialize()
|
|
246
|
+
headers = request.headers
|
|
247
|
+
body = self.call("DeleteDeviceGroup", params, headers=headers)
|
|
248
|
+
response = json.loads(body)
|
|
249
|
+
model = models.DeleteDeviceGroupResponse()
|
|
250
|
+
model._deserialize(response["Response"])
|
|
251
|
+
return model
|
|
252
|
+
except Exception as e:
|
|
253
|
+
if isinstance(e, TencentCloudSDKException):
|
|
254
|
+
raise
|
|
255
|
+
else:
|
|
256
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
257
|
+
|
|
258
|
+
|
|
213
259
|
def DescribeActionList(self, request):
|
|
214
260
|
"""动作列表查询
|
|
215
261
|
|
|
@@ -486,6 +532,29 @@ class WeilingwithClient(AbstractClient):
|
|
|
486
532
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
487
533
|
|
|
488
534
|
|
|
535
|
+
def DescribeDeviceGroupList(self, request):
|
|
536
|
+
"""设备分组列表
|
|
537
|
+
|
|
538
|
+
:param request: Request instance for DescribeDeviceGroupList.
|
|
539
|
+
:type request: :class:`tencentcloud.weilingwith.v20230427.models.DescribeDeviceGroupListRequest`
|
|
540
|
+
:rtype: :class:`tencentcloud.weilingwith.v20230427.models.DescribeDeviceGroupListResponse`
|
|
541
|
+
|
|
542
|
+
"""
|
|
543
|
+
try:
|
|
544
|
+
params = request._serialize()
|
|
545
|
+
headers = request.headers
|
|
546
|
+
body = self.call("DescribeDeviceGroupList", params, headers=headers)
|
|
547
|
+
response = json.loads(body)
|
|
548
|
+
model = models.DescribeDeviceGroupListResponse()
|
|
549
|
+
model._deserialize(response["Response"])
|
|
550
|
+
return model
|
|
551
|
+
except Exception as e:
|
|
552
|
+
if isinstance(e, TencentCloudSDKException):
|
|
553
|
+
raise
|
|
554
|
+
else:
|
|
555
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
556
|
+
|
|
557
|
+
|
|
489
558
|
def DescribeDeviceList(self, request):
|
|
490
559
|
"""设备列表查询/单个查询(支持通过筛选条件查询,设备类型、标签、PID、空间)
|
|
491
560
|
|
|
@@ -1245,6 +1314,52 @@ class WeilingwithClient(AbstractClient):
|
|
|
1245
1314
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1246
1315
|
|
|
1247
1316
|
|
|
1317
|
+
def ModifyDeviceField(self, request):
|
|
1318
|
+
"""批量修改设备自定义字段值
|
|
1319
|
+
|
|
1320
|
+
:param request: Request instance for ModifyDeviceField.
|
|
1321
|
+
:type request: :class:`tencentcloud.weilingwith.v20230427.models.ModifyDeviceFieldRequest`
|
|
1322
|
+
:rtype: :class:`tencentcloud.weilingwith.v20230427.models.ModifyDeviceFieldResponse`
|
|
1323
|
+
|
|
1324
|
+
"""
|
|
1325
|
+
try:
|
|
1326
|
+
params = request._serialize()
|
|
1327
|
+
headers = request.headers
|
|
1328
|
+
body = self.call("ModifyDeviceField", params, headers=headers)
|
|
1329
|
+
response = json.loads(body)
|
|
1330
|
+
model = models.ModifyDeviceFieldResponse()
|
|
1331
|
+
model._deserialize(response["Response"])
|
|
1332
|
+
return model
|
|
1333
|
+
except Exception as e:
|
|
1334
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1335
|
+
raise
|
|
1336
|
+
else:
|
|
1337
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1338
|
+
|
|
1339
|
+
|
|
1340
|
+
def ModifyDeviceGroup(self, request):
|
|
1341
|
+
"""批量修改设备组
|
|
1342
|
+
|
|
1343
|
+
:param request: Request instance for ModifyDeviceGroup.
|
|
1344
|
+
:type request: :class:`tencentcloud.weilingwith.v20230427.models.ModifyDeviceGroupRequest`
|
|
1345
|
+
:rtype: :class:`tencentcloud.weilingwith.v20230427.models.ModifyDeviceGroupResponse`
|
|
1346
|
+
|
|
1347
|
+
"""
|
|
1348
|
+
try:
|
|
1349
|
+
params = request._serialize()
|
|
1350
|
+
headers = request.headers
|
|
1351
|
+
body = self.call("ModifyDeviceGroup", params, headers=headers)
|
|
1352
|
+
response = json.loads(body)
|
|
1353
|
+
model = models.ModifyDeviceGroupResponse()
|
|
1354
|
+
model._deserialize(response["Response"])
|
|
1355
|
+
return model
|
|
1356
|
+
except Exception as e:
|
|
1357
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1358
|
+
raise
|
|
1359
|
+
else:
|
|
1360
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1361
|
+
|
|
1362
|
+
|
|
1248
1363
|
def ModifyDeviceName(self, request):
|
|
1249
1364
|
"""批量修改设备名字
|
|
1250
1365
|
|
|
@@ -1268,6 +1383,29 @@ class WeilingwithClient(AbstractClient):
|
|
|
1268
1383
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1269
1384
|
|
|
1270
1385
|
|
|
1386
|
+
def ModifyDeviceTag(self, request):
|
|
1387
|
+
"""批量修改设备标签
|
|
1388
|
+
|
|
1389
|
+
:param request: Request instance for ModifyDeviceTag.
|
|
1390
|
+
:type request: :class:`tencentcloud.weilingwith.v20230427.models.ModifyDeviceTagRequest`
|
|
1391
|
+
:rtype: :class:`tencentcloud.weilingwith.v20230427.models.ModifyDeviceTagResponse`
|
|
1392
|
+
|
|
1393
|
+
"""
|
|
1394
|
+
try:
|
|
1395
|
+
params = request._serialize()
|
|
1396
|
+
headers = request.headers
|
|
1397
|
+
body = self.call("ModifyDeviceTag", params, headers=headers)
|
|
1398
|
+
response = json.loads(body)
|
|
1399
|
+
model = models.ModifyDeviceTagResponse()
|
|
1400
|
+
model._deserialize(response["Response"])
|
|
1401
|
+
return model
|
|
1402
|
+
except Exception as e:
|
|
1403
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1404
|
+
raise
|
|
1405
|
+
else:
|
|
1406
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1407
|
+
|
|
1408
|
+
|
|
1271
1409
|
def ReportAppMessage(self, request):
|
|
1272
1410
|
"""上报应用消息
|
|
1273
1411
|
|
|
@@ -1291,6 +1429,29 @@ class WeilingwithClient(AbstractClient):
|
|
|
1291
1429
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1292
1430
|
|
|
1293
1431
|
|
|
1432
|
+
def SaveDeviceGroup(self, request):
|
|
1433
|
+
"""设备分组新增/修改
|
|
1434
|
+
|
|
1435
|
+
:param request: Request instance for SaveDeviceGroup.
|
|
1436
|
+
:type request: :class:`tencentcloud.weilingwith.v20230427.models.SaveDeviceGroupRequest`
|
|
1437
|
+
:rtype: :class:`tencentcloud.weilingwith.v20230427.models.SaveDeviceGroupResponse`
|
|
1438
|
+
|
|
1439
|
+
"""
|
|
1440
|
+
try:
|
|
1441
|
+
params = request._serialize()
|
|
1442
|
+
headers = request.headers
|
|
1443
|
+
body = self.call("SaveDeviceGroup", params, headers=headers)
|
|
1444
|
+
response = json.loads(body)
|
|
1445
|
+
model = models.SaveDeviceGroupResponse()
|
|
1446
|
+
model._deserialize(response["Response"])
|
|
1447
|
+
return model
|
|
1448
|
+
except Exception as e:
|
|
1449
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1450
|
+
raise
|
|
1451
|
+
else:
|
|
1452
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1453
|
+
|
|
1454
|
+
|
|
1294
1455
|
def StopVideoStreaming(self, request):
|
|
1295
1456
|
"""断流接口
|
|
1296
1457
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-weilingwith
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1122
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1122)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=wBgBOn-vARzgZK0I7TqbIZr9wXEWf7bwusHiEU1pohQ,631
|
|
2
|
+
tencentcloud/weilingwith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/weilingwith/v20230427/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/weilingwith/v20230427/errorcodes.py,sha256=X6eW2aW6obRprFUx7xLZH_McLbE3NyJQX2LTddzH_pU,8533
|
|
5
|
+
tencentcloud/weilingwith/v20230427/models.py,sha256=pdZDzfnLdj5BDbhsZ2DUXf1iJt6sl5pjs2h0oWHBprQ,505552
|
|
6
|
+
tencentcloud/weilingwith/v20230427/weilingwith_client.py,sha256=_4RuWaZo8a9So0Rd0J7IWqnRxfc12tEqyTTLiZfsFBc,60031
|
|
7
|
+
tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info/METADATA,sha256=7_jwfyfKy49rY6fKYcyexMvk_J0AC8EjxcWdgCAFpzA,1532
|
|
8
|
+
tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_weilingwith-3.0.1122.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=LItrK9U61xqc3M6yxqcVVzSBH7uUOrb1DE0yDesHBSI,631
|
|
2
|
-
tencentcloud/weilingwith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/weilingwith/v20230427/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/weilingwith/v20230427/errorcodes.py,sha256=X6eW2aW6obRprFUx7xLZH_McLbE3NyJQX2LTddzH_pU,8533
|
|
5
|
-
tencentcloud/weilingwith/v20230427/models.py,sha256=nhJw-c9IECvXvNKsMcYw_bv51DtJJpYJT3bc5atKfv8,478005
|
|
6
|
-
tencentcloud/weilingwith/v20230427/weilingwith_client.py,sha256=0DW42ajB7Eae3ELR0vzPQZLXf3qnvbCFOuvYj4iuw8k,53790
|
|
7
|
-
tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info/METADATA,sha256=ne5sHI73qoQ9YWdzYCPlkZ85JqVXFqOPh6US4pANWSk,1532
|
|
8
|
-
tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_weilingwith-3.0.1121.dist-info/RECORD,,
|
|
File without changes
|