tencentcloud-sdk-python-iss 3.0.1213__tar.gz → 3.0.1226__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.1213 → tencentcloud-sdk-python-iss-3.0.1226}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/setup.py +1 -1
  3. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud/iss/v20230517/models.py +28 -0
  5. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud_sdk_python_iss.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-iss-3.0.1226/tencentcloud_sdk_python_iss.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-iss-3.0.1213/tencentcloud_sdk_python_iss.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/README.rst +0 -0
  9. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud/iss/__init__.py +0 -0
  11. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud/iss/v20230517/__init__.py +0 -0
  12. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud/iss/v20230517/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud/iss/v20230517/iss_client.py +0 -0
  14. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud_sdk_python_iss.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/tencentcloud_sdk_python_iss.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-iss-3.0.1213 → tencentcloud-sdk-python-iss-3.0.1226}/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.1213
3
+ Version: 3.0.1226
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.1213"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1226"],
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.1213'
17
+ __version__ = '3.0.1226'
@@ -8576,6 +8576,14 @@ class DescribeVideoDownloadUrlRequest(AbstractModel):
8576
8576
  :type IsRespActualTime: bool
8577
8577
  :param _IsInternal: 是否返回内网下载URL,默认是false,返回公网下载URL,true则返回内网下载URL
8578
8578
  :type IsInternal: bool
8579
+ :param _Expires: 设置URL的有效期, 最小值是1秒, 最大值是86400秒, 不设置的话, 默认是600秒
8580
+ :type Expires: int
8581
+ :param _IsSupportG711: 下载的MP4文件是否支持G711音频编码.
8582
+ 注意: 如果云端录像中的音频编码为AAC, 那么下载的MP4默认是支持AAC编码的
8583
+ 如果云端录像中的音频编码为G711且 IsSupportG711设置为true时, 下载的MP4是支持G711音频编码
8584
+ 如果云端录像中的音频编码为G711且 IsSupportG711设置为false时, 下载的MP4是不支持G711音频编码
8585
+ 该参数只对FileType为mp4才有效, 不设置的话, 默认是false
8586
+ :type IsSupportG711: bool
8579
8587
  """
8580
8588
  self._ChannelId = None
8581
8589
  self._BeginTime = None
@@ -8583,6 +8591,8 @@ class DescribeVideoDownloadUrlRequest(AbstractModel):
8583
8591
  self._FileType = None
8584
8592
  self._IsRespActualTime = None
8585
8593
  self._IsInternal = None
8594
+ self._Expires = None
8595
+ self._IsSupportG711 = None
8586
8596
 
8587
8597
  @property
8588
8598
  def ChannelId(self):
@@ -8632,6 +8642,22 @@ class DescribeVideoDownloadUrlRequest(AbstractModel):
8632
8642
  def IsInternal(self, IsInternal):
8633
8643
  self._IsInternal = IsInternal
8634
8644
 
8645
+ @property
8646
+ def Expires(self):
8647
+ return self._Expires
8648
+
8649
+ @Expires.setter
8650
+ def Expires(self, Expires):
8651
+ self._Expires = Expires
8652
+
8653
+ @property
8654
+ def IsSupportG711(self):
8655
+ return self._IsSupportG711
8656
+
8657
+ @IsSupportG711.setter
8658
+ def IsSupportG711(self, IsSupportG711):
8659
+ self._IsSupportG711 = IsSupportG711
8660
+
8635
8661
 
8636
8662
  def _deserialize(self, params):
8637
8663
  self._ChannelId = params.get("ChannelId")
@@ -8640,6 +8666,8 @@ class DescribeVideoDownloadUrlRequest(AbstractModel):
8640
8666
  self._FileType = params.get("FileType")
8641
8667
  self._IsRespActualTime = params.get("IsRespActualTime")
8642
8668
  self._IsInternal = params.get("IsInternal")
8669
+ self._Expires = params.get("Expires")
8670
+ self._IsSupportG711 = params.get("IsSupportG711")
8643
8671
  memeber_set = set(params.keys())
8644
8672
  for name, value in vars(self).items():
8645
8673
  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.1213
3
+ Version: 3.0.1226
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.1226
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1213