tencentcloud-sdk-python-iss 3.0.1125__tar.gz → 3.0.1128__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.
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/setup.py +1 -1
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud/iss/v20230517/models.py +50 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud_sdk_python_iss.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-iss-3.0.1128/tencentcloud_sdk_python_iss.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-iss-3.0.1125/tencentcloud_sdk_python_iss.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/README.rst +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/setup.cfg +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud/iss/__init__.py +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud/iss/v20230517/__init__.py +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud/iss/v20230517/errorcodes.py +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud/iss/v20230517/iss_client.py +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud_sdk_python_iss.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud_sdk_python_iss.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-iss-3.0.1125 → tencentcloud-sdk-python-iss-3.0.1128}/tencentcloud_sdk_python_iss.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-iss',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1128"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Iss SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5030,6 +5030,12 @@ class DescribeDeviceData(AbstractModel):
|
|
|
5030
5030
|
:param _Manufacturer: 设备厂商
|
|
5031
5031
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5032
5032
|
:type Manufacturer: str
|
|
5033
|
+
:param _AudioSwitch: 音频关开(0:关闭;1:开启)关闭时丢弃音频
|
|
5034
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5035
|
+
:type AudioSwitch: int
|
|
5036
|
+
:param _SubscribeSwitch: 订阅开关(0:关闭;1:开启)默认开启,开启状态下会订阅设备通道变化,仅国标NVR设备有效
|
|
5037
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5038
|
+
:type SubscribeSwitch: int
|
|
5033
5039
|
"""
|
|
5034
5040
|
self._DeviceId = None
|
|
5035
5041
|
self._Code = None
|
|
@@ -5057,6 +5063,8 @@ class DescribeDeviceData(AbstractModel):
|
|
|
5057
5063
|
self._Username = None
|
|
5058
5064
|
self._Region = None
|
|
5059
5065
|
self._Manufacturer = None
|
|
5066
|
+
self._AudioSwitch = None
|
|
5067
|
+
self._SubscribeSwitch = None
|
|
5060
5068
|
|
|
5061
5069
|
@property
|
|
5062
5070
|
def DeviceId(self):
|
|
@@ -5266,6 +5274,22 @@ class DescribeDeviceData(AbstractModel):
|
|
|
5266
5274
|
def Manufacturer(self, Manufacturer):
|
|
5267
5275
|
self._Manufacturer = Manufacturer
|
|
5268
5276
|
|
|
5277
|
+
@property
|
|
5278
|
+
def AudioSwitch(self):
|
|
5279
|
+
return self._AudioSwitch
|
|
5280
|
+
|
|
5281
|
+
@AudioSwitch.setter
|
|
5282
|
+
def AudioSwitch(self, AudioSwitch):
|
|
5283
|
+
self._AudioSwitch = AudioSwitch
|
|
5284
|
+
|
|
5285
|
+
@property
|
|
5286
|
+
def SubscribeSwitch(self):
|
|
5287
|
+
return self._SubscribeSwitch
|
|
5288
|
+
|
|
5289
|
+
@SubscribeSwitch.setter
|
|
5290
|
+
def SubscribeSwitch(self, SubscribeSwitch):
|
|
5291
|
+
self._SubscribeSwitch = SubscribeSwitch
|
|
5292
|
+
|
|
5269
5293
|
|
|
5270
5294
|
def _deserialize(self, params):
|
|
5271
5295
|
self._DeviceId = params.get("DeviceId")
|
|
@@ -5294,6 +5318,8 @@ class DescribeDeviceData(AbstractModel):
|
|
|
5294
5318
|
self._Username = params.get("Username")
|
|
5295
5319
|
self._Region = params.get("Region")
|
|
5296
5320
|
self._Manufacturer = params.get("Manufacturer")
|
|
5321
|
+
self._AudioSwitch = params.get("AudioSwitch")
|
|
5322
|
+
self._SubscribeSwitch = params.get("SubscribeSwitch")
|
|
5297
5323
|
memeber_set = set(params.keys())
|
|
5298
5324
|
for name, value in vars(self).items():
|
|
5299
5325
|
property_name = name[1:]
|
|
@@ -15496,6 +15522,10 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
|
15496
15522
|
:type Username: str
|
|
15497
15523
|
:param _ProtocolType: 网关设备接入协议(仅网关接入支持)
|
|
15498
15524
|
:type ProtocolType: int
|
|
15525
|
+
:param _AudioSwitch: 音频关开(0:关闭;1:开启)默认开启,关闭时丢弃音频
|
|
15526
|
+
:type AudioSwitch: int
|
|
15527
|
+
:param _SubscribeSwitch: 订阅开关(0:关闭;1:开启)默认开启,开启状态下会订阅设备通道变化,仅国标NVR设备有效
|
|
15528
|
+
:type SubscribeSwitch: int
|
|
15499
15529
|
"""
|
|
15500
15530
|
self._DeviceId = None
|
|
15501
15531
|
self._Name = None
|
|
@@ -15506,6 +15536,8 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
|
15506
15536
|
self._Port = None
|
|
15507
15537
|
self._Username = None
|
|
15508
15538
|
self._ProtocolType = None
|
|
15539
|
+
self._AudioSwitch = None
|
|
15540
|
+
self._SubscribeSwitch = None
|
|
15509
15541
|
|
|
15510
15542
|
@property
|
|
15511
15543
|
def DeviceId(self):
|
|
@@ -15579,6 +15611,22 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
|
15579
15611
|
def ProtocolType(self, ProtocolType):
|
|
15580
15612
|
self._ProtocolType = ProtocolType
|
|
15581
15613
|
|
|
15614
|
+
@property
|
|
15615
|
+
def AudioSwitch(self):
|
|
15616
|
+
return self._AudioSwitch
|
|
15617
|
+
|
|
15618
|
+
@AudioSwitch.setter
|
|
15619
|
+
def AudioSwitch(self, AudioSwitch):
|
|
15620
|
+
self._AudioSwitch = AudioSwitch
|
|
15621
|
+
|
|
15622
|
+
@property
|
|
15623
|
+
def SubscribeSwitch(self):
|
|
15624
|
+
return self._SubscribeSwitch
|
|
15625
|
+
|
|
15626
|
+
@SubscribeSwitch.setter
|
|
15627
|
+
def SubscribeSwitch(self, SubscribeSwitch):
|
|
15628
|
+
self._SubscribeSwitch = SubscribeSwitch
|
|
15629
|
+
|
|
15582
15630
|
|
|
15583
15631
|
def _deserialize(self, params):
|
|
15584
15632
|
self._DeviceId = params.get("DeviceId")
|
|
@@ -15590,6 +15638,8 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
|
15590
15638
|
self._Port = params.get("Port")
|
|
15591
15639
|
self._Username = params.get("Username")
|
|
15592
15640
|
self._ProtocolType = params.get("ProtocolType")
|
|
15641
|
+
self._AudioSwitch = params.get("AudioSwitch")
|
|
15642
|
+
self._SubscribeSwitch = params.get("SubscribeSwitch")
|
|
15593
15643
|
memeber_set = set(params.keys())
|
|
15594
15644
|
for name, value in vars(self).items():
|
|
15595
15645
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1128
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1125
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|