mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
64 lines
1.6 KiB
Ruby
64 lines
1.6 KiB
Ruby
|
require 'fog/aws/models/iam/managed_policy'
|
||
|
require 'fog/aws/iam/paged_collection'
|
||
|
|
||
|
module Fog
|
||
|
module AWS
|
||
|
class IAM
|
||
|
class ManagedPolicies < Fog::AWS::IAM::PagedCollection
|
||
|
|
||
|
attribute :username
|
||
|
attribute :group_name
|
||
|
|
||
|
model Fog::AWS::IAM::ManagedPolicy
|
||
|
|
||
|
def all(options={})
|
||
|
data = if self.username
|
||
|
all_by_user(self.username, options)
|
||
|
elsif self.group_name
|
||
|
all_by_group(self.group_name, options)
|
||
|
else
|
||
|
all_policies(options)
|
||
|
end
|
||
|
|
||
|
load(data)
|
||
|
end
|
||
|
|
||
|
def get(identity)
|
||
|
response = service.get_policy(identity)
|
||
|
|
||
|
new(response.body['Policy'])
|
||
|
rescue Fog::AWS::IAM::NotFound
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
protected
|
||
|
|
||
|
def all_by_user(username, options={})
|
||
|
body = service.list_attached_user_policies(username, page_params(options)).body
|
||
|
merge_attributes(body)
|
||
|
|
||
|
body['Policies'].map do |policy|
|
||
|
service.get_policy(policy['PolicyArn']).body['Policy']
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def all_by_group(group_name, options={})
|
||
|
body = service.list_attached_group_policies(group_name, page_params(options)).body
|
||
|
merge_attributes(body)
|
||
|
|
||
|
body['Policies'].map do |policy|
|
||
|
service.get_policy(policy['PolicyArn']).body['Policy']
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def all_policies(options={})
|
||
|
body = service.list_policies(page_params(options)).body
|
||
|
merge_attributes(body)
|
||
|
|
||
|
body['Policies']
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|