Class: Google::Cloud::Bigtable::V2::Family
- Inherits:
-
Object
- Object
- Google::Cloud::Bigtable::V2::Family
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/bigtable/v2/data.rb
Overview
Specifies (some of) the contents of a single row/column family intersection of a table.
Instance Attribute Summary collapse
-
#columns ⇒ ::Array<::Google::Cloud::Bigtable::V2::Column>
Must not be empty.
-
#name ⇒ ::String
The unique key which identifies this family within its row.
Instance Attribute Details
#columns ⇒ ::Array<::Google::Cloud::Bigtable::V2::Column>
Returns Must not be empty. Sorted in order of increasing "qualifier".
53 54 55 56 |
# File 'proto_docs/google/bigtable/v2/data.rb', line 53 class Family include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#name ⇒ ::String
Returns The unique key which identifies this family within its row. This is the
same key that's used to identify the family in, for example, a RowFilter
which sets its "family_name_regex_filter" field.
Must match [-_.a-zA-Z0-9]+
, except that AggregatingRowProcessors may
produce cells in a sentinel family with an empty name.
Must be no greater than 64 characters in length.
53 54 55 56 |
# File 'proto_docs/google/bigtable/v2/data.rb', line 53 class Family include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |