class Google::Apis::ComputeV1::Int64RangeMatch

HttpRouteRuleMatch criteria for field values that must stay within the specified integer range.

Attributes

range_end[RW]

The end of the range (exclusive) in signed long integer format. Corresponds to the JSON property `rangeEnd` @return [Fixnum]

range_start[RW]

The start of the range (inclusive) in signed long integer format. Corresponds to the JSON property `rangeStart` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 15127
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 15132
def update!(**args)
  @range_end = args[:range_end] if args.key?(:range_end)
  @range_start = args[:range_start] if args.key?(:range_start)
end