Class: Google::Apis::ComputeBeta::Int64RangeMatch

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Int64RangeMatch

Returns a new instance of Int64RangeMatch.



15844
15845
15846
# File 'lib/google/apis/compute_beta/classes.rb', line 15844

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#range_endFixnum

The end of the range (exclusive) in signed long integer format. Corresponds to the JSON property rangeEnd

Returns:

  • (Fixnum)


15837
15838
15839
# File 'lib/google/apis/compute_beta/classes.rb', line 15837

def range_end
  @range_end
end

#range_startFixnum

The start of the range (inclusive) in signed long integer format. Corresponds to the JSON property rangeStart

Returns:

  • (Fixnum)


15842
15843
15844
# File 'lib/google/apis/compute_beta/classes.rb', line 15842

def range_start
  @range_start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15849
15850
15851
15852
# File 'lib/google/apis/compute_beta/classes.rb', line 15849

def update!(**args)
  @range_end = args[:range_end] if args.key?(:range_end)
  @range_start = args[:range_start] if args.key?(:range_start)
end