Sha256: cc2057c5e56d8c42d34ccfa284fe971705e9841e27727c8b6a5c55686ec80dbe
Contents?: true
Size: 928 Bytes
Versions: 4
Compression:
Stored size: 928 Bytes
Contents
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'contrast/agent/reporting/details/protect_rule_details' module Contrast module Agent module Reporting module Details # Bot blocker IA result details info. class IpDenylistDetails < ProtectRuleDetails # @return [String] attr_reader :ip # @return [String] attr_reader :uuid # @param ip [String] the IP address that was blocked # @param uuid [String] the UUID to identify the block rule in TeamServer def initialize ip, uuid @ip = ip @uuid = uuid super() end def to_controlled_hash { ip: ip, uuid: uuid } end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems