Class: Google::Cloud::AutoML::V1beta1::Row
- Inherits:
-
Object
- Object
- Google::Cloud::AutoML::V1beta1::Row
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/automl/v1beta1/data_items.rb
Overview
A representation of a row in a relational table.
Instance Attribute Summary collapse
-
#column_spec_ids ⇒ ::Array<::String>
The resource IDs of the column specs describing the columns of the row.
-
#values ⇒ ::Array<::Google::Protobuf::Value>
Required.
Instance Attribute Details
#column_spec_ids ⇒ ::Array<::String>
Returns The resource IDs of the column specs describing the columns of the row. If set must contain, but possibly in a different order, all input feature
column_spec_ids
of the Model this row is being passed to.
Note: The below values
field must match order of this field, if this
field is set.
202 203 204 205 |
# File 'proto_docs/google/cloud/automl/v1beta1/data_items.rb', line 202 class Row include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#values ⇒ ::Array<::Google::Protobuf::Value>
Returns Required. The values of the row cells, given in the same order as the column_spec_ids, or, if not set, then in the same order as input feature
column_specs of the Model this row is being passed to.
202 203 204 205 |
# File 'proto_docs/google/cloud/automl/v1beta1/data_items.rb', line 202 class Row include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |