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