Sha256: c50015ace3b66a661fdbfed6f136fa425c430083d47d8975272795e904d7d9fd
Contents?: true
Size: 626 Bytes
Versions: 11
Compression:
Stored size: 626 Bytes
Contents
# Copyright (c) 2021 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
11 entries across 11 versions & 1 rubygems