DescribeEndpointsRequest.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. from aliyunsdkcore.request import RpcRequest
  20. class DescribeEndpointsRequest(RpcRequest):
  21. def __init__(self):
  22. RpcRequest.__init__(self, 'Location', '2015-06-12', 'DescribeEndpoints')
  23. def get_ServiceCode(self):
  24. return self.get_query_params().get('ServiceCode')
  25. def set_ServiceCode(self,ServiceCode):
  26. self.add_query_param('ServiceCode',ServiceCode)
  27. def get_Id(self):
  28. return self.get_query_params().get('Id')
  29. def set_Id(self,Id):
  30. self.add_query_param('Id',Id)
  31. def get_Type(self):
  32. return self.get_query_params().get('Type')
  33. def set_Type(self,Type):
  34. self.add_query_param('Type',Type)