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