Sha256: ecc36e66404d12f45310547de5683a3f39188e5b7afd1e3d7aaf7c09e25e3973

Contents?: true

Size: 926 Bytes

Versions: 11

Compression:

Stored size: 926 Bytes

Contents

# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

require 'contrast/agent/inventory/policy/trigger_node'
require 'contrast/agent/patching/policy/policy'

# classes required by patches in the policy
require 'contrast/agent/inventory/policy/datastores'

module Contrast
  module Agent
    module Inventory
      module Policy
        # This is just a holder for our policy. Takes the policy JSON and
        # converts it into hashes that we can access nicely
        class Policy < Contrast::Agent::Patching::Policy::Policy
          def self.policy_folder
            'inventory'
          end

          def disabled_globally?
            !::Contrast::INVENTORY.enabled?
          end

          def node_type
            Contrast::Agent::Inventory::Policy::TriggerNode
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
contrast-agent-6.4.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.3.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.2.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.1.2 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.1.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.1.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.0.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-5.3.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-5.2.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-5.1.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-5.0.0 lib/contrast/agent/inventory/policy/policy.rb