Skip to content

Commit 2b6c38d

Browse files
committed
GetDailyPlayRegionStatis
1 parent 5e3121f commit 2b6c38d

8 files changed

+121
-3
lines changed

aliyun-python-sdk-vod/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-21 Version: 2.16.31
2+
- GetDailyPlayRegionStatis
3+
14
2025-01-08 Version: 2.16.30
25
- Modify BatchGetMediaInfos.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.16.30'
1+
__version__ = '2.16.31'
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
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+
from aliyunsdkvod.endpoint import endpoint_data
22+
23+
class DescribeVodEditingUsageDataRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodEditingUsageData','vod')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_StartTime(self): # String
35+
return self.get_query_params().get('StartTime')
36+
37+
def set_StartTime(self, StartTime): # String
38+
self.add_query_param('StartTime', StartTime)
39+
def get_EndTime(self): # String
40+
return self.get_query_params().get('EndTime')
41+
42+
def set_EndTime(self, EndTime): # String
43+
self.add_query_param('EndTime', EndTime)
44+
def get_Specification(self): # String
45+
return self.get_query_params().get('Specification')
46+
47+
def set_Specification(self, Specification): # String
48+
self.add_query_param('Specification', Specification)
49+
def get_OwnerId(self): # Long
50+
return self.get_query_params().get('OwnerId')
51+
52+
def set_OwnerId(self, OwnerId): # Long
53+
self.add_query_param('OwnerId', OwnerId)
54+
def get_AppId(self): # String
55+
return self.get_query_params().get('AppId')
56+
57+
def set_AppId(self, AppId): # String
58+
self.add_query_param('AppId', AppId)
59+
def get_Region(self): # String
60+
return self.get_query_params().get('Region')
61+
62+
def set_Region(self, Region): # String
63+
self.add_query_param('Region', Region)

aliyun-python-sdk-vod/aliyunsdkvod/request/v20170321/DescribeVodSSLCertificateListRequest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ class DescribeVodSSLCertificateListRequest(RpcRequest):
2424

2525
def __init__(self):
2626
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodSSLCertificateList','vod')
27-
self.set_protocol_type('https')
2827
self.set_method('POST')
2928

3029
if hasattr(self, "endpoint_map"):

aliyun-python-sdk-vod/aliyunsdkvod/request/v20170321/DescribeVodTieringStorageDataRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ def get_StorageClass(self): # String
5252

5353
def set_StorageClass(self, StorageClass): # String
5454
self.add_query_param('StorageClass', StorageClass)
55+
def get_AppId(self): # String
56+
return self.get_query_params().get('AppId')
57+
58+
def set_AppId(self, AppId): # String
59+
self.add_query_param('AppId', AppId)
5560
def get_Region(self): # String
5661
return self.get_query_params().get('Region')
5762

aliyun-python-sdk-vod/aliyunsdkvod/request/v20170321/DescribeVodTieringStorageRetrievalDataRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ def get_StorageClass(self): # String
5252

5353
def set_StorageClass(self, StorageClass): # String
5454
self.add_query_param('StorageClass', StorageClass)
55+
def get_AppId(self): # String
56+
return self.get_query_params().get('AppId')
57+
58+
def set_AppId(self, AppId): # String
59+
self.add_query_param('AppId', AppId)
5560
def get_Region(self): # String
5661
return self.get_query_params().get('Region')
5762

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
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+
from aliyunsdkvod.endpoint import endpoint_data
22+
23+
class GetDailyPlayRegionStatisRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'GetDailyPlayRegionStatis','vod')
27+
self.set_protocol_type('https')
28+
self.set_method('POST')
29+
30+
if hasattr(self, "endpoint_map"):
31+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
32+
if hasattr(self, "endpoint_regional"):
33+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
34+
35+
def get_Date(self): # String
36+
return self.get_query_params().get('Date')
37+
38+
def set_Date(self, Date): # String
39+
self.add_query_param('Date', Date)
40+
def get_MediaRegion(self): # String
41+
return self.get_query_params().get('MediaRegion')
42+
43+
def set_MediaRegion(self, MediaRegion): # String
44+
self.add_query_param('MediaRegion', MediaRegion)

aliyun-python-sdk-vod/aliyunsdkvod/request/v20170321/SetVodDomainSSLCertificateRequest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ class SetVodDomainSSLCertificateRequest(RpcRequest):
2424

2525
def __init__(self):
2626
RpcRequest.__init__(self, 'vod', '2017-03-21', 'SetVodDomainSSLCertificate','vod')
27-
self.set_protocol_type('https')
2827
self.set_method('POST')
2928

3029
if hasattr(self, "endpoint_map"):

0 commit comments

Comments
 (0)