Class: Google::Apis::OndemandscanningV1beta1::DiscoveryOccurrence
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::DiscoveryOccurrence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb
Overview
Provides information about the analysis status of a discovered resource.
Instance Attribute Summary collapse
-
#analysis_status ⇒ String
The status of discovery for the resource.
-
#analysis_status_error ⇒ Google::Apis::OndemandscanningV1beta1::Status
The
Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. -
#continuous_analysis ⇒ String
Whether the resource is continuously analyzed.
-
#cpe ⇒ String
The CPE of the resource being scanned.
-
#last_scan_time ⇒ String
The last time this resource was scanned.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiscoveryOccurrence
constructor
A new instance of DiscoveryOccurrence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiscoveryOccurrence
Returns a new instance of DiscoveryOccurrence.
605 606 607 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 605 def initialize(**args) update!(**args) end |
Instance Attribute Details
#analysis_status ⇒ String
The status of discovery for the resource.
Corresponds to the JSON property analysisStatus
578 579 580 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 578 def analysis_status @analysis_status end |
#analysis_status_error ⇒ Google::Apis::OndemandscanningV1beta1::Status
The Status
type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status
message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property analysisStatusError
588 589 590 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 588 def analysis_status_error @analysis_status_error end |
#continuous_analysis ⇒ String
Whether the resource is continuously analyzed.
Corresponds to the JSON property continuousAnalysis
593 594 595 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 593 def continuous_analysis @continuous_analysis end |
#cpe ⇒ String
The CPE of the resource being scanned.
Corresponds to the JSON property cpe
598 599 600 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 598 def cpe @cpe end |
#last_scan_time ⇒ String
The last time this resource was scanned.
Corresponds to the JSON property lastScanTime
603 604 605 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 603 def last_scan_time @last_scan_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
610 611 612 613 614 615 616 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 610 def update!(**args) @analysis_status = args[:analysis_status] if args.key?(:analysis_status) @analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error) @continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis) @cpe = args[:cpe] if args.key?(:cpe) @last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time) end |