Sha256: 8a5a811ef739f623a8de8641e0e388c5cd31deb7eb5f9bbe1f0f534f6cca6042
Contents?: true
Size: 765 Bytes
Versions: 18
Compression:
Stored size: 765 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 # Virtual Patch IA result details info. class VirtualPatchDetails < ProtectRuleDetails # @return [String] attr_reader :uuid # @param uuid [String] the UUID to identify the block rule in TeamServer def initialize uuid @uuid = uuid super() end def to_controlled_hash { uuid: uuid } end end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems