class Google::Apis::ContaineranalysisV1alpha1::NonCompliantFile
Details about files that caused a compliance check to fail.
Attributes
display_command[RW]
Command
to display the non-compliant files. Corresponds to the JSON property `displayCommand` @return [String]
path[RW]
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'. Empty
if `display_command` is set. Corresponds to the JSON property `path` @return [String]
reason[RW]
Explains why a file is non compliant for a CIS check. Corresponds to the JSON property `reason` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 2259 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 2264 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