Sha256: bb07f22535fe24d1f8ff988ce2064177f72eae8f6972e1211f4aa55fa54cce9f

Contents?: true

Size: 740 Bytes

Versions: 118

Compression:

Stored size: 740 Bytes

Contents

module Awspec::Type
  class CustomerGateway < ResourceBase
    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

118 entries across 118 versions & 4 rubygems

Version Path
awspec-1.6.0 lib/awspec/type/customer_gateway.rb
awspec-1.5.4 lib/awspec/type/customer_gateway.rb
awspec-1.5.3 lib/awspec/type/customer_gateway.rb
awspec-1.5.2 lib/awspec/type/customer_gateway.rb
awspec-1.5.1 lib/awspec/type/customer_gateway.rb
awspec-1.5.0 lib/awspec/type/customer_gateway.rb
awspec-1.4.3 lib/awspec/type/customer_gateway.rb
awspec-1.4.2 lib/awspec/type/customer_gateway.rb
awspec-1.4.1 lib/awspec/type/customer_gateway.rb
awspec-1.4.0 lib/awspec/type/customer_gateway.rb
awspec-1.3.1 lib/awspec/type/customer_gateway.rb
awspec-1.3.0 lib/awspec/type/customer_gateway.rb
awspec-1.2.0 lib/awspec/type/customer_gateway.rb
awspec-1.1.0 lib/awspec/type/customer_gateway.rb
awspec-1.0.0 lib/awspec/type/customer_gateway.rb
awspec-1.0.0.rc lib/awspec/type/customer_gateway.rb
awspec-0.88.2 lib/awspec/type/customer_gateway.rb
awspec-0.88.1 lib/awspec/type/customer_gateway.rb
awspec-0.88.0 lib/awspec/type/customer_gateway.rb
awspec-0.87.1 lib/awspec/type/customer_gateway.rb