Sha256: 0182216824506324a6d2ccfd2c361ed09bf9e54408019d933552b39c80015dc1
Contents?: true
Size: 629 Bytes
Versions: 19
Compression:
Stored size: 629 Bytes
Contents
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Api Proxy keys configuration class ApiProxyConfiguration include Contrast::Config::BaseConfiguration # @return [String] proxy url attr_accessor :url attr_writer :enable def initialize hsh = {} return unless hsh @enable = hsh[:enable] @url = hsh[:url] end # @return [Boolean, false] def enable @enable.nil? ? false : @enable end end end end
Version data entries
19 entries across 19 versions & 1 rubygems