class APIGateway

Collect API Gateway resources

Public Instance Methods

collect() click to toggle source

Returns an array of resources.

# File lib/aws_recon/collectors/apigateway.rb, line 10
def collect
  resources = []

  #
  # get_rest_apis
  #
  @client.get_rest_apis.each_with_index do |response, page|
    log(response.context.operation_name, page)

    response.items.each do |api|
      struct = OpenStruct.new(api.to_h)
      struct.type = 'api'
      struct.arn = api.id

      # get_authorizers
      struct.authorizers = @client.get_authorizers({ rest_api_id: api.id }).items.map(&:to_h)

      # get_stages
      struct.stages = @client.get_stages({ rest_api_id: api.id }).item.map(&:to_h)

      # get_models
      struct.models = @client.get_models({ rest_api_id: api.id }).items.map(&:to_h)

      # get_resources
      struct.resources = @client.get_resources({ rest_api_id: api.id }).items.map(&:to_h)

      resources.push(struct.to_h)
    end
  end

  # get_domain_names
  @client.get_domain_names.each_with_index do |response, page|
    log(response.context.operation_name, page)

    response.items.each do |domain|
      struct = OpenStruct.new(domain.to_h)
      struct.type = 'domain'
      struct.arn = domain.domain_name

      resources.push(struct.to_h)
    end
  end

  resources
end