Sha256: 16804d8850ec80350336f9717e73704eab5f92df163755373d5939b44a11b43c

Contents?: true

Size: 1021 Bytes

Versions: 8

Compression:

Stored size: 1021 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, :settings

        def enabled?
          @_enabled = !false?(CONFIG.root.inventory.enable) if @_enabled.nil?
          @_enabled
        end

        def analyze_libraries?
          @_analyze_libraries = !false?(CONFIG.root.inventory.analyze_libraries) if @_analyze_libraries.nil?
          @_analyze_libraries
        end
      end

      COMPONENT_INTERFACE = Interface.new
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
contrast-agent-4.4.1 lib/contrast/components/inventory.rb
contrast-agent-4.4.0 lib/contrast/components/inventory.rb
contrast-agent-4.3.2 lib/contrast/components/inventory.rb
contrast-agent-4.3.1 lib/contrast/components/inventory.rb
contrast-agent-4.3.0 lib/contrast/components/inventory.rb
contrast-agent-4.2.0 lib/contrast/components/inventory.rb
contrast-agent-4.1.0 lib/contrast/components/inventory.rb
contrast-agent-4.0.0 lib/contrast/components/inventory.rb