Class: Google::Apis::BigtableadminV2::DropRowRangeRequest
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::DropRowRangeRequest
- 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
Request message for google.bigtable.admin.v2.BigtableTableAdmin.DropRowRange
Instance Attribute Summary collapse
-
#delete_all_data_from_table ⇒ Boolean
(also: #delete_all_data_from_table?)
Delete all rows in the table.
-
#row_key_prefix ⇒ String
Delete all rows that start with this row key prefix.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DropRowRangeRequest
constructor
A new instance of DropRowRangeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DropRowRangeRequest
Returns a new instance of DropRowRangeRequest.
1269 1270 1271 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1269 def initialize(**args) update!(**args) end |
Instance Attribute Details
#delete_all_data_from_table ⇒ Boolean Also known as: delete_all_data_from_table?
Delete all rows in the table. Setting this to false is a no-op.
Corresponds to the JSON property deleteAllDataFromTable
1259 1260 1261 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1259 def delete_all_data_from_table @delete_all_data_from_table end |
#row_key_prefix ⇒ String
Delete all rows that start with this row key prefix. Prefix cannot be zero
length.
Corresponds to the JSON property rowKeyPrefix
NOTE: Values are automatically base64 encoded/decoded in the client library.
1267 1268 1269 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1267 def row_key_prefix @row_key_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1274 1275 1276 1277 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1274 def update!(**args) @delete_all_data_from_table = args[:delete_all_data_from_table] if args.key?(:delete_all_data_from_table) @row_key_prefix = args[:row_key_prefix] if args.key?(:row_key_prefix) end |