class Google::Apis::BigtableadminV2::DropRowRangeRequest
Request message for google.bigtable.admin.v2.BigtableTableAdmin.DropRowRange
Attributes
delete_all_data_from_table[RW]
Delete all rows in the table. Setting this to false is a no-op. Corresponds to the JSON property `deleteAllDataFromTable` @return [Boolean]
delete_all_data_from_table?[RW]
Delete all rows in the table. Setting this to false is a no-op. Corresponds to the JSON property `deleteAllDataFromTable` @return [Boolean]
row_key_prefix[RW]
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. @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 731 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 736 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