Sha256: 2316add4814044e1abc4fa6cd18c2096b140651e97e7c57f0ef72261b4cb782c

Contents?: true

Size: 1.65 KB

Versions: 8

Compression:

Stored size: 1.65 KB

Contents

module Awspec::Type
  class Ec2 < Base
    attr_reader :client

    def initialize(id)
      super
      @client = @ec2_client
      @resource = find_ec2(id)
      @id = @resource[:instance_id] if @resource
    end

    STATES = %w(
      pending running shutting-down
      terminated stopping stopped
    )

    STATES.each do |state|
      define_method state.tr('-', '_') + '?' do
        @resource[:state][:name] == state
      end
    end

    def disabled_api_termination?
      ret = find_ec2_attribute(@id, 'disableApiTermination')
      ret[:disable_api_termination][:value]
    end

    def has_eip?(ip_address = nil)
      option = {
        filters: [{ name: 'instance-id', values: [@id] }]
      }
      option[:public_ips] = [ip_address] if ip_address
      ret = @ec2_client.describe_addresses(option)
      return ret[:addresses].count == 1 if ip_address
      return ret[:addresses].count > 0 unless ip_address
    end

    def has_security_group?(sg_id)
      sgs = @resource[:security_groups]
      ret = sgs.find do |sg|
        sg[:group_id] == sg_id || sg[:group_name] == sg_id
      end
      return true if ret
      sg2 = find_security_group(sg_id)
      return false unless sg2.tag_name == sg_id
      sgs.find do |sg|
        sg[:group_id] == sg2[:group_id]
      end
    end

    def has_ebs?(volume_id)
      blocks = @resource[:block_device_mappings]
      ret = blocks.find do |block|
        next false unless block[:ebs]
        block[:ebs][:volume_id] == volume_id
      end
      return true if ret
      blocks2 = find_ebs(volume_id)
      blocks2[:attachments].find do |attachment|
        attachment.instance_id == @id
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
awspec-0.25.3 lib/awspec/type/ec2.rb
awspec-0.25.2 lib/awspec/type/ec2.rb
awspec-0.25.1 lib/awspec/type/ec2.rb
awspec-0.25.0 lib/awspec/type/ec2.rb
awspec-0.24.2 lib/awspec/type/ec2.rb
awspec-0.24.1 lib/awspec/type/ec2.rb
awspec-0.24.0 lib/awspec/type/ec2.rb
awspec-0.23.0 lib/awspec/type/ec2.rb