Class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1CloudControlAssessmentDetails
- Inherits:
-
Object
- Object
- Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1CloudControlAssessmentDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/assuredworkloads_v1beta1/classes.rb,
lib/google/apis/assuredworkloads_v1beta1/representations.rb,
lib/google/apis/assuredworkloads_v1beta1/representations.rb
Overview
The cloud control assessment details for non-manual cloud controls.
Instance Attribute Summary collapse
-
#evaluation_state ⇒ String
Output only.
-
#findings_count ⇒ Fixnum
The number of findings for the cloud control.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAssuredworkloadsV1beta1CloudControlAssessmentDetails
constructor
A new instance of GoogleCloudAssuredworkloadsV1beta1CloudControlAssessmentDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAssuredworkloadsV1beta1CloudControlAssessmentDetails
Returns a new instance of GoogleCloudAssuredworkloadsV1beta1CloudControlAssessmentDetails.
358 359 360 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 358 def initialize(**args) update!(**args) end |
Instance Attribute Details
#evaluation_state ⇒ String
Output only. The evaluation status of the cloud control.
Corresponds to the JSON property evaluationState
351 352 353 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 351 def evaluation_state @evaluation_state end |
#findings_count ⇒ Fixnum
The number of findings for the cloud control.
Corresponds to the JSON property findingsCount
356 357 358 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 356 def findings_count @findings_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
363 364 365 366 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 363 def update!(**args) @evaluation_state = args[:evaluation_state] if args.key?(:evaluation_state) @findings_count = args[:findings_count] if args.key?(:findings_count) end |