Sha256: 48866aae28fd14e8e897baee94d9523255da4062fe57a0a162be79a1b23e8e40
Contents?: true
Size: 928 Bytes
Versions: 18
Compression:
Stored size: 928 Bytes
Contents
# Copyright (c) 2023 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
18 entries across 18 versions & 1 rubygems