Class: Google::Apis::BigtableadminV2::Split
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::Split
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigtableadmin_v2/classes.rb,
generated/google/apis/bigtableadmin_v2/representations.rb,
generated/google/apis/bigtableadmin_v2/representations.rb
Overview
An initial split point for a newly created table.
Instance Attribute Summary collapse
-
#key ⇒ String
Row key to use as an initial tablet boundary.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Split
constructor
A new instance of Split.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Split
Returns a new instance of Split
1388 1389 1390 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1388 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Row key to use as an initial tablet boundary.
Corresponds to the JSON property key
NOTE: Values are automatically base64 encoded/decoded in the client library.
1386 1387 1388 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1386 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1393 1394 1395 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1393 def update!(**args) @key = args[:key] if args.key?(:key) end |