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
Security Command Center finding.
-
#resource ⇒ Google::Apis::SecuritycenterV1::Resource
Information related to the Google Cloud resource that is associated with this 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.
Constructor Details
#initialize(**args) ⇒ ListFindingsResult
Returns a new instance of ListFindingsResult.
1394 1395 1396 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1394 def initialize(**args) update!(**args) end |
Instance Attribute Details
#finding ⇒ Google::Apis::SecuritycenterV1::Finding
Security Command Center finding. A finding is a record of assessment data like
security, risk, health, or privacy, that is ingested into Security Command
Center for presentation, notification, analysis, policy testing, and
enforcement. For example, a cross-site scripting (XSS) vulnerability in an App
Engine application is a finding.
Corresponds to the JSON property finding
1381 1382 1383 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1381 def finding @finding end |
#resource ⇒ Google::Apis::SecuritycenterV1::Resource
Information related to the Google Cloud resource that is associated with this
finding. LINT.IfChange
Corresponds to the JSON property resource
1387 1388 1389 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1387 def resource @resource end |
#state_change ⇒ String
State change of the finding between the points in time.
Corresponds to the JSON property stateChange
1392 1393 1394 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1392 def state_change @state_change end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1399 1400 1401 1402 1403 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 1399 def update!(**args) @finding = args[:finding] if args.key?(:finding) @resource = args[:resource] if args.key?(:resource) @state_change = args[:state_change] if args.key?(:state_change) end |