tencentcloud-sdk-python-iss 3.0.1245__tar.gz → 3.0.1248__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.1245 → tencentcloud-sdk-python-iss-3.0.1248}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/setup.py +1 -1
  3. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud/iss/v20230517/errorcodes.py +3 -0
  5. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud/iss/v20230517/models.py +25 -0
  6. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud_sdk_python_iss.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-iss-3.0.1248/tencentcloud_sdk_python_iss.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-iss-3.0.1245/tencentcloud_sdk_python_iss.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/README.rst +0 -0
  10. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud/iss/__init__.py +0 -0
  12. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud/iss/v20230517/__init__.py +0 -0
  13. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud/iss/v20230517/iss_client.py +0 -0
  14. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud_sdk_python_iss.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/tencentcloud_sdk_python_iss.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-iss-3.0.1245 → tencentcloud-sdk-python-iss-3.0.1248}/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.1245
3
+ Version: 3.0.1248
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.1245"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1248"],
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.1245'
17
+ __version__ = '3.0.1248'
@@ -68,6 +68,9 @@ INVALIDPARAMETER_INVALIDLIFERULEPARAM = 'InvalidParameter.InvalidLifeRuleParam'
68
68
  # 无效的组织参数
69
69
  INVALIDPARAMETER_INVALIDORGANIZATIONPARAM = 'InvalidParameter.InvalidOrganizationParam'
70
70
 
71
+ # 无效的输入参数
72
+ INVALIDPARAMETER_INVALIDPARAMETER = 'InvalidParameter.InvalidParameter'
73
+
71
74
  # 参数格式不对或缺少参数
72
75
  INVALIDPARAMETER_INVALIDPARAMETERFORMAT = 'InvalidParameter.InvalidParameterFormat'
73
76
 
@@ -7487,11 +7487,14 @@ class DescribeRecordFileRequest(AbstractModel):
7487
7487
  :type StartTime: int
7488
7488
  :param _EndTime: 检索结束时间,UTC秒数,例如:1662114246,开始和结束时间段最长为一天,且不能跨天
7489
7489
  :type EndTime: int
7490
+ :param _WithUrl: 是否携带每个时间段的播放url
7491
+ :type WithUrl: bool
7490
7492
  """
7491
7493
  self._DeviceId = None
7492
7494
  self._ChannelId = None
7493
7495
  self._StartTime = None
7494
7496
  self._EndTime = None
7497
+ self._WithUrl = None
7495
7498
 
7496
7499
  @property
7497
7500
  def DeviceId(self):
@@ -7525,12 +7528,21 @@ class DescribeRecordFileRequest(AbstractModel):
7525
7528
  def EndTime(self, EndTime):
7526
7529
  self._EndTime = EndTime
7527
7530
 
7531
+ @property
7532
+ def WithUrl(self):
7533
+ return self._WithUrl
7534
+
7535
+ @WithUrl.setter
7536
+ def WithUrl(self, WithUrl):
7537
+ self._WithUrl = WithUrl
7538
+
7528
7539
 
7529
7540
  def _deserialize(self, params):
7530
7541
  self._DeviceId = params.get("DeviceId")
7531
7542
  self._ChannelId = params.get("ChannelId")
7532
7543
  self._StartTime = params.get("StartTime")
7533
7544
  self._EndTime = params.get("EndTime")
7545
+ self._WithUrl = params.get("WithUrl")
7534
7546
  memeber_set = set(params.keys())
7535
7547
  for name, value in vars(self).items():
7536
7548
  property_name = name[1:]
@@ -13278,9 +13290,13 @@ class RecordTimeLine(AbstractModel):
13278
13290
  :type Begin: int
13279
13291
  :param _End: 时间片段结束时间,UTC秒数,例如:1662114146
13280
13292
  :type End: int
13293
+ :param _HlsUrl: 对应时间片段的播放url
13294
+ 注意:此字段可能返回 null,表示取不到有效值。
13295
+ :type HlsUrl: str
13281
13296
  """
13282
13297
  self._Begin = None
13283
13298
  self._End = None
13299
+ self._HlsUrl = None
13284
13300
 
13285
13301
  @property
13286
13302
  def Begin(self):
@@ -13298,10 +13314,19 @@ class RecordTimeLine(AbstractModel):
13298
13314
  def End(self, End):
13299
13315
  self._End = End
13300
13316
 
13317
+ @property
13318
+ def HlsUrl(self):
13319
+ return self._HlsUrl
13320
+
13321
+ @HlsUrl.setter
13322
+ def HlsUrl(self, HlsUrl):
13323
+ self._HlsUrl = HlsUrl
13324
+
13301
13325
 
13302
13326
  def _deserialize(self, params):
13303
13327
  self._Begin = params.get("Begin")
13304
13328
  self._End = params.get("End")
13329
+ self._HlsUrl = params.get("HlsUrl")
13305
13330
  memeber_set = set(params.keys())
13306
13331
  for name, value in vars(self).items():
13307
13332
  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.1245
3
+ Version: 3.0.1248
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.1248
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1245