Class: Google::Apis::ComputeV1::SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch
- 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
-
#name ⇒ String
Name of the user-defined field, as given in the definition.
-
#values ⇒ Array<String>
Matching values of the field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch
constructor
A new instance of SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch
Returns a new instance of SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch.
55519 55520 55521 |
# File 'lib/google/apis/compute_v1/classes.rb', line 55519 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the user-defined field, as given in the definition.
Corresponds to the JSON property name
55510 55511 55512 |
# File 'lib/google/apis/compute_v1/classes.rb', line 55510 def name @name end |
#values ⇒ Array<String>
Matching values of the field. Each element can be a 32-bit unsigned
decimal or hexadecimal (starting with "0x") number (e.g. "64") or
range (e.g. "0x400-0x7ff").
Corresponds to the JSON property values
55517 55518 55519 |
# File 'lib/google/apis/compute_v1/classes.rb', line 55517 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
55524 55525 55526 55527 |
# File 'lib/google/apis/compute_v1/classes.rb', line 55524 def update!(**args) @name = args[:name] if args.key?(:name) @values = args[:values] if args.key?(:values) end |