Class: Google::Apis::BigqueryV2::Clustering

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

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) ⇒ Clustering

Returns a new instance of Clustering.



895
896
897
# File 'generated/google/apis/bigquery_v2/classes.rb', line 895

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

Instance Attribute Details

#fieldsArray<String>

[Repeated] One or more fields on which data should be clustered. Only top- level, non-repeated, simple-type fields are supported. When you cluster a table using multiple columns, the order of columns you specify is important. The order of the specified columns determines the sort order of the data. Corresponds to the JSON property fields

Returns:

  • (Array<String>)


893
894
895
# File 'generated/google/apis/bigquery_v2/classes.rb', line 893

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



900
901
902
# File 'generated/google/apis/bigquery_v2/classes.rb', line 900

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