Sha256: 260843e5ee86f31f05db5c00a9769ed2f5c568366493ae3d66a958439319af0b
Contents?: true
Size: 755 Bytes
Versions: 118
Compression:
Stored size: 755 Bytes
Contents
module Awspec::Type class VpnGateway < ResourceBase tags_allowed def initialize(name) super @display_name = name end def resource_via_client @resource_via_client ||= find_vpn_gateway(@display_name) end def id @id ||= resource_via_client.vpn_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 availability_zone resource_via_client.availability_zone end def vpc_attachments resource_via_client.vpc_attachments end def type resource_via_client.type end end end
Version data entries
118 entries across 118 versions & 4 rubygems