Skip to content

Commit 517460c

Browse files
committed
Generated 2017-03-21 for vod.
1 parent cb270ed commit 517460c

17 files changed

+838
-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-04-25 Version: 2.16.22
2+
- Generated 2017-03-21 for `vod`.
3+
14
2023-12-15 Version: 2.16.21
25
- SubmitSnapshotJob add parameter
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.16.21'
1+
__version__ = '2.16.22'
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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 DescribeVodDomainBpsDataByLayerRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodDomainBpsDataByLayer','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_LocationNameEn(self): # String
35+
return self.get_query_params().get('LocationNameEn')
36+
37+
def set_LocationNameEn(self, LocationNameEn): # String
38+
self.add_query_param('LocationNameEn', LocationNameEn)
39+
def get_StartTime(self): # String
40+
return self.get_query_params().get('StartTime')
41+
42+
def set_StartTime(self, StartTime): # String
43+
self.add_query_param('StartTime', StartTime)
44+
def get_IspNameEn(self): # String
45+
return self.get_query_params().get('IspNameEn')
46+
47+
def set_IspNameEn(self, IspNameEn): # String
48+
self.add_query_param('IspNameEn', IspNameEn)
49+
def get_Layer(self): # String
50+
return self.get_query_params().get('Layer')
51+
52+
def set_Layer(self, Layer): # String
53+
self.add_query_param('Layer', Layer)
54+
def get_DomainName(self): # String
55+
return self.get_query_params().get('DomainName')
56+
57+
def set_DomainName(self, DomainName): # String
58+
self.add_query_param('DomainName', DomainName)
59+
def get_EndTime(self): # String
60+
return self.get_query_params().get('EndTime')
61+
62+
def set_EndTime(self, EndTime): # String
63+
self.add_query_param('EndTime', EndTime)
64+
def get_OwnerId(self): # Long
65+
return self.get_query_params().get('OwnerId')
66+
67+
def set_OwnerId(self, OwnerId): # Long
68+
self.add_query_param('OwnerId', OwnerId)
69+
def get_Interval(self): # String
70+
return self.get_query_params().get('Interval')
71+
72+
def set_Interval(self, Interval): # String
73+
self.add_query_param('Interval', Interval)
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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 DescribeVodDomainHitRateDataRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodDomainHitRateData','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_DomainName(self): # String
40+
return self.get_query_params().get('DomainName')
41+
42+
def set_DomainName(self, DomainName): # String
43+
self.add_query_param('DomainName', DomainName)
44+
def get_EndTime(self): # String
45+
return self.get_query_params().get('EndTime')
46+
47+
def set_EndTime(self, EndTime): # String
48+
self.add_query_param('EndTime', EndTime)
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_Interval(self): # String
55+
return self.get_query_params().get('Interval')
56+
57+
def set_Interval(self, Interval): # String
58+
self.add_query_param('Interval', Interval)
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 DescribeVodDomainRealTimeBpsDataRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodDomainRealTimeBpsData','vod')
27+
self.set_method('GET')
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_LocationNameEn(self): # String
35+
return self.get_query_params().get('LocationNameEn')
36+
37+
def set_LocationNameEn(self, LocationNameEn): # String
38+
self.add_query_param('LocationNameEn', LocationNameEn)
39+
def get_IspNameEn(self): # String
40+
return self.get_query_params().get('IspNameEn')
41+
42+
def set_IspNameEn(self, IspNameEn): # String
43+
self.add_query_param('IspNameEn', IspNameEn)
44+
def get_StartTime(self): # String
45+
return self.get_query_params().get('StartTime')
46+
47+
def set_StartTime(self, StartTime): # String
48+
self.add_query_param('StartTime', StartTime)
49+
def get_DomainName(self): # String
50+
return self.get_query_params().get('DomainName')
51+
52+
def set_DomainName(self, DomainName): # String
53+
self.add_query_param('DomainName', DomainName)
54+
def get_EndTime(self): # String
55+
return self.get_query_params().get('EndTime')
56+
57+
def set_EndTime(self, EndTime): # String
58+
self.add_query_param('EndTime', EndTime)
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)
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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 DescribeVodDomainRealTimeByteHitRateDataRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodDomainRealTimeByteHitRateData','vod')
27+
self.set_method('GET')
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_DomainName(self): # String
40+
return self.get_query_params().get('DomainName')
41+
42+
def set_DomainName(self, DomainName): # String
43+
self.add_query_param('DomainName', DomainName)
44+
def get_EndTime(self): # String
45+
return self.get_query_params().get('EndTime')
46+
47+
def set_EndTime(self, EndTime): # String
48+
self.add_query_param('EndTime', EndTime)
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)
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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 DescribeVodDomainRealTimeDetailDataRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodDomainRealTimeDetailData','vod')
27+
self.set_method('GET')
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_LocationNameEn(self): # String
35+
return self.get_query_params().get('LocationNameEn')
36+
37+
def set_LocationNameEn(self, LocationNameEn): # String
38+
self.add_query_param('LocationNameEn', LocationNameEn)
39+
def get_StartTime(self): # String
40+
return self.get_query_params().get('StartTime')
41+
42+
def set_StartTime(self, StartTime): # String
43+
self.add_query_param('StartTime', StartTime)
44+
def get_IspNameEn(self): # String
45+
return self.get_query_params().get('IspNameEn')
46+
47+
def set_IspNameEn(self, IspNameEn): # String
48+
self.add_query_param('IspNameEn', IspNameEn)
49+
def get_Merge(self): # String
50+
return self.get_query_params().get('Merge')
51+
52+
def set_Merge(self, Merge): # String
53+
self.add_query_param('Merge', Merge)
54+
def get_DomainName(self): # String
55+
return self.get_query_params().get('DomainName')
56+
57+
def set_DomainName(self, DomainName): # String
58+
self.add_query_param('DomainName', DomainName)
59+
def get_EndTime(self): # String
60+
return self.get_query_params().get('EndTime')
61+
62+
def set_EndTime(self, EndTime): # String
63+
self.add_query_param('EndTime', EndTime)
64+
def get_MergeLocIsp(self): # String
65+
return self.get_query_params().get('MergeLocIsp')
66+
67+
def set_MergeLocIsp(self, MergeLocIsp): # String
68+
self.add_query_param('MergeLocIsp', MergeLocIsp)
69+
def get_OwnerId(self): # Long
70+
return self.get_query_params().get('OwnerId')
71+
72+
def set_OwnerId(self, OwnerId): # Long
73+
self.add_query_param('OwnerId', OwnerId)
74+
def get_Field(self): # String
75+
return self.get_query_params().get('Field')
76+
77+
def set_Field(self, Field): # String
78+
self.add_query_param('Field', Field)

0 commit comments

Comments
 (0)