Class: DirectoryService
- Defined in:
- lib/aws_recon/collectors/directoryservice.rb
Overview
Collect DirectoryService resources
Constant Summary
Constants inherited from Mapper
Mapper::SINGLE_REGION_SERVICES
Instance Method Summary collapse
-
#collect ⇒ Object
Returns an array of resources.
Methods inherited from Mapper
Constructor Details
This class inherits a constructor from Mapper
Instance Method Details
#collect ⇒ Object
Returns an array of resources.
TODO: confirm paging behavior
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/aws_recon/collectors/directoryservice.rb', line 12 def collect resources = [] # # describe_directories # @client.describe_directories.each_with_index do |response, page| log(response.context.operation_name, page) response.directory_descriptions.each do |directory| struct = OpenStruct.new(directory.to_h) struct.type = 'directory' struct.arn = "arn:aws:#{@service}:#{@region}::directory/#{directory.directory_id}" resources.push(struct.to_h) end end resources end |