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