Sha256: 50e62a2d25e9f73e95d693167b0b6777e5ff33557be6e187507dd5d815c25595

Contents?: true

Size: 529 Bytes

Versions: 22

Compression:

Stored size: 529 Bytes

Contents

module Awspec::Generator
  module Doc
    module Type
      class SecurityGroup < Base
        def initialize
          super
          @type = Awspec::Type::SecurityGroup.new('my-security-group-name')
          @ret = @type.resource
          @matchers = ['its(:inbound), its(:outbound)']
          @ignore_matchers = %w(be_opened be_inbound_opened be_outbound_opened)
          @describes = %w(inbound_rule_count outbound_rule_count inbound_permissions_count outbound_permissions_count)
        end
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
awspec-0.19.0 lib/awspec/generator/doc/type/security_group.rb
awspec-0.18.2 lib/awspec/generator/doc/type/security_group.rb