1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/iam/delete_role_policy.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

32 lines
912 B
Ruby

module Fog
module AWS
class IAM
class Real
require 'fog/aws/parsers/iam/basic'
# Remove a policy from a role
#
# ==== Parameters
# * role_name<~String>: name of the role
# * policy_name<~String>: name of policy document
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'RequestId'<~String> - Id of the request
#
# ==== See Also
# http://docs.amazonwebservices.com/IAM/latest/APIReference/API_DeleteRolePolicy.html
#
def delete_role_policy(role_name, policy_name)
request(
'Action' => 'DeleteRolePolicy',
'PolicyName' => policy_name,
'RoleName' => role_name,
:parser => Fog::Parsers::AWS::IAM::Basic.new
)
end
end
end
end
end