Class: Google::Apis::SecuritycenterV1::Finding
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Finding
- 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
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.
Instance Attribute Summary collapse
-
#category ⇒ String
The additional taxonomy group within findings from a given source.
-
#create_time ⇒ String
The time at which the finding was created in Security Command Center.
-
#event_time ⇒ String
The time at which the event took place.
-
#external_uri ⇒ String
The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found.
-
#name ⇒ String
The relative resource name of this finding.
-
#parent ⇒ String
The relative resource name of the source the finding belongs to.
-
#resource_name ⇒ String
For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for.
-
#security_marks ⇒ Google::Apis::SecuritycenterV1::SecurityMarks
User specified security marks that are attached to the parent Security Command Center resource.
-
#source_properties ⇒ Hash<String,Object>
Source specific properties.
-
#state ⇒ String
The state of the finding.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Finding
constructor
A new instance of Finding.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Finding
Returns a new instance of Finding.
486 487 488 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 486 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category ⇒ String
The additional taxonomy group within findings from a given source.
This field is immutable after creation time.
Example: "XSS_FLASH_INJECTION"
Corresponds to the JSON property category
417 418 419 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 417 def category @category end |
#create_time ⇒ String
The time at which the finding was created in Security Command Center.
Corresponds to the JSON property createTime
422 423 424 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 422 def create_time @create_time end |
#event_time ⇒ String
The time at which the event took place. For example, if the finding
represents an open firewall it would capture the time the detector believes
the firewall became open. The accuracy is determined by the detector.
Corresponds to the JSON property eventTime
429 430 431 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 429 def event_time @event_time end |
#external_uri ⇒ String
The URI that, if available, points to a web page outside of Security
Command Center where additional information about the finding can be found.
This field is guaranteed to be either empty or a well formed URL.
Corresponds to the JSON property externalUri
436 437 438 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 436 def external_uri @external_uri end |
#name ⇒ String
The relative resource name of this finding. See:
https://cloud.google.com/apis/design/resource_names#relative_resource_name
Example:
"organizations/organization_id
/sources/source_id
/findings/finding_id
"
Corresponds to the JSON property name
444 445 446 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 444 def name @name end |
#parent ⇒ String
The relative resource name of the source the finding belongs to. See:
https://cloud.google.com/apis/design/resource_names#relative_resource_name
This field is immutable after creation time.
For example:
"organizations/organization_id
/sources/source_id
"
Corresponds to the JSON property parent
453 454 455 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 453 def parent @parent end |
#resource_name ⇒ String
For findings on Google Cloud resources, the full resource
name of the Google Cloud resource this finding is for. See:
https://cloud.google.com/apis/design/resource_names#full_resource_name
When the finding is for a non-Google Cloud resource, the resourceName can
be a customer or partner defined string. This field is immutable after
creation time.
Corresponds to the JSON property resourceName
463 464 465 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 463 def resource_name @resource_name end |
#security_marks ⇒ Google::Apis::SecuritycenterV1::SecurityMarks
User specified security marks that are attached to the parent Security
Command Center resource. Security marks are scoped within a Security Command
Center organization -- they can be modified and viewed by all users who have
proper permissions on the organization.
Corresponds to the JSON property securityMarks
471 472 473 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 471 def security_marks @security_marks end |
#source_properties ⇒ Hash<String,Object>
Source specific properties. These properties are managed by the source
that writes the finding. The key names in the source_properties map must be
between 1 and 255 characters, and must start with a letter and contain
alphanumeric characters or underscores only.
Corresponds to the JSON property sourceProperties
479 480 481 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 479 def source_properties @source_properties end |
#state ⇒ String
The state of the finding.
Corresponds to the JSON property state
484 485 486 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 484 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
491 492 493 494 495 496 497 498 499 500 501 502 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 491 def update!(**args) @category = args[:category] if args.key?(:category) @create_time = args[:create_time] if args.key?(:create_time) @event_time = args[:event_time] if args.key?(:event_time) @external_uri = args[:external_uri] if args.key?(:external_uri) @name = args[:name] if args.key?(:name) @parent = args[:parent] if args.key?(:parent) @resource_name = args[:resource_name] if args.key?(:resource_name) @security_marks = args[:security_marks] if args.key?(:security_marks) @source_properties = args[:source_properties] if args.key?(:source_properties) @state = args[:state] if args.key?(:state) end |