Class: Google::Apis::ComputeV1::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig

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

Overview

Configuration options for L7 DDoS detection. This field is only supported in Global Security Policies of type CLOUD_ARMOR.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig

Returns a new instance of SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.



37170
37171
37172
# File 'lib/google/apis/compute_v1/classes.rb', line 37170

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

Instance Attribute Details

#enableBoolean Also known as: enable?

If set to true, enables CAAP for L7 DDoS detection. This field is only supported in Global Security Policies of type CLOUD_ARMOR. Corresponds to the JSON property enable

Returns:

  • (Boolean)


37154
37155
37156
# File 'lib/google/apis/compute_v1/classes.rb', line 37154

def enable
  @enable
end

#rule_visibilityString

Rule visibility can be one of the following: STANDARD - opaque rules. (default) PREMIUM - transparent rules. This field is only supported in Global Security Policies of type CLOUD_ARMOR. Corresponds to the JSON property ruleVisibility

Returns:

  • (String)


37162
37163
37164
# File 'lib/google/apis/compute_v1/classes.rb', line 37162

def rule_visibility
  @rule_visibility
end

#threshold_configsArray<Google::Apis::ComputeV1::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig>

Configuration options for layer7 adaptive protection for various customizable thresholds. Corresponds to the JSON property thresholdConfigs



37168
37169
37170
# File 'lib/google/apis/compute_v1/classes.rb', line 37168

def threshold_configs
  @threshold_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



37175
37176
37177
37178
37179
# File 'lib/google/apis/compute_v1/classes.rb', line 37175

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