Skip to content

Commit fc13506

Browse files
committed
-DescribeVodCertificateDetail, DescribeVodCertificateList增加返回参数
1 parent 4a148b1 commit fc13506

8 files changed

+157
-6
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+
2024-08-13 Version: 2.16.24
2+
-DescribeVodCertificateDetail, DescribeVodCertificateList增加返回参数
3+
14
2024-05-08 Version: 2.16.23
25
-Fixed DescribeVodMediaPlayData接口返回数据类型错误
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.16.23'
1+
__version__ = '2.16.24'

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

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

3737
def set_Description(self, Description): # String
3838
self.add_query_param('Description', Description)
39+
def get_ResourceGroupId(self): # String
40+
return self.get_query_params().get('ResourceGroupId')
41+
42+
def set_ResourceGroupId(self, ResourceGroupId): # String
43+
self.add_query_param('ResourceGroupId', ResourceGroupId)
3944
def get_AppName(self): # String
4045
return self.get_query_params().get('AppName')
4146

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ def get_OwnerId(self): # Long
5656

5757
def set_OwnerId(self, OwnerId): # Long
5858
self.add_query_param('OwnerId', OwnerId)
59+
def get_AppId(self): # String
60+
return self.get_query_params().get('AppId')
61+
62+
def set_AppId(self, AppId): # String
63+
self.add_query_param('AppId', AppId)
5964
def get_Region(self): # String
6065
return self.get_query_params().get('Region')
6166

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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 DescribeVodTieringStorageDataRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodTieringStorageData','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_StartTime(self): # String
36+
return self.get_query_params().get('StartTime')
37+
38+
def set_StartTime(self, StartTime): # String
39+
self.add_query_param('StartTime', StartTime)
40+
def get_EndTime(self): # String
41+
return self.get_query_params().get('EndTime')
42+
43+
def set_EndTime(self, EndTime): # String
44+
self.add_query_param('EndTime', EndTime)
45+
def get_OwnerId(self): # Long
46+
return self.get_query_params().get('OwnerId')
47+
48+
def set_OwnerId(self, OwnerId): # Long
49+
self.add_query_param('OwnerId', OwnerId)
50+
def get_StorageClass(self): # String
51+
return self.get_query_params().get('StorageClass')
52+
53+
def set_StorageClass(self, StorageClass): # String
54+
self.add_query_param('StorageClass', StorageClass)
55+
def get_Region(self): # String
56+
return self.get_query_params().get('Region')
57+
58+
def set_Region(self, Region): # String
59+
self.add_query_param('Region', Region)
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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 DescribeVodTieringStorageRetrievalDataRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodTieringStorageRetrievalData','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_StartTime(self): # String
36+
return self.get_query_params().get('StartTime')
37+
38+
def set_StartTime(self, StartTime): # String
39+
self.add_query_param('StartTime', StartTime)
40+
def get_EndTime(self): # String
41+
return self.get_query_params().get('EndTime')
42+
43+
def set_EndTime(self, EndTime): # String
44+
self.add_query_param('EndTime', EndTime)
45+
def get_OwnerId(self): # Long
46+
return self.get_query_params().get('OwnerId')
47+
48+
def set_OwnerId(self, OwnerId): # Long
49+
self.add_query_param('OwnerId', OwnerId)
50+
def get_StorageClass(self): # String
51+
return self.get_query_params().get('StorageClass')
52+
53+
def set_StorageClass(self, StorageClass): # String
54+
self.add_query_param('StorageClass', StorageClass)
55+
def get_Region(self): # String
56+
return self.get_query_params().get('Region')
57+
58+
def set_Region(self, Region): # String
59+
self.add_query_param('Region', Region)

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ def __init__(self):
3131
if hasattr(self, "endpoint_regional"):
3232
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
3333

34+
def get_ResourceGroupId(self): # String
35+
return self.get_query_params().get('ResourceGroupId')
36+
37+
def set_ResourceGroupId(self, ResourceGroupId): # String
38+
self.add_query_param('ResourceGroupId', ResourceGroupId)
3439
def get_PageSize(self): # Integer
3540
return self.get_query_params().get('PageSize')
3641

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

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,28 @@ def get_ObjectPath(self): # String
3636

3737
def set_ObjectPath(self, ObjectPath): # String
3838
self.add_query_param('ObjectPath', ObjectPath)
39-
def get_OwnerId(self): # Long
40-
return self.get_query_params().get('OwnerId')
41-
42-
def set_OwnerId(self, OwnerId): # Long
43-
self.add_query_param('OwnerId', OwnerId)
4439
def get_SecurityToken(self): # String
4540
return self.get_query_params().get('SecurityToken')
4641

4742
def set_SecurityToken(self, SecurityToken): # String
4843
self.add_query_param('SecurityToken', SecurityToken)
44+
def get_L2Preload(self): # Boolean
45+
return self.get_query_params().get('L2Preload')
46+
47+
def set_L2Preload(self, L2Preload): # Boolean
48+
self.add_query_param('L2Preload', L2Preload)
49+
def get_Area(self): # String
50+
return self.get_query_params().get('Area')
51+
52+
def set_Area(self, Area): # String
53+
self.add_query_param('Area', Area)
54+
def get_WithHeader(self): # String
55+
return self.get_query_params().get('WithHeader')
56+
57+
def set_WithHeader(self, WithHeader): # String
58+
self.add_query_param('WithHeader', WithHeader)
59+
def get_OwnerId(self): # Long
60+
return self.get_query_params().get('OwnerId')
61+
62+
def set_OwnerId(self, OwnerId): # Long
63+
self.add_query_param('OwnerId', OwnerId)

0 commit comments

Comments
 (0)