Sha256: 9baeb24f8a6af9894c196cba8ebb41d4a5aaadb0bb45b472a555edc0ce98d2a4
Contents?: true
Size: 765 Bytes
Versions: 7
Compression:
Stored size: 765 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true cs__scoped_require 'contrast/components/interface' module Contrast module Agent # A Reaction from TeamServer which indicates the Agent should be disabled, # typically because some configuration setting did not satisfy requirements # set by the Organization's Administrator class DisableReaction include Contrast::Components::Interface access_component :agent, :logging def self.run _reaction, level logger.with_level( level, 'Contrast received instructions to disable itself - Disabling now') AGENT.disable! end end end end
Version data entries
7 entries across 7 versions & 1 rubygems