class Google::Apis::BigqueryV2::RangePartitioning::Range
- TrustedTester
- Required
-
Defines the ranges for range partitioning.
Attributes
end[RW]
- TrustedTester
- Required
-
The end of range partitioning, exclusive.
Corresponds to the JSON property `end` @return [Fixnum]
interval[RW]
- TrustedTester
- Required
-
The width of each interval.
Corresponds to the JSON property `interval` @return [Fixnum]
start[RW]
- TrustedTester
- Required
-
The start of range partitioning, inclusive.
Corresponds to the JSON property `start` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5470 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 5475 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