1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[AWS IAM] Added missing request file for list account aliases

This commit is contained in:
Christopher Oliver 2011-07-12 13:52:19 -04:00
parent 72cdcee0e8
commit dfb586af5c

View file

@ -0,0 +1,18 @@
module Fog
module AWS
class IAM
class Real
require 'fog/aws/parsers/iam/list_account_aliases'
def list_account_aliases(options = {})
request({
'Action' => 'ListAccountAliases',
:parser => Fog::Parsers::AWS::IAM::ListAccountAliases.new
}.merge!(options))
end
end
end
end
end