Class: Google::Apis::BigqueryV2::IntRange
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::IntRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Overview
Range of an int hyperparameter.
Instance Attribute Summary collapse
-
#max ⇒ Fixnum
Max value of the int parameter.
-
#min ⇒ Fixnum
Min value of the int parameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IntRange
constructor
A new instance of IntRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IntRange
Returns a new instance of IntRange.
4145 4146 4147 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4145 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max ⇒ Fixnum
Max value of the int parameter.
Corresponds to the JSON property max
4138 4139 4140 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4138 def max @max end |
#min ⇒ Fixnum
Min value of the int parameter.
Corresponds to the JSON property min
4143 4144 4145 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4143 def min @min end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4150 4151 4152 4153 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4150 def update!(**args) @max = args[:max] if args.key?(:max) @min = args[:min] if args.key?(:min) end |