Class: Google::Apis::SecuritycenterV1beta1::Indicator
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta1::Indicator
- 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. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise
Instance Attribute Summary collapse
-
#domains ⇒ Array<String>
List of domains associated to the Finding.
-
#ip_addresses ⇒ Array<String>
List of ip addresses associated to the Finding.
-
#signatures ⇒ Array<Google::Apis::SecuritycenterV1beta1::ProcessSignature>
The list of matched signatures indicating that the given process is present in the environment.
-
#uris ⇒ Array<String>
The list of URIs associated to the Findings Corresponds to the JSON property
uris.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Indicator
constructor
A new instance of Indicator.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Indicator
Returns a new instance of Indicator.
2459 2460 2461 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2459 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domains ⇒ Array<String>
List of domains associated to the Finding.
Corresponds to the JSON property domains
2441 2442 2443 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2441 def domains @domains end |
#ip_addresses ⇒ Array<String>
List of ip addresses associated to the Finding.
Corresponds to the JSON property ipAddresses
2446 2447 2448 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2446 def ip_addresses @ip_addresses end |
#signatures ⇒ Array<Google::Apis::SecuritycenterV1beta1::ProcessSignature>
The list of matched signatures indicating that the given process is present in
the environment.
Corresponds to the JSON property signatures
2452 2453 2454 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2452 def signatures @signatures end |
#uris ⇒ Array<String>
The list of URIs associated to the Findings
Corresponds to the JSON property uris
2457 2458 2459 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2457 def uris @uris end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2464 2465 2466 2467 2468 2469 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2464 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 |