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