Class: Google::Apis::BigqueryV2::CategoryCount
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::CategoryCount
- 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
-
#category ⇒ String
The name of category.
-
#count ⇒ Fixnum
The count of training samples matching the category within the cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CategoryCount
constructor
A new instance of CategoryCount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CategoryCount
Returns a new instance of CategoryCount
657 658 659 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 657 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category ⇒ String
The name of category.
Corresponds to the JSON property category
649 650 651 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 649 def category @category end |
#count ⇒ Fixnum
The count of training samples matching the category within the
cluster.
Corresponds to the JSON property count
655 656 657 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 655 def count @count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
662 663 664 665 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 662 def update!(**args) @category = args[:category] if args.key?(:category) @count = args[:count] if args.key?(:count) end |