Sha256: 060b5b5ade0bec2a7f9f3faf44f971f53934e9c3bc8fb0eab40bb8f5410f054f
Contents?: true
Size: 571 Bytes
Versions: 14
Compression:
Stored size: 571 Bytes
Contents
# frozen_string_literal: true 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_via_client @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
14 entries across 14 versions & 1 rubygems