Class: Google::Apis::ComputeBeta::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig

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

Overview

Configuration options for L7 DDoS detection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig

Returns a new instance of SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.



31022
31023
31024
# File 'lib/google/apis/compute_beta/classes.rb', line 31022

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

Instance Attribute Details

#enableBoolean Also known as: enable?

If set to true, enables CAAP for L7 DDoS detection. Corresponds to the JSON property enable

Returns:

  • (Boolean)


31013
31014
31015
# File 'lib/google/apis/compute_beta/classes.rb', line 31013

def enable
  @enable
end

#rule_visibilityString

Rule visibility can be one of the following: STANDARD - opaque rules. (default) PREMIUM - transparent rules. Corresponds to the JSON property ruleVisibility

Returns:

  • (String)


31020
31021
31022
# File 'lib/google/apis/compute_beta/classes.rb', line 31020

def rule_visibility
  @rule_visibility
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



31027
31028
31029
31030
# File 'lib/google/apis/compute_beta/classes.rb', line 31027

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