Class: Google::Apis::BigqueryV2::RangePartitioning::Range

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Range

Returns a new instance of Range.



7863
7864
7865
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7863

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

Instance Attribute Details

#endFixnum

[Experimental] The end of range partitioning, exclusive. Corresponds to the JSON property end

Returns:

  • (Fixnum)


7851
7852
7853
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7851

def end
  @end
end

#intervalFixnum

[Experimental] The width of each interval. Corresponds to the JSON property interval

Returns:

  • (Fixnum)


7856
7857
7858
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7856

def interval
  @interval
end

#startFixnum

[Experimental] The start of range partitioning, inclusive. Corresponds to the JSON property start

Returns:

  • (Fixnum)


7861
7862
7863
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7861

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7868
7869
7870
7871
7872
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7868

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