mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
47 lines
1.5 KiB
Ruby
47 lines
1.5 KiB
Ruby
module Fog
|
|
module AWS
|
|
class IAM
|
|
class Real
|
|
require 'fog/aws/parsers/iam/single_policy'
|
|
|
|
# Creates a managed policy
|
|
#
|
|
# ==== Parameters
|
|
# * policy_name<~String>: name of policy document
|
|
# * policy_document<~Hash>: policy document, see: http://docs.amazonwebservices.com/IAM/latest/UserGuide/PoliciesOverview.html
|
|
# * path <~String>: path of the policy
|
|
# * description <~String>: description for the policy
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'RequestId'<~String> - Id of the request
|
|
# * 'Policy'<~Hash>:
|
|
# * Arn
|
|
# * AttachmentCount
|
|
# * CreateDate
|
|
# * DefaultVersionId
|
|
# * Description
|
|
# * IsAttachable
|
|
# * Path
|
|
# * PolicyId
|
|
# * PolicyName
|
|
# * UpdateDate
|
|
# ==== See Also
|
|
# http://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicy.html
|
|
#
|
|
def create_policy(policy_name, policy_document, path=nil, description=nil)
|
|
request({
|
|
'Action' => 'CreatePolicy',
|
|
'PolicyName' => policy_name,
|
|
'PolicyDocument' => Fog::JSON.encode(policy_document),
|
|
'Path' => path,
|
|
'Description' => description,
|
|
:parser => Fog::Parsers::AWS::IAM::SinglePolicy.new
|
|
}.reject {|_, value| value.nil?})
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
end
|
|
end
|