Class: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
- 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
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.
38727 38728 38729 |
# File 'lib/google/apis/compute_v1/classes.rb', line 38727 def initialize(**args) update!(**args) end |
Instance Attribute Details
#op ⇒ String
The match operator for the field.
Corresponds to the JSON property op
38720 38721 38722 |
# File 'lib/google/apis/compute_v1/classes.rb', line 38720 def op @op end |
#val ⇒ String
The value of the field.
Corresponds to the JSON property val
38725 38726 38727 |
# File 'lib/google/apis/compute_v1/classes.rb', line 38725 def val @val end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
38732 38733 38734 38735 |
# File 'lib/google/apis/compute_v1/classes.rb', line 38732 def update!(**args) @op = args[:op] if args.key?(:op) @val = args[:val] if args.key?(:val) end |