Sha256: 1842d1ac977f7b5fe4a8b0557382d0c21f9cafd794baf2ba6fc9578bf7e7c663
Contents?: true
Size: 626 Bytes
Versions: 8
Compression:
Stored size: 626 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Common Configuration settings. Those in this section pertain to the # inventory functionality of the Agent. class InventoryConfiguration < BaseConfiguration KEYS = { enable: Contrast::Config::DefaultValue.new(true), analyze_libraries: Contrast::Config::DefaultValue.new(true), tags: EMPTY_VALUE }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems