Class: Google::Apis::OndemandscanningV1beta1::NonCompliantFile
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::NonCompliantFile
- 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
Details about files that caused a compliance check to fail. display_command is a single command that can be used to display a list of non compliant files. When there is no such command, we can also iterate a list of non compliant file using 'path'.
Instance Attribute Summary collapse
-
#display_command ⇒ String
Command to display the non-compliant files.
-
#path ⇒ String
Empty if
display_commandis set. -
#reason ⇒ String
Explains why a file is non compliant for a CIS check.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NonCompliantFile
constructor
A new instance of NonCompliantFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NonCompliantFile
Returns a new instance of NonCompliantFile.
1480 1481 1482 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1480 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_command ⇒ String
Command to display the non-compliant files.
Corresponds to the JSON property displayCommand
1468 1469 1470 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1468 def display_command @display_command end |
#path ⇒ String
Empty if display_command is set.
Corresponds to the JSON property path
1473 1474 1475 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1473 def path @path end |
#reason ⇒ String
Explains why a file is non compliant for a CIS check.
Corresponds to the JSON property reason
1478 1479 1480 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1478 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1485 1486 1487 1488 1489 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1485 def update!(**args) @display_command = args[:display_command] if args.key?(:display_command) @path = args[:path] if args.key?(:path) @reason = args[:reason] if args.key?(:reason) end |