CreateKeyRequest.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. from aliyunsdkcore.request import RpcRequest
  20. from aliyunsdkkms.endpoint import endpoint_data
  21. class CreateKeyRequest(RpcRequest):
  22. def __init__(self):
  23. RpcRequest.__init__(self, 'Kms', '2016-01-20', 'CreateKey','kms')
  24. self.set_protocol_type('https')
  25. self.set_method('POST')
  26. if hasattr(self, "endpoint_map"):
  27. setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
  28. if hasattr(self, "endpoint_regional"):
  29. setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
  30. def get_ProtectionLevel(self):
  31. return self.get_query_params().get('ProtectionLevel')
  32. def set_ProtectionLevel(self,ProtectionLevel):
  33. self.add_query_param('ProtectionLevel',ProtectionLevel)
  34. def get_KeyUsage(self):
  35. return self.get_query_params().get('KeyUsage')
  36. def set_KeyUsage(self,KeyUsage):
  37. self.add_query_param('KeyUsage',KeyUsage)
  38. def get_Origin(self):
  39. return self.get_query_params().get('Origin')
  40. def set_Origin(self,Origin):
  41. self.add_query_param('Origin',Origin)
  42. def get_Description(self):
  43. return self.get_query_params().get('Description')
  44. def set_Description(self,Description):
  45. self.add_query_param('Description',Description)
  46. def get_KeySpec(self):
  47. return self.get_query_params().get('KeySpec')
  48. def set_KeySpec(self,KeySpec):
  49. self.add_query_param('KeySpec',KeySpec)
  50. def get_RotationInterval(self):
  51. return self.get_query_params().get('RotationInterval')
  52. def set_RotationInterval(self,RotationInterval):
  53. self.add_query_param('RotationInterval',RotationInterval)
  54. def get_EnableAutomaticRotation(self):
  55. return self.get_query_params().get('EnableAutomaticRotation')
  56. def set_EnableAutomaticRotation(self,EnableAutomaticRotation):
  57. self.add_query_param('EnableAutomaticRotation',EnableAutomaticRotation)