Sha256: db90301209080d217f1c3cfbfb0260896b0d705c98acb6dee0f5286fa5306e9c
Contents?: true
Size: 619 Bytes
Versions: 25
Compression:
Stored size: 619 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 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
25 entries across 25 versions & 1 rubygems