Sha256: 3341e0d578cd025782a341ce58532215d9eeef262620e1ffd1adcd6d137fc2ee

Contents?: true

Size: 758 Bytes

Versions: 22

Compression:

Stored size: 758 Bytes

Contents

module Awspec::Type
  class VpnConnection < Base
    tags_allowed

    def initialize(name)
      super
      @display_name = name
    end

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

    def id
      @id ||= resource_via_client.vpn_connection_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 customer_gateway_id
      resource_via_client.customer_gateway_id
    end

    def vpn_gateway_id
      resource_via_client.vpn_gateway_id
    end

    def type
      resource_via_client.type
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
awspec-0.59.0 lib/awspec/type/vpn_connection.rb
awspec-0.58.0 lib/awspec/type/vpn_connection.rb