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:
parent
72cdcee0e8
commit
dfb586af5c
1 changed files with 18 additions and 0 deletions
18
lib/fog/aws/requests/iam/list_account_aliases.rb
Normal file
18
lib/fog/aws/requests/iam/list_account_aliases.rb
Normal 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
|
Loading…
Add table
Reference in a new issue