Skip to content

Commit d4340ed

Browse files
committed
MTS SDK Auto Released By shenshi,Version:2.6.1
发布日志: 1, Update Dependency
1 parent f9d2581 commit d4340ed

27 files changed

+1524
-22
lines changed

aliyun-python-sdk-mts/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-15 Version: 2.6.1
2+
1, Update Dependency
3+
14
2018-08-05 Version: 2.6.0
25
1, Add Interface SubmitSubtitleJob
36
2, Support convert ttml、stl subtitle to vtt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.6.0"
1+
__version__ = "2.6.1"
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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 AddMCTemplateRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Mts', '2014-06-18', 'AddMCTemplate','mts')
25+
26+
def get_Politics(self):
27+
return self.get_query_params().get('Politics')
28+
29+
def set_Politics(self,Politics):
30+
self.add_query_param('Politics',Politics)
31+
32+
def get_ResourceOwnerId(self):
33+
return self.get_query_params().get('ResourceOwnerId')
34+
35+
def set_ResourceOwnerId(self,ResourceOwnerId):
36+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
37+
38+
def get_Contraband(self):
39+
return self.get_query_params().get('Contraband')
40+
41+
def set_Contraband(self,Contraband):
42+
self.add_query_param('Contraband',Contraband)
43+
44+
def get_Ad(self):
45+
return self.get_query_params().get('Ad')
46+
47+
def set_Ad(self,Ad):
48+
self.add_query_param('Ad',Ad)
49+
50+
def get_Abuse(self):
51+
return self.get_query_params().get('Abuse')
52+
53+
def set_Abuse(self,Abuse):
54+
self.add_query_param('Abuse',Abuse)
55+
56+
def get_ResourceOwnerAccount(self):
57+
return self.get_query_params().get('ResourceOwnerAccount')
58+
59+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
60+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
61+
62+
def get_Qrcode(self):
63+
return self.get_query_params().get('Qrcode')
64+
65+
def set_Qrcode(self,Qrcode):
66+
self.add_query_param('Qrcode',Qrcode)
67+
68+
def get_OwnerAccount(self):
69+
return self.get_query_params().get('OwnerAccount')
70+
71+
def set_OwnerAccount(self,OwnerAccount):
72+
self.add_query_param('OwnerAccount',OwnerAccount)
73+
74+
def get_OwnerId(self):
75+
return self.get_query_params().get('OwnerId')
76+
77+
def set_OwnerId(self,OwnerId):
78+
self.add_query_param('OwnerId',OwnerId)
79+
80+
def get_Porn(self):
81+
return self.get_query_params().get('Porn')
82+
83+
def set_Porn(self,Porn):
84+
self.add_query_param('Porn',Porn)
85+
86+
def get_Terrorism(self):
87+
return self.get_query_params().get('Terrorism')
88+
89+
def set_Terrorism(self,Terrorism):
90+
self.add_query_param('Terrorism',Terrorism)
91+
92+
def get_Name(self):
93+
return self.get_query_params().get('Name')
94+
95+
def set_Name(self,Name):
96+
self.add_query_param('Name',Name)
97+
98+
def get_Logo(self):
99+
return self.get_query_params().get('Logo')
100+
101+
def set_Logo(self,Logo):
102+
self.add_query_param('Logo',Logo)
103+
104+
def get_spam(self):
105+
return self.get_query_params().get('spam')
106+
107+
def set_spam(self,spam):
108+
self.add_query_param('spam',spam)
109+
110+
def get_Live(self):
111+
return self.get_query_params().get('Live')
112+
113+
def set_Live(self,Live):
114+
self.add_query_param('Live',Live)
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 CreateMcuTemplateRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Mts', '2014-06-18', 'CreateMcuTemplate','mts')
25+
26+
def get_Template(self):
27+
return self.get_query_params().get('Template')
28+
29+
def set_Template(self,Template):
30+
self.add_query_param('Template',Template)
31+
32+
def get_ResourceOwnerId(self):
33+
return self.get_query_params().get('ResourceOwnerId')
34+
35+
def set_ResourceOwnerId(self,ResourceOwnerId):
36+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
37+
38+
def get_ResourceOwnerAccount(self):
39+
return self.get_query_params().get('ResourceOwnerAccount')
40+
41+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
42+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
43+
44+
def get_OwnerAccount(self):
45+
return self.get_query_params().get('OwnerAccount')
46+
47+
def set_OwnerAccount(self,OwnerAccount):
48+
self.add_query_param('OwnerAccount',OwnerAccount)
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)
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 DeleteMCTemplateRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Mts', '2014-06-18', 'DeleteMCTemplate','mts')
25+
26+
def get_ResourceOwnerId(self):
27+
return self.get_query_params().get('ResourceOwnerId')
28+
29+
def set_ResourceOwnerId(self,ResourceOwnerId):
30+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
31+
32+
def get_ResourceOwnerAccount(self):
33+
return self.get_query_params().get('ResourceOwnerAccount')
34+
35+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
36+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
37+
38+
def get_OwnerAccount(self):
39+
return self.get_query_params().get('OwnerAccount')
40+
41+
def set_OwnerAccount(self,OwnerAccount):
42+
self.add_query_param('OwnerAccount',OwnerAccount)
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_TemplateId(self):
51+
return self.get_query_params().get('TemplateId')
52+
53+
def set_TemplateId(self,TemplateId):
54+
self.add_query_param('TemplateId',TemplateId)
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 DeleteMcuJobRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Mts', '2014-06-18', 'DeleteMcuJob','mts')
25+
26+
def get_ResourceOwnerId(self):
27+
return self.get_query_params().get('ResourceOwnerId')
28+
29+
def set_ResourceOwnerId(self,ResourceOwnerId):
30+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
31+
32+
def get_ResourceOwnerAccount(self):
33+
return self.get_query_params().get('ResourceOwnerAccount')
34+
35+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
36+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
37+
38+
def get_OwnerAccount(self):
39+
return self.get_query_params().get('OwnerAccount')
40+
41+
def set_OwnerAccount(self,OwnerAccount):
42+
self.add_query_param('OwnerAccount',OwnerAccount)
43+
44+
def get_JobIds(self):
45+
return self.get_query_params().get('JobIds')
46+
47+
def set_JobIds(self,JobIds):
48+
self.add_query_param('JobIds',JobIds)
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)
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 DeleteMcuTemplateRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Mts', '2014-06-18', 'DeleteMcuTemplate','mts')
25+
26+
def get_ResourceOwnerId(self):
27+
return self.get_query_params().get('ResourceOwnerId')
28+
29+
def set_ResourceOwnerId(self,ResourceOwnerId):
30+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
31+
32+
def get_ResourceOwnerAccount(self):
33+
return self.get_query_params().get('ResourceOwnerAccount')
34+
35+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
36+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
37+
38+
def get_OwnerAccount(self):
39+
return self.get_query_params().get('OwnerAccount')
40+
41+
def set_OwnerAccount(self,OwnerAccount):
42+
self.add_query_param('OwnerAccount',OwnerAccount)
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_TemplateId(self):
51+
return self.get_query_params().get('TemplateId')
52+
53+
def set_TemplateId(self,TemplateId):
54+
self.add_query_param('TemplateId',TemplateId)

aliyun-python-sdk-mts/aliyunsdkmts/request/v20140618/ListAllMediaBucketRequest.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,24 @@ def get_ResourceOwnerAccount(self):
3535
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
3636
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
3737

38+
def get_NextPageToken(self):
39+
return self.get_query_params().get('NextPageToken')
40+
41+
def set_NextPageToken(self,NextPageToken):
42+
self.add_query_param('NextPageToken',NextPageToken)
43+
3844
def get_OwnerAccount(self):
3945
return self.get_query_params().get('OwnerAccount')
4046

4147
def set_OwnerAccount(self,OwnerAccount):
4248
self.add_query_param('OwnerAccount',OwnerAccount)
4349

50+
def get_MaximumPageSize(self):
51+
return self.get_query_params().get('MaximumPageSize')
52+
53+
def set_MaximumPageSize(self,MaximumPageSize):
54+
self.add_query_param('MaximumPageSize',MaximumPageSize)
55+
4456
def get_OwnerId(self):
4557
return self.get_query_params().get('OwnerId')
4658

0 commit comments

Comments
 (0)