Sha256: 33542ae8b59d58c30dfb816b602cf33a941f54e4dbc5498ed9be95bfcba5ae69
Contents?: true
Size: 591 Bytes
Versions: 140
Compression:
Stored size: 591 Bytes
Contents
module Awspec::Generator module Doc module Type class VpnConnection < Base def initialize super @type_name = 'VpnConnection' @type = Awspec::Type::VpnConnection.new('my-vpn-connection') @ret = @type.resource_via_client @matchers = [ Awspec::Type::VpnConnection::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', ') ] @ignore_matchers = Awspec::Type::VpnConnection::STATES.map { |state| 'be_' + state.tr('-', '_') } @describes = [] end end end end end
Version data entries
140 entries across 140 versions & 4 rubygems