Class: Google::Apis::ComputeV1::Int64RangeMatch
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::Int64RangeMatch
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
HttpRouteRuleMatch criteria for field values that must stay within the specified integer range.
Instance Attribute Summary collapse
-
#range_end ⇒ Fixnum
The end of the range (exclusive) in signed long integer format.
-
#range_start ⇒ Fixnum
The start of the range (inclusive) in signed long integer format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Int64RangeMatch
constructor
A new instance of Int64RangeMatch.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Int64RangeMatch
Returns a new instance of Int64RangeMatch.
14095 14096 14097 |
# File 'generated/google/apis/compute_v1/classes.rb', line 14095 def initialize(**args) update!(**args) end |
Instance Attribute Details
#range_end ⇒ Fixnum
The end of the range (exclusive) in signed long integer format.
Corresponds to the JSON property rangeEnd
14088 14089 14090 |
# File 'generated/google/apis/compute_v1/classes.rb', line 14088 def range_end @range_end end |
#range_start ⇒ Fixnum
The start of the range (inclusive) in signed long integer format.
Corresponds to the JSON property rangeStart
14093 14094 14095 |
# File 'generated/google/apis/compute_v1/classes.rb', line 14093 def range_start @range_start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14100 14101 14102 14103 |
# File 'generated/google/apis/compute_v1/classes.rb', line 14100 def update!(**args) @range_end = args[:range_end] if args.key?(:range_end) @range_start = args[:range_start] if args.key?(:range_start) end |