Class: Organizations
- Defined in:
- lib/aws_recon/collectors/organizations.rb
Overview
Collect Org 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.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/aws_recon/collectors/organizations.rb', line 10 def collect resources = [] # # describe_organization # begin @client.describe_organization.each do |response| log(response.context.operation_name) struct = OpenStruct.new(response.organization.to_h) struct.type = 'organization' resources.push(struct.to_h) end rescue Aws::Organizations::Errors::ServiceError => e log_error(e.code) raise e unless suppressed_errors.include?(e.code) && !@options.quit_on_exception end # # list_handshakes_for_account # @client.list_handshakes_for_account.each_with_index do |response, page| log(response.context.operation_name, page) response.handshakes.each do |handshake| struct = OpenStruct.new(handshake.to_h) struct.type = 'handshake' resources.push(struct.to_h) end end # # list_policies # begin @client.list_policies({ filter: 'SERVICE_CONTROL_POLICY' }).each_with_index do |response, page| log(response.context.operation_name, page) response.policies.each do |policy| struct = OpenStruct.new(policy.to_h) struct.type = 'service_control_policy' struct.content = @client.describe_policy({ policy_id: policy.id }).policy.content.parse_policy resources.push(struct.to_h) end end rescue Aws::Organizations::Errors::ServiceError => e log_error(e.code) raise e unless suppressed_errors.include?(e.code) && !@options.quit_on_exception end resources end |