Class: Google::Apis::BigqueryV2::CategoryCount

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

Overview

Represents the count of a single category within the cluster.

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

Returns a new instance of CategoryCount.



809
810
811
# File 'generated/google/apis/bigquery_v2/classes.rb', line 809

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

Instance Attribute Details

#categoryString

The name of category. Corresponds to the JSON property category

Returns:

  • (String)


801
802
803
# File 'generated/google/apis/bigquery_v2/classes.rb', line 801

def category
  @category
end

#countFixnum

The count of training samples matching the category within the cluster. Corresponds to the JSON property count

Returns:

  • (Fixnum)


807
808
809
# File 'generated/google/apis/bigquery_v2/classes.rb', line 807

def count
  @count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



814
815
816
817
# File 'generated/google/apis/bigquery_v2/classes.rb', line 814

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