Sha256: cfd11ac054ddf387e166eedb09d9df19bce075129651668f4296f24abaf2d30a
Contents?: true
Size: 765 Bytes
Versions: 4
Compression:
Stored size: 765 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 # 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
4 entries across 4 versions & 1 rubygems