Skip to content

Commit 05a5751

Browse files
committed
由仁让发起的LIVE SDK自动发布, BUILD_ID=291, 版本号:3.2.0
发布日志: 1, Add Input parameter StartTime for DescribeCasters. 2, Add return value CallbackUrl, SideOutputUrl for DescribeCasterConfig. 3, Add Callback Event SideOutputUrlInvalid for Callback. 4, Add Input parameter SideOutputUrl for SetCasterConfig. 5, Add api DeleteLiveRecordVodConfig. 6, Add api AddLiveRecordVodConfig. 7, Add api DescribeLiveRecordVodConfigs.
1 parent 6ff51a8 commit 05a5751

File tree

12 files changed

+236
-162
lines changed

12 files changed

+236
-162
lines changed

aliyun-python-sdk-live/ChangeLog.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2017-12-22 Version: 3.2.0
2+
1, Add Input parameter StartTime for DescribeCasters.
3+
2, Add return value CallbackUrl, SideOutputUrl for DescribeCasterConfig.
4+
3, Add Callback Event SideOutputUrlInvalid for Callback.
5+
4, Add Input parameter SideOutputUrl for SetCasterConfig.
6+
5, Add api DeleteLiveRecordVodConfig.
7+
6, Add api AddLiveRecordVodConfig.
8+
7, Add api DescribeLiveRecordVodConfigs.
9+
110
2017-11-29 Version: 3.1.0
211
1, add API AddCasterComponent,DeleteCasterComponent,DescribeCasterComponents
312
2, update API UpdateCasterSceneConfig,SetCasterSceneConfig,DescribeCasterScenes

aliyun-python-sdk-live/aliyun_python_sdk_live.egg-info/PKG-INFO

Lines changed: 0 additions & 33 deletions
This file was deleted.

aliyun-python-sdk-live/aliyun_python_sdk_live.egg-info/SOURCES.txt

Lines changed: 0 additions & 97 deletions
This file was deleted.

aliyun-python-sdk-live/aliyun_python_sdk_live.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

aliyun-python-sdk-live/aliyun_python_sdk_live.egg-info/requires.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

aliyun-python-sdk-live/aliyun_python_sdk_live.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.1.0"
1+
__version__ = "3.2.0"
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class AddLiveRecordVodConfigRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'live', '2016-11-01', 'AddLiveRecordVodConfig')
25+
26+
def get_AppName(self):
27+
return self.get_query_params().get('AppName')
28+
29+
def set_AppName(self,AppName):
30+
self.add_query_param('AppName',AppName)
31+
32+
def get_SecurityToken(self):
33+
return self.get_query_params().get('SecurityToken')
34+
35+
def set_SecurityToken(self,SecurityToken):
36+
self.add_query_param('SecurityToken',SecurityToken)
37+
38+
def get_DomainName(self):
39+
return self.get_query_params().get('DomainName')
40+
41+
def set_DomainName(self,DomainName):
42+
self.add_query_param('DomainName',DomainName)
43+
44+
def get_CycleDuration(self):
45+
return self.get_query_params().get('CycleDuration')
46+
47+
def set_CycleDuration(self,CycleDuration):
48+
self.add_query_param('CycleDuration',CycleDuration)
49+
50+
def get_OwnerId(self):
51+
return self.get_query_params().get('OwnerId')
52+
53+
def set_OwnerId(self,OwnerId):
54+
self.add_query_param('OwnerId',OwnerId)
55+
56+
def get_Version(self):
57+
return self.get_query_params().get('Version')
58+
59+
def set_Version(self,Version):
60+
self.add_query_param('Version',Version)
61+
62+
def get_VodTranscodeGroupId(self):
63+
return self.get_query_params().get('VodTranscodeGroupId')
64+
65+
def set_VodTranscodeGroupId(self,VodTranscodeGroupId):
66+
self.add_query_param('VodTranscodeGroupId',VodTranscodeGroupId)
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class DeleteLiveRecordVodConfigRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'live', '2016-11-01', 'DeleteLiveRecordVodConfig')
25+
26+
def get_AppName(self):
27+
return self.get_query_params().get('AppName')
28+
29+
def set_AppName(self,AppName):
30+
self.add_query_param('AppName',AppName)
31+
32+
def get_SecurityToken(self):
33+
return self.get_query_params().get('SecurityToken')
34+
35+
def set_SecurityToken(self,SecurityToken):
36+
self.add_query_param('SecurityToken',SecurityToken)
37+
38+
def get_DomainName(self):
39+
return self.get_query_params().get('DomainName')
40+
41+
def set_DomainName(self,DomainName):
42+
self.add_query_param('DomainName',DomainName)
43+
44+
def get_OwnerId(self):
45+
return self.get_query_params().get('OwnerId')
46+
47+
def set_OwnerId(self,OwnerId):
48+
self.add_query_param('OwnerId',OwnerId)
49+
50+
def get_Version(self):
51+
return self.get_query_params().get('Version')
52+
53+
def set_Version(self,Version):
54+
self.add_query_param('Version',Version)
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class DescribeLiveRecordVodConfigsRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'live', '2016-11-01', 'DescribeLiveRecordVodConfigs')
25+
26+
def get_AppName(self):
27+
return self.get_query_params().get('AppName')
28+
29+
def set_AppName(self,AppName):
30+
self.add_query_param('AppName',AppName)
31+
32+
def get_SecurityToken(self):
33+
return self.get_query_params().get('SecurityToken')
34+
35+
def set_SecurityToken(self,SecurityToken):
36+
self.add_query_param('SecurityToken',SecurityToken)
37+
38+
def get_DomainName(self):
39+
return self.get_query_params().get('DomainName')
40+
41+
def set_DomainName(self,DomainName):
42+
self.add_query_param('DomainName',DomainName)
43+
44+
def get_PageSize(self):
45+
return self.get_query_params().get('PageSize')
46+
47+
def set_PageSize(self,PageSize):
48+
self.add_query_param('PageSize',PageSize)
49+
50+
def get_OwnerId(self):
51+
return self.get_query_params().get('OwnerId')
52+
53+
def set_OwnerId(self,OwnerId):
54+
self.add_query_param('OwnerId',OwnerId)
55+
56+
def get_PageNum(self):
57+
return self.get_query_params().get('PageNum')
58+
59+
def set_PageNum(self,PageNum):
60+
self.add_query_param('PageNum',PageNum)
61+
62+
def get_Version(self):
63+
return self.get_query_params().get('Version')
64+
65+
def set_Version(self,Version):
66+
self.add_query_param('Version',Version)

0 commit comments

Comments
 (0)