|
| 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 DescribeVodDomainMax95BpsDataRequest(RpcRequest): |
| 24 | + |
| 25 | + def __init__(self): |
| 26 | + RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodDomainMax95BpsData','vod') |
| 27 | + self.set_protocol_type('https') |
| 28 | + self.set_method('GET') |
| 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_Cycle(self): # String |
| 41 | + return self.get_query_params().get('Cycle') |
| 42 | + |
| 43 | + def set_Cycle(self, Cycle): # String |
| 44 | + self.add_query_param('Cycle', Cycle) |
| 45 | + def get_DomainName(self): # String |
| 46 | + return self.get_query_params().get('DomainName') |
| 47 | + |
| 48 | + def set_DomainName(self, DomainName): # String |
| 49 | + self.add_query_param('DomainName', DomainName) |
| 50 | + def get_EndTime(self): # String |
| 51 | + return self.get_query_params().get('EndTime') |
| 52 | + |
| 53 | + def set_EndTime(self, EndTime): # String |
| 54 | + self.add_query_param('EndTime', EndTime) |
| 55 | + def get_OwnerId(self): # Long |
| 56 | + return self.get_query_params().get('OwnerId') |
| 57 | + |
| 58 | + def set_OwnerId(self, OwnerId): # Long |
| 59 | + self.add_query_param('OwnerId', OwnerId) |
| 60 | + def get_TimePoint(self): # String |
| 61 | + return self.get_query_params().get('TimePoint') |
| 62 | + |
| 63 | + def set_TimePoint(self, TimePoint): # String |
| 64 | + self.add_query_param('TimePoint', TimePoint) |
0 commit comments