tencentcloud-sdk-python-iss 3.0.1008__tar.gz → 3.0.1011__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.1008 → tencentcloud-sdk-python-iss-3.0.1011}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/setup.py +1 -1
  3. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud/iss/v20230517/models.py +13 -1
  5. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud_sdk_python_iss.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-iss-3.0.1011/tencentcloud_sdk_python_iss.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-iss-3.0.1008/tencentcloud_sdk_python_iss.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/README.rst +0 -0
  9. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud/iss/__init__.py +0 -0
  11. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud/iss/v20230517/__init__.py +0 -0
  12. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud/iss/v20230517/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud/iss/v20230517/iss_client.py +0 -0
  14. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud_sdk_python_iss.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/tencentcloud_sdk_python_iss.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-iss-3.0.1008 → tencentcloud-sdk-python-iss-3.0.1011}/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.1008
3
+ Version: 3.0.1011
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.1008"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1011"],
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.1008'
17
+ __version__ = '3.0.1011'
@@ -13510,7 +13510,7 @@ class UpdateDeviceData(AbstractModel):
13510
13510
  :param _DeviceId: 设备ID
13511
13511
  注意:此字段可能返回 null,表示取不到有效值。
13512
13512
  :type DeviceId: str
13513
- :param _Code: 设备编码(即我们为设备生成的20位国标编码)
13513
+ :param _Code: 设备编码(国标设备即我们为设备生成的20位国标编码,rtmp 设备为10 位设备编码)
13514
13514
  注意:此字段可能返回 null,表示取不到有效值。
13515
13515
  :type Code: str
13516
13516
  :param _Name: 设备名称
@@ -15337,6 +15337,8 @@ class UpdateUserDeviceRequest(AbstractModel):
15337
15337
  :type Port: int
15338
15338
  :param _Username: 设备用户名(仅网关接入支持)
15339
15339
  :type Username: str
15340
+ :param _ProtocolType: 网关设备接入协议(仅网关接入支持)
15341
+ :type ProtocolType: int
15340
15342
  """
15341
15343
  self._DeviceId = None
15342
15344
  self._Name = None
@@ -15346,6 +15348,7 @@ class UpdateUserDeviceRequest(AbstractModel):
15346
15348
  self._Ip = None
15347
15349
  self._Port = None
15348
15350
  self._Username = None
15351
+ self._ProtocolType = None
15349
15352
 
15350
15353
  @property
15351
15354
  def DeviceId(self):
@@ -15411,6 +15414,14 @@ class UpdateUserDeviceRequest(AbstractModel):
15411
15414
  def Username(self, Username):
15412
15415
  self._Username = Username
15413
15416
 
15417
+ @property
15418
+ def ProtocolType(self):
15419
+ return self._ProtocolType
15420
+
15421
+ @ProtocolType.setter
15422
+ def ProtocolType(self, ProtocolType):
15423
+ self._ProtocolType = ProtocolType
15424
+
15414
15425
 
15415
15426
  def _deserialize(self, params):
15416
15427
  self._DeviceId = params.get("DeviceId")
@@ -15421,6 +15432,7 @@ class UpdateUserDeviceRequest(AbstractModel):
15421
15432
  self._Ip = params.get("Ip")
15422
15433
  self._Port = params.get("Port")
15423
15434
  self._Username = params.get("Username")
15435
+ self._ProtocolType = params.get("ProtocolType")
15424
15436
  memeber_set = set(params.keys())
15425
15437
  for name, value in vars(self).items():
15426
15438
  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.1008
3
+ Version: 3.0.1011
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.1011
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1008