Sha256: 2087b9b77c75f7aadedd07db486aa39a52f1d480abd87e412cfbbe253cf5c630
Contents?: true
Size: 619 Bytes
Versions: 13
Compression:
Stored size: 619 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 # protect functionality of the Agent. class ProtectConfiguration < BaseConfiguration KEYS = { exceptions: Contrast::Config::ExceptionConfiguration, rules: Contrast::Config::ProtectRulesConfiguration, enable: EMPTY_VALUE }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems