tencentcloud-sdk-python-live 3.0.1349__tar.gz → 3.0.1350__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.
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud/live/v20180801/models.py +45 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1350/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1349/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud/live/v20180801/live_client.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1349 → tencentcloud-sdk-python-live-3.0.1350}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1350"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -22126,10 +22126,13 @@ Mainland:查询国内数据,
|
|
|
22126
22126
|
Oversea:则查询国外数据,
|
|
22127
22127
|
默认:查询国内+国外的数据。
|
|
22128
22128
|
:type MainlandOrOversea: str
|
|
22129
|
+
:param _SourceType: 可选值: PullLivePushLive:拉流源类型为直播 PullVodPushLive:拉流源类型为点播 PullPicPushLive:拉流源类型为图片 默认:查询全部拉流源类型
|
|
22130
|
+
:type SourceType: str
|
|
22129
22131
|
"""
|
|
22130
22132
|
self._StartTime = None
|
|
22131
22133
|
self._EndTime = None
|
|
22132
22134
|
self._MainlandOrOversea = None
|
|
22135
|
+
self._SourceType = None
|
|
22133
22136
|
|
|
22134
22137
|
@property
|
|
22135
22138
|
def StartTime(self):
|
|
@@ -22172,11 +22175,23 @@ Oversea:则查询国外数据,
|
|
|
22172
22175
|
def MainlandOrOversea(self, MainlandOrOversea):
|
|
22173
22176
|
self._MainlandOrOversea = MainlandOrOversea
|
|
22174
22177
|
|
|
22178
|
+
@property
|
|
22179
|
+
def SourceType(self):
|
|
22180
|
+
"""可选值: PullLivePushLive:拉流源类型为直播 PullVodPushLive:拉流源类型为点播 PullPicPushLive:拉流源类型为图片 默认:查询全部拉流源类型
|
|
22181
|
+
:rtype: str
|
|
22182
|
+
"""
|
|
22183
|
+
return self._SourceType
|
|
22184
|
+
|
|
22185
|
+
@SourceType.setter
|
|
22186
|
+
def SourceType(self, SourceType):
|
|
22187
|
+
self._SourceType = SourceType
|
|
22188
|
+
|
|
22175
22189
|
|
|
22176
22190
|
def _deserialize(self, params):
|
|
22177
22191
|
self._StartTime = params.get("StartTime")
|
|
22178
22192
|
self._EndTime = params.get("EndTime")
|
|
22179
22193
|
self._MainlandOrOversea = params.get("MainlandOrOversea")
|
|
22194
|
+
self._SourceType = params.get("SourceType")
|
|
22180
22195
|
memeber_set = set(params.keys())
|
|
22181
22196
|
for name, value in vars(self).items():
|
|
22182
22197
|
property_name = name[1:]
|
|
@@ -22198,11 +22213,14 @@ class DescribePullTransformPushInfoResponse(AbstractModel):
|
|
|
22198
22213
|
:type DataInfoList: list of TaskDurationInfo
|
|
22199
22214
|
:param _TotalDuration: 拉流转推得总时长
|
|
22200
22215
|
:type TotalDuration: int
|
|
22216
|
+
:param _TotalDurationSecond: 拉流转推得总时长(秒)
|
|
22217
|
+
:type TotalDurationSecond: int
|
|
22201
22218
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
22202
22219
|
:type RequestId: str
|
|
22203
22220
|
"""
|
|
22204
22221
|
self._DataInfoList = None
|
|
22205
22222
|
self._TotalDuration = None
|
|
22223
|
+
self._TotalDurationSecond = None
|
|
22206
22224
|
self._RequestId = None
|
|
22207
22225
|
|
|
22208
22226
|
@property
|
|
@@ -22227,6 +22245,17 @@ class DescribePullTransformPushInfoResponse(AbstractModel):
|
|
|
22227
22245
|
def TotalDuration(self, TotalDuration):
|
|
22228
22246
|
self._TotalDuration = TotalDuration
|
|
22229
22247
|
|
|
22248
|
+
@property
|
|
22249
|
+
def TotalDurationSecond(self):
|
|
22250
|
+
"""拉流转推得总时长(秒)
|
|
22251
|
+
:rtype: int
|
|
22252
|
+
"""
|
|
22253
|
+
return self._TotalDurationSecond
|
|
22254
|
+
|
|
22255
|
+
@TotalDurationSecond.setter
|
|
22256
|
+
def TotalDurationSecond(self, TotalDurationSecond):
|
|
22257
|
+
self._TotalDurationSecond = TotalDurationSecond
|
|
22258
|
+
|
|
22230
22259
|
@property
|
|
22231
22260
|
def RequestId(self):
|
|
22232
22261
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -22247,6 +22276,7 @@ class DescribePullTransformPushInfoResponse(AbstractModel):
|
|
|
22247
22276
|
obj._deserialize(item)
|
|
22248
22277
|
self._DataInfoList.append(obj)
|
|
22249
22278
|
self._TotalDuration = params.get("TotalDuration")
|
|
22279
|
+
self._TotalDurationSecond = params.get("TotalDurationSecond")
|
|
22250
22280
|
self._RequestId = params.get("RequestId")
|
|
22251
22281
|
|
|
22252
22282
|
|
|
@@ -37117,9 +37147,12 @@ class TaskDurationInfo(AbstractModel):
|
|
|
37117
37147
|
:type Time: str
|
|
37118
37148
|
:param _Duration: 拉流转推任务的时长,单位为分钟
|
|
37119
37149
|
:type Duration: int
|
|
37150
|
+
:param _DurationSecond: 拉流转推任务的时长,单位为秒
|
|
37151
|
+
:type DurationSecond: int
|
|
37120
37152
|
"""
|
|
37121
37153
|
self._Time = None
|
|
37122
37154
|
self._Duration = None
|
|
37155
|
+
self._DurationSecond = None
|
|
37123
37156
|
|
|
37124
37157
|
@property
|
|
37125
37158
|
def Time(self):
|
|
@@ -37143,10 +37176,22 @@ class TaskDurationInfo(AbstractModel):
|
|
|
37143
37176
|
def Duration(self, Duration):
|
|
37144
37177
|
self._Duration = Duration
|
|
37145
37178
|
|
|
37179
|
+
@property
|
|
37180
|
+
def DurationSecond(self):
|
|
37181
|
+
"""拉流转推任务的时长,单位为秒
|
|
37182
|
+
:rtype: int
|
|
37183
|
+
"""
|
|
37184
|
+
return self._DurationSecond
|
|
37185
|
+
|
|
37186
|
+
@DurationSecond.setter
|
|
37187
|
+
def DurationSecond(self, DurationSecond):
|
|
37188
|
+
self._DurationSecond = DurationSecond
|
|
37189
|
+
|
|
37146
37190
|
|
|
37147
37191
|
def _deserialize(self, params):
|
|
37148
37192
|
self._Time = params.get("Time")
|
|
37149
37193
|
self._Duration = params.get("Duration")
|
|
37194
|
+
self._DurationSecond = params.get("DurationSecond")
|
|
37150
37195
|
memeber_set = set(params.keys())
|
|
37151
37196
|
for name, value in vars(self).items():
|
|
37152
37197
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1350
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1349
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|