tencentcloud-sdk-python-live 3.0.1385__tar.gz → 3.0.1387__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-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/setup.py +1 -1
  3. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud/live/v20180801/models.py +15 -0
  5. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-live-3.0.1387/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-live-3.0.1385/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/README.rst +0 -0
  9. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud/live/__init__.py +0 -0
  11. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud/live/v20180801/__init__.py +0 -0
  12. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud/live/v20180801/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud/live/v20180801/live_client.py +0 -0
  14. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-live-3.0.1385 → tencentcloud-sdk-python-live-3.0.1387}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1385
3
+ Version: 3.0.1387
4
4
  Summary: Tencent Cloud Live 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-live',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1385"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1387"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Live 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.1385'
17
+ __version__ = '3.0.1387'
@@ -34061,6 +34061,8 @@ class PushQualityData(AbstractModel):
34061
34061
  :type Flux: float
34062
34062
  :param _ServerIp: 推流服务端 IP。
34063
34063
  :type ServerIp: str
34064
+ :param _GopSize: 关键帧间隔 GOP ,单位:ms。
34065
+ :type GopSize: int
34064
34066
  """
34065
34067
  self._Time = None
34066
34068
  self._PushDomain = None
@@ -34085,6 +34087,7 @@ class PushQualityData(AbstractModel):
34085
34087
  self._Bandwidth = None
34086
34088
  self._Flux = None
34087
34089
  self._ServerIp = None
34090
+ self._GopSize = None
34088
34091
 
34089
34092
  @property
34090
34093
  def Time(self):
@@ -34341,6 +34344,17 @@ class PushQualityData(AbstractModel):
34341
34344
  def ServerIp(self, ServerIp):
34342
34345
  self._ServerIp = ServerIp
34343
34346
 
34347
+ @property
34348
+ def GopSize(self):
34349
+ """关键帧间隔 GOP ,单位:ms。
34350
+ :rtype: int
34351
+ """
34352
+ return self._GopSize
34353
+
34354
+ @GopSize.setter
34355
+ def GopSize(self, GopSize):
34356
+ self._GopSize = GopSize
34357
+
34344
34358
 
34345
34359
  def _deserialize(self, params):
34346
34360
  self._Time = params.get("Time")
@@ -34366,6 +34380,7 @@ class PushQualityData(AbstractModel):
34366
34380
  self._Bandwidth = params.get("Bandwidth")
34367
34381
  self._Flux = params.get("Flux")
34368
34382
  self._ServerIp = params.get("ServerIp")
34383
+ self._GopSize = params.get("GopSize")
34369
34384
  memeber_set = set(params.keys())
34370
34385
  for name, value in vars(self).items():
34371
34386
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1385
3
+ Version: 3.0.1387
4
4
  Summary: Tencent Cloud Live 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.1387
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1385