Sha256: 6cb6620eed8b78e077fd048d861fb7e9795816ae9ace0358e20fefe43a86e5f4
Contents?: true
Size: 564 Bytes
Versions: 12
Compression:
Stored size: 564 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class Nlb < Base def initialize super @type_name = 'NLB' @type = Awspec::Type::Nlb.new('my-nlb') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Nlb::STATES.map { |state| "be_#{state}" }.join(', '), 'belong_to_vpc' ] @ignore_matchers = Awspec::Type::Nlb::STATES.map { |state| "be_#{state}" } @describes = [] end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems