Sha256: 0238de5f70f415caf2a35247c46c547d53d1493c17115d493a6a1908f5678923

Contents?: true

Size: 920 Bytes

Versions: 6

Compression:

Stored size: 920 Bytes

Contents

class EMR < Mapper
  #
  # Returns an array of resources.
  #
  def collect
    resources = []

    #
    # get_block_public_access_configuration
    #
    @client.get_block_public_access_configuration.each do |response|
      log(response.context.operation_name)

      struct = OpenStruct.new(response.block_public_access_configuration.to_h)
      struct.type = 'configuration'

      resources.push(struct.to_h)
    end

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

      response.clusters.each do |cluster|
        log(response.context.operation_name, cluster.id)

        struct = OpenStruct.new(@client.describe_cluster({ cluster_id: cluster.id }).cluster.to_h)
        struct.type = 'cluster'
        struct.arn = cluster.cluster_arn

        resources.push(struct.to_h)
      end
    end

    resources
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
aws_recon-0.2.27 lib/aws_recon/collectors/emr.rb
aws_recon-0.2.26 lib/aws_recon/collectors/emr.rb
aws_recon-0.2.25 lib/aws_recon/collectors/emr.rb
aws_recon-0.2.24 lib/aws_recon/collectors/emr.rb
aws_recon-0.2.23 lib/aws_recon/collectors/emr.rb
aws_recon-0.2.22 lib/aws_recon/collectors/emr.rb