Class: Google::Apis::ComputeAlpha::Int64RangeMatch
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::Int64RangeMatch
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Int64RangeMatch
Returns a new instance of Int64RangeMatch
13402 13403 13404 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13402 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
13395 13396 13397 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13395 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
13400 13401 13402 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13400 def range_start @range_start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13407 13408 13409 13410 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13407 def update!(**args) @range_end = args[:range_end] if args.key?(:range_end) @range_start = args[:range_start] if args.key?(:range_start) end |