Sha256: 11055a7269c2a19ad2ccf52f591ed45f923a850efc5a81d3645a1e58e59142af
Contents?: true
Size: 552 Bytes
Versions: 14
Compression:
Stored size: 552 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class Subnet < Base def initialize super @type = Awspec::Type::Subnet.new('my-route-table') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Subnet::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', ') ] @ignore_matchers = Awspec::Type::Subnet::STATES.map { |state| "be_#{state.tr('-', '_')}" } @describes = [] end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems