class Google::Apis::BigqueryV2::RangePartitioning

Attributes

field[RW]
TrustedTester
Required

The table is partitioned by this field. The field

must be a top-level NULLABLE/REQUIRED field. The only supported type is INTEGER/INT64. Corresponds to the JSON property `field` @return [String]

range[RW]
TrustedTester
Required

Defines the ranges for range partitioning.

Corresponds to the JSON property `range` @return [Google::Apis::BigqueryV2::RangePartitioning::Range]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5441
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 5446
def update!(**args)
  @field = args[:field] if args.key?(:field)
  @range = args[:range] if args.key?(:range)
end