Class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Indicator

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/securitycenter_v1beta1/classes.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb

Overview

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. For more information, see Indicator of compromise.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudSecuritycenterV2Indicator

Returns a new instance of GoogleCloudSecuritycenterV2Indicator.



5765
5766
5767
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5765

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#domainsArray<String>

List of domains associated to the Finding. Corresponds to the JSON property domains

Returns:

  • (Array<String>)


5747
5748
5749
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5747

def domains
  @domains
end

#ip_addressesArray<String>

The list of IP addresses that are associated with the finding. Corresponds to the JSON property ipAddresses

Returns:

  • (Array<String>)


5752
5753
5754
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5752

def ip_addresses
  @ip_addresses
end

#signaturesArray<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ProcessSignature>

The list of matched signatures indicating that the given process is present in the environment. Corresponds to the JSON property signatures



5758
5759
5760
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5758

def signatures
  @signatures
end

#urisArray<String>

The list of URIs associated to the Findings. Corresponds to the JSON property uris

Returns:

  • (Array<String>)


5763
5764
5765
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5763

def uris
  @uris
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5770
5771
5772
5773
5774
5775
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5770

def update!(**args)
  @domains = args[:domains] if args.key?(:domains)
  @ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
  @signatures = args[:signatures] if args.key?(:signatures)
  @uris = args[:uris] if args.key?(:uris)
end