Sha256: bda2fbb690ac8b63bd1c21c9554dc9618fca15b7347ac82f48a186e6f47b4450
Contents?: true
Size: 797 Bytes
Versions: 12
Compression:
Stored size: 797 Bytes
Contents
# frozen_string_literal: true 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
12 entries across 12 versions & 1 rubygems