Sha256: 1d67dd61cbada25252dc7fe370408bf0b8146e0dcce13d5b88477e38e97e2d3f
Contents?: true
Size: 662 Bytes
Versions: 176
Compression:
Stored size: 662 Bytes
Contents
module Awspec::Generator module Doc module Type class NetworkInterface < Base def initialize super @type_name = 'NetworkInterface' @type = Awspec::Type::NetworkInterface.new('eni-12ab3cde') @ret = @type.resource_via_client @matchers = [ Awspec::Type::NetworkInterface::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', '), 'belong_to_vpc', 'belong_to_subnet' ] @ignore_matchers = Awspec::Type::NetworkInterface::STATES.map { |state| 'be_' + state.tr('-', '_') } @describes = [] end end end end end
Version data entries
176 entries across 176 versions & 4 rubygems