Sha256: 036505b947ce15ef7467d1aede55314e0e0a8b155b5467a2c21547da04b5d20b
Contents?: true
Size: 766 Bytes
Versions: 118
Compression:
Stored size: 766 Bytes
Contents
module Awspec::Type class VpnConnection < ResourceBase 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
118 entries across 118 versions & 4 rubygems