Class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Indicator
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Indicator
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/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
-
#domains ⇒ Array<String>
List of domains associated to the Finding.
-
#ip_addresses ⇒ Array<String>
The list of IP addresses that are associated with the finding.
-
#signatures ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ProcessSignature>
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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudSecuritycenterV2Indicator
constructor
A new instance of GoogleCloudSecuritycenterV2Indicator.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudSecuritycenterV2Indicator
Returns a new instance of GoogleCloudSecuritycenterV2Indicator.
6469 6470 6471 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6469 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
6451 6452 6453 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6451 def domains @domains end |
#ip_addresses ⇒ Array<String>
The list of IP addresses that are associated with the finding.
Corresponds to the JSON property ipAddresses
6456 6457 6458 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6456 def ip_addresses @ip_addresses end |
#signatures ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ProcessSignature>
The list of matched signatures indicating that the given process is present in
the environment.
Corresponds to the JSON property signatures
6462 6463 6464 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6462 def signatures @signatures end |
#uris ⇒ Array<String>
The list of URIs associated to the Findings.
Corresponds to the JSON property uris
6467 6468 6469 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6467 def uris @uris end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6474 6475 6476 6477 6478 6479 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6474 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 |