Sha256: a6b6c8bb55fd1032fa5d68b7a035434e625fe57dbd0829453e4708487883890c
Contents?: true
Size: 1.55 KB
Versions: 28
Compression:
Stored size: 1.55 KB
Contents
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
Version data entries
28 entries across 28 versions & 2 rubygems