Sha256: 1ed6bda1f10e6a4e6641ce69f00e1aa99c01ab63a49383b27145170487bca056

Contents?: true

Size: 656 Bytes

Versions: 8

Compression:

Stored size: 656 Bytes

Contents

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

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

    STATES = %w(
      available pending
    )

    STATES.each do |state|
      define_method state + '?' do
        @resource[:state] == state
      end
    end

    def has_route_table?(id)
      route_table = find_route_table(id)
      return false unless route_table
      route_table[:vpc_id] == @id
    end

    def has_network_acl?(id)
      n = find_network_acl(id)
      return false unless n
      n[:vpc_id] == @id
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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