Class: Google::Apis::SecuritycenterV1::ListFindingsResult
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::ListFindingsResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/securitycenter_v1/classes.rb,
generated/google/apis/securitycenter_v1/representations.rb,
generated/google/apis/securitycenter_v1/representations.rb
Overview
Result containing the Finding and its StateChange.
Instance Attribute Summary collapse
-
#finding ⇒ Google::Apis::SecuritycenterV1::Finding
Cloud Security Command Center (Cloud SCC) finding.
-
#state_change ⇒ String
State change of the finding between the points in time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListFindingsResult
constructor
A new instance of ListFindingsResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListFindingsResult
Returns a new instance of ListFindingsResult
1019 1020 1021 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1019 def initialize(**args) update!(**args) end |
Instance Attribute Details
#finding ⇒ Google::Apis::SecuritycenterV1::Finding
Cloud Security Command Center (Cloud SCC) finding.
A finding is a record of assessment data (security, risk, health or privacy)
ingested into Cloud SCC for presentation, notification, analysis,
policy testing, and enforcement. For example, an XSS vulnerability in an
App Engine application is a finding.
Corresponds to the JSON property finding
1012 1013 1014 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1012 def finding @finding end |
#state_change ⇒ String
State change of the finding between the points in time.
Corresponds to the JSON property stateChange
1017 1018 1019 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1017 def state_change @state_change end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1024 1025 1026 1027 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1024 def update!(**args) @finding = args[:finding] if args.key?(:finding) @state_change = args[:state_change] if args.key?(:state_change) end |