Class: Google::Apis::BigtableadminV2::Split
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::Split
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ Split
Returns a new instance of Split.
3269 3270 3271 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3269 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.
3267 3268 3269 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3267 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3274 3275 3276 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3274 def update!(**args) @key = args[:key] if args.key?(:key) end |