Sha256: a41c233517e876f06c02b7c1c85dd997ac3eb7ac85917d5d9644c70f0da50d5d

Contents?: true

Size: 732 Bytes

Versions: 22

Compression:

Stored size: 732 Bytes

Contents

module Awspec::Type
  class CustomerGateway < Base
    tags_allowed

    def initialize(name)
      super
      @display_name = name
    end

    def resource_via_client
      @resource_via_client ||= find_customer_gateway(@display_name)
    end

    def id
      @id ||= resource_via_client.customer_gateway_id if resource_via_client
    end

    STATES = %w(
      pending available deleting deleted
    )

    STATES.each do |state|
      define_method state.tr('-', '_') + '?' do
        resource_via_client.state == state
      end
    end

    def ip_address
      resource_via_client.ip_address
    end

    def bpg_asn
      resource_via_client.bpg_asn
    end

    def type
      resource_via_client.type
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
awspec-0.69.1 lib/awspec/type/customer_gateway.rb
awspec-0.69.0 lib/awspec/type/customer_gateway.rb
awspec-0.68.0 lib/awspec/type/customer_gateway.rb
awspec-0.67.1 lib/awspec/type/customer_gateway.rb
awspec-0.67.0 lib/awspec/type/customer_gateway.rb
awspec-0.66.2 lib/awspec/type/customer_gateway.rb
awspec-0.66.1 lib/awspec/type/customer_gateway.rb
awspec-0.66.0 lib/awspec/type/customer_gateway.rb
awspec-0.65.2 lib/awspec/type/customer_gateway.rb
awspec-0.65.1 lib/awspec/type/customer_gateway.rb
awspec-0.65.0 lib/awspec/type/customer_gateway.rb
awspec-0.64.0 lib/awspec/type/customer_gateway.rb
awspec-0.63.1 lib/awspec/type/customer_gateway.rb
awspec-0.63.0 lib/awspec/type/customer_gateway.rb
awspec-0.62.1 lib/awspec/type/customer_gateway.rb
awspec-0.62.0 lib/awspec/type/customer_gateway.rb
awspec-0.61.1 lib/awspec/type/customer_gateway.rb
awspec-0.61.0 lib/awspec/type/customer_gateway.rb
awspec-0.60.1 lib/awspec/type/customer_gateway.rb
awspec-0.60.0 lib/awspec/type/customer_gateway.rb