Class: Google::Apis::NetworksecurityV1beta1::SeverityOverride

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb

Overview

Defines what action to take for a specific severity match.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SeverityOverride

Returns a new instance of SeverityOverride.



2160
2161
2162
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2160

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#actionString

Required. Threat action override. Corresponds to the JSON property action

Returns:

  • (String)


2153
2154
2155
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2153

def action
  @action
end

#severityString

Required. Severity level to match. Corresponds to the JSON property severity

Returns:

  • (String)


2158
2159
2160
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2158

def severity
  @severity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2165
2166
2167
2168
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2165

def update!(**args)
  @action = args[:action] if args.key?(:action)
  @severity = args[:severity] if args.key?(:severity)
end