Class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination
- 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
Contains details about a group of security issues that, when the issues occur together, represent a greater risk than when the issues occur independently. A group of such issues is referred to as a toxic combination.
Instance Attribute Summary collapse
-
#attack_exposure_score ⇒ Float
The Attack exposure score of this toxic combination.
-
#related_findings ⇒ Array<String>
List of resource names of findings associated with this toxic combination.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudSecuritycenterV2ToxicCombination
constructor
A new instance of GoogleCloudSecuritycenterV2ToxicCombination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudSecuritycenterV2ToxicCombination
Returns a new instance of GoogleCloudSecuritycenterV2ToxicCombination.
7562 7563 7564 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7562 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attack_exposure_score ⇒ Float
The Attack exposure score of this toxic combination.
The score is a measure of how much this toxic combination exposes one or more
high-value resources to potential attack.
Corresponds to the JSON property attackExposureScore
7554 7555 7556 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7554 def attack_exposure_score @attack_exposure_score end |
#related_findings ⇒ Array<String>
List of resource names of findings associated with this toxic combination. For
example, organizations/123/sources/456/findings/789
.
Corresponds to the JSON property relatedFindings
7560 7561 7562 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7560 def @related_findings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7567 7568 7569 7570 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7567 def update!(**args) @attack_exposure_score = args[:attack_exposure_score] if args.key?(:attack_exposure_score) @related_findings = args[:related_findings] if args.key?(:related_findings) end |