Sha256: 0106ee153dcd3d2ee40ec2fc613c4989e8d0485c097a8ebb480040c40a029d4b
Contents?: true
Size: 828 Bytes
Versions: 25
Compression:
Stored size: 828 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 # core functionality of the Agent. class AgentConfiguration < BaseConfiguration KEYS = { enable: EMPTY_VALUE, start_bundled_service: Contrast::Config::DefaultValue.new(true), omit_body: EMPTY_VALUE, service: Contrast::Config::ServiceConfiguration, logger: Contrast::Config::LoggerConfiguration, ruby: Contrast::Config::RubyConfiguration, heap_dump: Contrast::Config::HeapDumpConfiguration }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems