Sha256: b03128a039ac42cd2a3f8387f6cb3d4459712e632d9071f6b40bf70d987edf0a
Contents?: true
Size: 827 Bytes
Versions: 9
Compression:
Stored size: 827 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 Components module Inventory # A wrapper build around the Common Agent Configuration project to allow # for access of the values contained in its # parent_configuration_spec.yaml. # Specifically, this allows for querying the state of the Inventory # product. class Interface include Contrast::Components::ComponentBase include Contrast::Components::Interface access_component :config def enabled? @_enabled = !false?(CONFIG.root.inventory.enable) if @_enabled.nil? @_enabled end end COMPONENT_INTERFACE = Interface.new end end end
Version data entries
9 entries across 9 versions & 1 rubygems