class Google::Apis::SecuritycenterV1beta2::Indicator
Represents what's commonly known as an Indicator
of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: en.wikipedia.org/wiki/Indicator_of_compromise
Attributes
domains[RW]
List of domains associated to the Finding
. Corresponds to the JSON property `domains` @return [Array<String>]
ip_addresses[RW]
List of ip addresses associated to the Finding
. Corresponds to the JSON property `ipAddresses` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/securitycenter_v1beta2/classes.rb, line 910 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/securitycenter_v1beta2/classes.rb, line 915 def update!(**args) @domains = args[:domains] if args.key?(:domains) @ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses) end