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.25.1 lib/awspec/type/customer_gateway.rb
awspec-1.25.0 lib/awspec/type/customer_gateway.rb
awspec-1.24.4 lib/awspec/type/customer_gateway.rb
awspec-1.24.3 lib/awspec/type/customer_gateway.rb
awspec-1.24.2 lib/awspec/type/customer_gateway.rb
awspec-1.24.1 lib/awspec/type/customer_gateway.rb
awspec-1.24.0 lib/awspec/type/customer_gateway.rb
awspec-1.23.0 lib/awspec/type/customer_gateway.rb
awspec-1.22.1 lib/awspec/type/customer_gateway.rb
awspec-1.22.0 lib/awspec/type/customer_gateway.rb
awspec-1.21.1 lib/awspec/type/customer_gateway.rb
awspec-1.21.0 lib/awspec/type/customer_gateway.rb
awspec-1.20.0 lib/awspec/type/customer_gateway.rb
awspec-1.19.2 lib/awspec/type/customer_gateway.rb
awspec-1.19.1 lib/awspec/type/customer_gateway.rb
awspec-1.19.0 lib/awspec/type/customer_gateway.rb
cthiesfork-awspec-1.2.4 lib/awspec/type/customer_gateway.rb
awspec-api_gateway_extended-1.2.4 lib/awspec/type/customer_gateway.rb
awspec-api_gateway_extended-1.2.3 lib/awspec/type/customer_gateway.rb
awspec-1.18.6 lib/awspec/type/customer_gateway.rb