AssumeRoleRequest.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 AssumeRoleRequest(RpcRequest):
  21. def __init__(self):
  22. RpcRequest.__init__(self, 'Sts', '2015-04-01', 'AssumeRole','sts')
  23. self.set_protocol_type('https');
  24. def get_RoleArn(self):
  25. return self.get_query_params().get('RoleArn')
  26. def set_RoleArn(self,RoleArn):
  27. self.add_query_param('RoleArn',RoleArn)
  28. def get_RoleSessionName(self):
  29. return self.get_query_params().get('RoleSessionName')
  30. def set_RoleSessionName(self,RoleSessionName):
  31. self.add_query_param('RoleSessionName',RoleSessionName)
  32. def get_DurationSeconds(self):
  33. return self.get_query_params().get('DurationSeconds')
  34. def set_DurationSeconds(self,DurationSeconds):
  35. self.add_query_param('DurationSeconds',DurationSeconds)
  36. def get_Policy(self):
  37. return self.get_query_params().get('Policy')
  38. def set_Policy(self,Policy):
  39. self.add_query_param('Policy',Policy)