Sha256: f49d4e7153b6d010595ad806e8b6c175e179ff1febbf1fb2adb07d572e61c255
Contents?: true
Size: 659 Bytes
Versions: 13
Compression:
Stored size: 659 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 # server identification functionality of the Agent. class ServerConfiguration < BaseConfiguration KEYS = { name: EMPTY_VALUE, path: EMPTY_VALUE, type: EMPTY_VALUE, tags: EMPTY_VALUE, environment: EMPTY_VALUE, version: EMPTY_VALUE }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems