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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb

Defined Under Namespace

Classes: Range

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RangePartitioning

Returns a new instance of RangePartitioning



3088
3089
3090
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3088

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

Instance Attribute Details

#fieldString

[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

Returns:

  • (String)


3081
3082
3083
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3081

def field
  @field
end

#rangeGoogle::Apis::BigqueryV2::RangePartitioning::Range

[TrustedTester] [Required] Defines the ranges for range partitioning. Corresponds to the JSON property range



3086
3087
3088
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3086

def range
  @range
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3093
3094
3095
3096
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3093

def update!(**args)
  @field = args[:field] if args.key?(:field)
  @range = args[:range] if args.key?(:range)
end