tencentcloud-sdk-python-iss 3.0.1255__tar.gz → 3.0.1257__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-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/setup.py +1 -1
  3. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud/iss/v20230517/models.py +25 -0
  5. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud_sdk_python_iss.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-iss-3.0.1257/tencentcloud_sdk_python_iss.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-iss-3.0.1255/tencentcloud_sdk_python_iss.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/README.rst +0 -0
  9. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud/iss/__init__.py +0 -0
  11. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud/iss/v20230517/__init__.py +0 -0
  12. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud/iss/v20230517/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud/iss/v20230517/iss_client.py +0 -0
  14. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud_sdk_python_iss.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud_sdk_python_iss.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-iss-3.0.1255 → tencentcloud-sdk-python-iss-3.0.1257}/tencentcloud_sdk_python_iss.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-iss
3
- Version: 3.0.1255
3
+ Version: 3.0.1257
4
4
  Summary: Tencent Cloud Iss 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-iss',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1255"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1257"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Iss 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.1255'
17
+ __version__ = '3.0.1257'
@@ -5269,6 +5269,9 @@ class DescribeDeviceData(AbstractModel):
5269
5269
  :param _StreamName: RTMP推流地址自定义streamName
5270
5270
  注意:此字段可能返回 null,表示取不到有效值。
5271
5271
  :type StreamName: str
5272
+ :param _SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
5273
+ 注意:此字段可能返回 null,表示取不到有效值。
5274
+ :type SilentFrameSwitch: int
5272
5275
  """
5273
5276
  self._DeviceId = None
5274
5277
  self._Code = None
@@ -5300,6 +5303,7 @@ class DescribeDeviceData(AbstractModel):
5300
5303
  self._SubscribeSwitch = None
5301
5304
  self._AppName = None
5302
5305
  self._StreamName = None
5306
+ self._SilentFrameSwitch = None
5303
5307
 
5304
5308
  @property
5305
5309
  def DeviceId(self):
@@ -5541,6 +5545,14 @@ class DescribeDeviceData(AbstractModel):
5541
5545
  def StreamName(self, StreamName):
5542
5546
  self._StreamName = StreamName
5543
5547
 
5548
+ @property
5549
+ def SilentFrameSwitch(self):
5550
+ return self._SilentFrameSwitch
5551
+
5552
+ @SilentFrameSwitch.setter
5553
+ def SilentFrameSwitch(self, SilentFrameSwitch):
5554
+ self._SilentFrameSwitch = SilentFrameSwitch
5555
+
5544
5556
 
5545
5557
  def _deserialize(self, params):
5546
5558
  self._DeviceId = params.get("DeviceId")
@@ -5573,6 +5585,7 @@ class DescribeDeviceData(AbstractModel):
5573
5585
  self._SubscribeSwitch = params.get("SubscribeSwitch")
5574
5586
  self._AppName = params.get("AppName")
5575
5587
  self._StreamName = params.get("StreamName")
5588
+ self._SilentFrameSwitch = params.get("SilentFrameSwitch")
5576
5589
  memeber_set = set(params.keys())
5577
5590
  for name, value in vars(self).items():
5578
5591
  property_name = name[1:]
@@ -16269,6 +16282,8 @@ class UpdateUserDeviceRequest(AbstractModel):
16269
16282
  :type AudioSwitch: int
16270
16283
  :param _SubscribeSwitch: 订阅开关(0:关闭;1:开启)默认开启,开启状态下会订阅设备通道变化,仅国标NVR设备有效
16271
16284
  :type SubscribeSwitch: int
16285
+ :param _SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
16286
+ :type SilentFrameSwitch: int
16272
16287
  """
16273
16288
  self._DeviceId = None
16274
16289
  self._Name = None
@@ -16281,6 +16296,7 @@ class UpdateUserDeviceRequest(AbstractModel):
16281
16296
  self._ProtocolType = None
16282
16297
  self._AudioSwitch = None
16283
16298
  self._SubscribeSwitch = None
16299
+ self._SilentFrameSwitch = None
16284
16300
 
16285
16301
  @property
16286
16302
  def DeviceId(self):
@@ -16370,6 +16386,14 @@ class UpdateUserDeviceRequest(AbstractModel):
16370
16386
  def SubscribeSwitch(self, SubscribeSwitch):
16371
16387
  self._SubscribeSwitch = SubscribeSwitch
16372
16388
 
16389
+ @property
16390
+ def SilentFrameSwitch(self):
16391
+ return self._SilentFrameSwitch
16392
+
16393
+ @SilentFrameSwitch.setter
16394
+ def SilentFrameSwitch(self, SilentFrameSwitch):
16395
+ self._SilentFrameSwitch = SilentFrameSwitch
16396
+
16373
16397
 
16374
16398
  def _deserialize(self, params):
16375
16399
  self._DeviceId = params.get("DeviceId")
@@ -16383,6 +16407,7 @@ class UpdateUserDeviceRequest(AbstractModel):
16383
16407
  self._ProtocolType = params.get("ProtocolType")
16384
16408
  self._AudioSwitch = params.get("AudioSwitch")
16385
16409
  self._SubscribeSwitch = params.get("SubscribeSwitch")
16410
+ self._SilentFrameSwitch = params.get("SilentFrameSwitch")
16386
16411
  memeber_set = set(params.keys())
16387
16412
  for name, value in vars(self).items():
16388
16413
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-iss
3
- Version: 3.0.1255
3
+ Version: 3.0.1257
4
4
  Summary: Tencent Cloud Iss 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.1257
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1255