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

[TrustedTester] [Required] 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.



5315
5316
5317
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5315

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

Instance Attribute Details

#endFixnum

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

Returns:

  • (Fixnum)


5303
5304
5305
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5303

def end
  @end
end

#intervalFixnum

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

Returns:

  • (Fixnum)


5308
5309
5310
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5308

def interval
  @interval
end

#startFixnum

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

Returns:

  • (Fixnum)


5313
5314
5315
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5313

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5320
5321
5322
5323
5324
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5320

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