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
1400 1401 1402 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1400 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.
1398 1399 1400 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1398 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1405 1406 1407 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1405 def update!(**args) @key = args[:key] if args.key?(:key) end |