Class: Google::Apis::BigtableadminV2::Split

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Split

Returns a new instance of Split.



1578
1579
1580
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1578

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

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.

Returns:

  • (String)


1576
1577
1578
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1576

def key
  @key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1583
1584
1585
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1583

def update!(**args)
  @key = args[:key] if args.key?(:key)
end