Class: Google::Apis::ComputeBeta::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
- 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
Instance Attribute Summary collapse
-
#op ⇒ String
The match operator for the field.
-
#val ⇒ String
The value of the field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
constructor
A new instance of SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
Returns a new instance of SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams.
40813 40814 40815 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40813 def initialize(**args) update!(**args) end |
Instance Attribute Details
#op ⇒ String
The match operator for the field.
Corresponds to the JSON property op
40806 40807 40808 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40806 def op @op end |
#val ⇒ String
The value of the field.
Corresponds to the JSON property val
40811 40812 40813 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40811 def val @val end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
40818 40819 40820 40821 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40818 def update!(**args) @op = args[:op] if args.key?(:op) @val = args[:val] if args.key?(:val) end |