Class: Google::Apis::BigqueryV2::RangePartitioning::Range
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::RangePartitioning::Range
- 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
[Experimental] Defines the ranges for range partitioning.
Instance Attribute Summary collapse
-
#end ⇒ Fixnum
[Experimental] The end of range partitioning, exclusive.
-
#interval ⇒ Fixnum
[Experimental] The width of each interval.
-
#start ⇒ Fixnum
[Experimental] The start of range partitioning, inclusive.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Range
constructor
A new instance of Range.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Range
Returns a new instance of Range.
7839 7840 7841 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7839 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end ⇒ Fixnum
[Experimental] The end of range partitioning, exclusive.
Corresponds to the JSON property end
7827 7828 7829 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7827 def end @end end |
#interval ⇒ Fixnum
[Experimental] The width of each interval.
Corresponds to the JSON property interval
7832 7833 7834 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7832 def interval @interval end |
#start ⇒ Fixnum
[Experimental] The start of range partitioning, inclusive.
Corresponds to the JSON property start
7837 7838 7839 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7837 def start @start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7844 7845 7846 7847 7848 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7844 def update!(**args) @end = args[:end] if args.key?(:end) @interval = args[:interval] if args.key?(:interval) @start = args[:start] if args.key?(:start) end |