Class: Google::Apis::BigqueryV2::Clustering
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigqueryV2::Clustering
 
- 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
- 
  
    
      #fields  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Repeated] One or more fields on which data should be clustered. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Clustering 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Clustering. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Clustering
Returns a new instance of Clustering
| 209 210 211 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 209 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#fields ⇒ Array<String>
[Repeated] One or more fields on which data should be clustered. Only top-
level, non-repeated, simple-type fields are supported. The order of the fields
will determine how clusters will be generated, so it is important.
Corresponds to the JSON property fields
| 207 208 209 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 207 def fields @fields end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 214 215 216 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 214 def update!(**args) @fields = args[:fields] if args.key?(:fields) end |