class Google::Apis::ContaineranalysisV1alpha1::CisBenchmark

A compliance check that is a CIS benchmark.

Attributes

profile_level[RW]

The profile level of this CIS benchmark check. Corresponds to the JSON property `profileLevel` @return [Fixnum]

severity[RW]

The severity level of this CIS benchmark check. Corresponds to the JSON property `severity` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 500
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 505
def update!(**args)
  @profile_level = args[:profile_level] if args.key?(:profile_level)
  @severity = args[:severity] if args.key?(:severity)
end